/* ═══════════════════════════════════════════════════════════
   SPARKLE PLUS CHEMICALS LIMITED — Main Stylesheet
   Theme: Pink · Black · Grey · Brown · Sky Blue
   Font: Cormorant Garamond + Playfair Display + DM Sans
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,500&display=swap');

/* ── CSS Variables ── */
:root {
  --pink:          #D63384;
  --pink-light:    #F06EA8;
  --pink-pale:     #FDE8F2;
  --black:         #111111;
  --charcoal:      #1F1F1F;
  --grey-dark:     #4A4A4A;
  --grey-mid:      #888888;
  --grey-light:    #E8E8E8;
  --grey-pale:     #F6F6F6;
  --brown:         #8B6F5C;
  --brown-light:   #C4A882;
  --brown-pale:    #F5EDE5;
  --sky:           #5BC8E8;
  --sky-pale:      #E0F6FD;
  --white:         #FFFFFF;
  --green:         #009A44;
  --whatsapp:      #25D366;
  --font-display:  'Cormorant Garamond', serif;
  --font-head:     'Playfair Display', serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        6px;
  --shadow:        0 4px 24px rgba(17,17,17,0.10);
  --shadow-lg:     0 12px 48px rgba(17,17,17,0.18);
  --transition:    .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--grey-pale); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 99px; }


/* ════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════ */
.container      { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section        { padding: 80px 0; }
.section-sm     { padding: 52px 0; }
.text-center    { text-align: center; }
.text-pink      { color: var(--pink); }
.flex-between   { display: flex; justify-content: space-between; align-items: center; }
.flex-center    { display: flex; justify-content: center; align-items: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none !important; }
.divider { height: 1px; background: var(--grey-light); }

/* ── Typography ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
.section-subtitle {
  font-size: .95rem;
  color: var(--grey-mid);
  margin-top: 10px;
  max-width: 540px;
}
.label-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-light);
  border-radius: 99px;
  padding: 3px 14px; margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 28px; border-radius: 99px;
  font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: #b82d73; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(214,51,132,.3); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--grey-dark); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-sky { background: var(--sky); color: var(--white); }
.btn-sky:hover { background: #3ab8d8; }
.btn-white { background: var(--white); color: var(--pink); font-weight: 600; }
.btn-white:hover { background: var(--pink-pale); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
#topbar {
  background: var(--charcoal);
  color: var(--grey-light);
  font-size: .78rem;
  letter-spacing: .06em;
  padding: 7px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
#topbar a { color: var(--sky); }


/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
nav#navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  border-bottom: 2px solid var(--grey-light);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
nav#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.12); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink), var(--brown-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
  box-shadow: 0 2px 10px rgba(214,51,132,.35);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; letter-spacing: .03em;
  color: var(--pink-light); line-height: 1.15;
}
.nav-logo-text span { color: var(--pink); }
.nav-logo-sub { font-size: .65rem; letter-spacing: .12em; color: var(--grey-mid); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  padding: 8px 16px; border-radius: var(--radius);
  color: var(--grey-dark);
  cursor: pointer; border: none; background: none;
  font-family: var(--font-body);
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--pink); background: var(--pink-pale); }
.nav-links > li.active > a,
.nav-links > li.active > button { color: var(--pink); }
.nav-links .arrow { font-size: .65rem; transition: transform .25s; }

/* ── Dropdown — Desktop flyout ── */
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-top: 3px solid var(--pink);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000; overflow: hidden;
}
.dropdown.open {
  display: block;
  animation: dropDown .2s ease;
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown li a,
.dropdown li button {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; font-size: .85rem; font-weight: 400;
  color: var(--grey-dark); width: 100%; border: none; background: none;
  cursor: pointer; font-family: var(--font-body);
  text-align: left; text-decoration: none;
  transition: background .15s, color .15s;
}
.dropdown li a:hover,
.dropdown li button:hover { background: var(--pink-pale); color: var(--pink); }
.dropdown .dd-icon { font-size: 1.1rem; }
.dropdown .dd-cat {
  padding: 8px 20px 4px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brown);
  border-top: 1px solid var(--grey-light);
  list-style: none;
}
.dropdown .dd-cat:first-child { border-top: none; }

/* ── Dropdown — Mobile accordion (inside open nav drawer) ── */
@media (max-width: 768px) {
  /* The <li> that wraps prodBtn needs relative positioning */
  .nav-links > li[style*="position:relative"],
  .nav-links > li[style*="position: relative"] {
    position: static !important;
  }

  .dropdown {
    /* switch from absolute flyout to inline accordion */
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    min-width: unset !important;
    width: 100%;
    background: var(--grey-pale);
    border-left: 3px solid var(--pink-light) !important;
    margin: 4px 0 4px 16px;
    padding: 4px 0;
    /* hidden by default via display:none — .open shows it */
    animation: none !important;
  }

  .dropdown.open {
    display: block;
  }

  .dropdown li a,
  .dropdown li button {
    padding: 10px 16px;
    font-size: .84rem;
  }

  .dropdown .dd-cat {
    padding: 6px 16px 3px;
    font-size: .65rem;
  }
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  border-radius: 99px !important;
  padding: 8px 22px !important;
}
.nav-cta:hover { background: var(--pink-light) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════
   PAGE HERO (internal pages)
════════════════════════════════════════ */
.page-hero {
  background: var(--charcoal);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(214,51,132,.15) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300; color: var(--white); line-height: 1.15;
}
.page-hero-title strong { color: var(--pink-light); font-weight: 700; }
.page-hero-desc { color: #AAAAAA; max-width: 500px; margin-top: 12px; font-size: .95rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: .78rem; color: var(--grey-mid); margin-bottom: 20px;
}
.breadcrumb a { color: var(--sky); cursor: pointer; }
.breadcrumb .sep { color: var(--grey-mid); }


/* ════════════════════════════════════════
   HOME — HERO
════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(214,51,132,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(91,200,232,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(139,111,92,.15) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--white) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--white) 40px);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text .eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-text .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sky); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
}
.hero-title strong { font-weight: 700; color: var(--pink-light); }
.hero-title em { font-style: italic; color: var(--brown-light); }
.hero-desc { color: #BBBBBB; font-size: 1rem; margin: 20px 0 36px; max-width: 440px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--pink-light); }
.stat-label { font-size: .75rem; color: var(--grey-mid); letter-spacing: .06em; margin-top: 4px; }

.hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card {
  border-radius: 12px; padding: 28px 22px;
  position: relative; overflow: hidden;
}
.hero-card:nth-child(1) { background: linear-gradient(135deg, var(--pink), #a01f5f); grid-column: span 2; }
.hero-card:nth-child(2) { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.hero-card:nth-child(3) { background: rgba(91,200,232,.12); border: 1px solid rgba(91,200,232,.2); }
.hero-card-icon  { font-size: 2.2rem; margin-bottom: 10px; }
.hero-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.hero-card-desc  { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 5px; }
.hero-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.15); border-radius: 99px;
  padding: 3px 10px; font-size: .68rem; color: var(--white); letter-spacing: .06em;
}


/* ════════════════════════════════════════
   FEATURES BAR
════════════════════════════════════════ */
.features-bar { background: var(--black); padding: 20px 0; }
.features-bar-inner {
  display: flex; align-items: stretch;
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.feat-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.feat-item:last-child { border-right: none; }
.feat-icon  { font-size: 1.4rem; color: var(--pink-light); }
.feat-label { font-size: .82rem; font-weight: 500; color: var(--white); }
.feat-sub   { font-size: .72rem; color: var(--grey-mid); }


/* ════════════════════════════════════════
   CATEGORY CARDS
════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  border-radius: 14px; padding: 32px 24px; text-align: center;
  cursor: pointer; transition: .3s;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: linear-gradient(135deg, var(--pink), var(--brown-light));
}
.cat-card:hover::before { opacity: .08; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card-1 { background: var(--pink-pale); border: 1.5px solid var(--pink-light); }
.cat-card-2 { background: var(--sky-pale);  border: 1.5px solid var(--sky); }
.cat-card-3 { background: var(--brown-pale);border: 1.5px solid var(--brown-light); }
.cat-card-4 { background: var(--grey-pale); border: 1.5px solid var(--grey-light); }
.cat-icon  { font-size: 2.8rem; margin-bottom: 14px; }
.cat-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--black); }
.cat-count { font-size: .8rem; color: var(--grey-mid); margin-top: 5px; }
.cat-arrow { font-size: .8rem; color: var(--pink); margin-top: 12px; }


/* ════════════════════════════════════════
   ABOUT STRIP (homepage)
════════════════════════════════════════ */
.about-strip {
  background: var(--pink-pale);
  border-top: 3px solid var(--pink-light);
  border-bottom: 3px solid var(--pink-light);
}
.about-strip-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--brown-pale), var(--pink-pale));
  border-radius: 16px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 2px solid var(--brown-light);
  position: relative; overflow: hidden;
}
.about-img-placeholder::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: var(--pink); border-radius: 50%; opacity: .12;
}
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: var(--pink); color: var(--white);
  border-radius: 12px; padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(214,51,132,.4); text-align: center;
}
.about-badge-num  { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: .7rem; letter-spacing: .06em; }
.about-features   { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px; background: var(--white);
  border-radius: 10px; border-left: 3px solid var(--pink);
}
.about-feat-icon  { font-size: 1.3rem; color: var(--pink); }
.about-feat-title { font-size: .88rem; font-weight: 600; color: var(--black); }
.about-feat-desc  { font-size: .8rem; color: var(--grey-mid); margin-top: 2px; }


/* ════════════════════════════════════════
   PRODUCT CARDS (homepage & products page)
════════════════════════════════════════ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prod-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--grey-light); background: var(--white);
  transition: .3s; cursor: pointer;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--pink-light); }
.prod-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.prod-card-img-1 { background: linear-gradient(135deg, #fde8f2, #f8c6e0); }
.prod-card-img-2 { background: linear-gradient(135deg, #e0f6fd, #b8edf8); }
.prod-card-img-3 { background: linear-gradient(135deg, #f5ede5, #eadcc6); }
.prod-card-img-4 { background: linear-gradient(135deg, #f0f0f0, #e0e0e0); }
.prod-card-img-5 { background: linear-gradient(135deg, #fff0f8, #ffe0ef); }
.prod-card-img-6 { background: linear-gradient(135deg, #e0fdf4, #b0f0d4); }
.prod-card-body  { padding: 20px; }
.prod-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 6px;
}
.prod-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.prod-desc { font-size: .82rem; color: var(--grey-mid); line-height: 1.55; }
.prod-card-footer {
  padding: 14px 20px; border-top: 1px solid var(--grey-light);
  display: flex; justify-content: space-between; align-items: center;
}
.prod-avail { font-size: .75rem; color: #2e9e5b; font-weight: 500; }
.prod-btn   { font-size: .78rem; font-weight: 500; color: var(--pink); display: flex; align-items: center; gap: 4px; }

/* Full products grid */
.product-filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 99px; font-size: .84rem;
  border: 1.5px solid var(--grey-light); background: var(--white);
  cursor: pointer; transition: .2s; font-family: var(--font-body); color: var(--grey-dark);
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--pink); color: var(--pink); background: var(--pink-pale); }
.products-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-item {
  border-radius: 14px; border: 1px solid var(--grey-light); overflow: hidden;
  background: var(--white); transition: .3s;
}
.product-item:hover { box-shadow: var(--shadow-lg); border-color: var(--pink-light); transform: translateY(-3px); }
.pi-img  { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.pi-body { padding: 22px; }
.pi-cat {
  display: inline-block; font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 99px; margin-bottom: 10px;
}
.cat-industrial { background: var(--sky-pale);   color: #1a7a96; }
.cat-home       { background: var(--pink-pale);  color: #a0245e; }
.cat-fragrance  { background: var(--brown-pale); color: #7a5040; }
.cat-color      { background: #f0f8e8;           color: #3a7a20; }
.pi-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pi-desc { font-size: .83rem; color: var(--grey-mid); line-height: 1.6; }
.pi-specs {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--grey-light);
  display: flex; gap: 16px; flex-wrap: wrap;
}
.pi-spec { font-size: .74rem; color: var(--grey-dark); display: flex; align-items: center; gap: 4px; }
.products-enquiry-cta {
  text-align: center; margin-top: 52px; padding: 36px;
  background: var(--pink-pale); border-radius: 16px; border: 1px dashed var(--pink-light);
}


/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testi-section { background: var(--charcoal); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 28px;
}
.testi-stars  { color: var(--pink-light); font-size: 1rem; margin-bottom: 14px; }
.testi-quote  {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,.85); line-height: 1.65; margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--brown-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white);
}
.testi-name { font-size: .88rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: .75rem; color: var(--grey-mid); }


/* ════════════════════════════════════════
   BLOG CARDS
════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--grey-light); background: var(--white);
  transition: .3s; cursor: pointer; text-decoration: none; color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-img-1 { background: linear-gradient(135deg, var(--pink-pale), #fcd1e8); }
.blog-img-2 { background: linear-gradient(135deg, var(--sky-pale), #c4edf8); }
.blog-img-3 { background: linear-gradient(135deg, var(--brown-pale), #e8d8c5); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: .74rem; color: var(--grey-mid); margin-bottom: 8px; }
.blog-meta .dot { width: 3px; height: 3px; background: var(--grey-mid); border-radius: 50%; }
.blog-cat     { color: var(--pink); font-weight: 600; }
.blog-title   { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.blog-excerpt { font-size: .82rem; color: var(--grey-mid); line-height: 1.6; }

/* Blog page layout */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-featured {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--grey-light); margin-bottom: 36px;
  cursor: pointer; transition: .3s;
}
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured-img {
  height: 280px;
  background: linear-gradient(135deg, var(--charcoal), #3a1a2a);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  position: relative; overflow: hidden;
}
.blog-featured-img::before {
  content: 'FEATURED';
  position: absolute; top: 18px; left: 18px;
  background: var(--pink); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  padding: 5px 14px; border-radius: 99px;
}
.blog-featured-body { padding: 28px; }
.blog-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }


/* ════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════ */
.sidebar-widget {
  border-radius: 12px; padding: 24px;
  border: 1px solid var(--grey-light); background: var(--grey-pale); margin-bottom: 24px;
}
.sidebar-title {
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--black); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--pink);
}
.cat-list { display: flex; flex-direction: column; gap: 8px; }
.cat-list-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--grey-dark); cursor: pointer;
  padding: 6px 10px; border-radius: 6px; transition: .15s;
}
.cat-list-item:hover { background: var(--pink-pale); color: var(--pink); }
.cat-list-badge {
  background: var(--grey-light); border-radius: 99px;
  padding: 1px 9px; font-size: .72rem; color: var(--grey-mid);
}
.recent-posts { display: flex; flex-direction: column; gap: 14px; }
.recent-post {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  text-decoration: none; color: inherit;
}
.recent-post-img {
  width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--pink-pale);
}
.recent-post-title { font-size: .83rem; font-weight: 500; color: var(--black); line-height: 1.4; }
.recent-post-date  { font-size: .74rem; color: var(--grey-mid); margin-top: 3px; }


/* ════════════════════════════════════════
   ARTICLE PAGE
════════════════════════════════════════ */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.article-hero-img {
  width: 100%; height: 360px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #1a0a12, #3a1a2a);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; margin-bottom: 32px;
}
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.article-tag {
  background: var(--pink-pale); color: var(--pink);
  border-radius: 99px; padding: 4px 14px; font-size: .75rem; font-weight: 600;
}
.article-date   { font-size: .8rem; color: var(--grey-mid); }
.article-author { font-size: .8rem; color: var(--grey-dark); font-weight: 500; }
.article-title {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; line-height: 1.2; color: var(--black); margin-bottom: 16px;
}
.article-lead {
  font-size: 1.08rem; color: var(--grey-dark); line-height: 1.8;
  margin-bottom: 28px; border-left: 3px solid var(--pink);
  padding-left: 18px; font-style: italic;
}
.article-body p    { font-size: .92rem; color: var(--grey-dark); line-height: 1.9; margin-bottom: 18px; }
.article-body h3   { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--black); margin: 28px 0 12px; }
.article-body ul   { padding-left: 20px; margin-bottom: 18px; }
.article-body ul li{ font-size: .9rem; color: var(--grey-dark); margin-bottom: 6px; line-height: 1.7; }
.article-info-box  { background: var(--sky-pale); border: 1px solid var(--sky); border-radius: 12px; padding: 20px 22px; margin: 24px 0; }
.article-info-box-title { font-weight: 600; color: #1a7a96; margin-bottom: 6px; }
.article-info-box p { font-size: .85rem; color: var(--grey-dark); margin: 0; }
.share-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 36px;
  padding-top: 24px; border-top: 1px solid var(--grey-light); flex-wrap: wrap;
}
.share-label { font-size: .82rem; font-weight: 600; color: var(--grey-dark); }
.share-btn {
  padding: 7px 16px; border-radius: 99px; font-size: .78rem;
  border: 1px solid var(--grey-light); cursor: pointer; background: var(--white);
  transition: .2s; font-family: var(--font-body);
}
.share-btn:hover { border-color: var(--pink); color: var(--pink); }


/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card { padding: 36px; border-radius: 16px; }
.mission-card-pink { background: var(--pink-pale); border-left: 4px solid var(--pink); }
.mission-card-sky  { background: var(--sky-pale);  border-left: 4px solid var(--sky); }
.mission-icon  { font-size: 2rem; margin-bottom: 12px; }
.mission-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.mission-desc  { color: var(--grey-dark); font-size: .9rem; line-height: 1.8; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--pink), var(--brown-light), var(--sky));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -32px; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--pink); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--pink);
}
.timeline-year  { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 5px; }
.timeline-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--black); }
.timeline-desc  { font-size: .85rem; color: var(--grey-dark); margin-top: 5px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center; padding: 28px 20px;
  border-radius: 14px; background: var(--grey-pale);
  border: 1px solid var(--grey-light); transition: .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pink-light); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--white);
}
.team-avatar-1 { background: linear-gradient(135deg, var(--pink), #a01f5f); }
.team-avatar-2 { background: linear-gradient(135deg, var(--sky), #2a9bb8); }
.team-avatar-3 { background: linear-gradient(135deg, var(--brown), #6a4f3e); }
.team-avatar-4 { background: linear-gradient(135deg, #555, #333); }
.team-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--black); }
.team-role { font-size: .8rem; color: var(--pink); font-weight: 500; margin-top: 3px; }
.team-bio  { font-size: .78rem; color: var(--grey-mid); margin-top: 8px; line-height: 1.55; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card  { padding: 28px; border-radius: 14px; background: var(--white); border: 1px solid var(--grey-light); }
.value-icon  { font-size: 2rem; margin-bottom: 12px; }
.value-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.value-desc  { font-size: .84rem; color: var(--grey-dark); line-height: 1.6; }


/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; color: var(--grey-dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-light);
  border-radius: 8px; font-family: var(--font-body); font-size: .9rem;
  color: var(--black); background: var(--white); transition: .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(214,51,132,.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card { background: var(--grey-pale); border-radius: 14px; padding: 32px; border: 1px solid var(--grey-light); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--pink-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--pink);
}
.contact-info-label { font-size: .78rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .06em; }
.contact-info-value { font-size: .92rem; color: var(--black); font-weight: 500; margin-top: 3px; }
.map-placeholder {
  margin-top: 20px; height: 200px; border-radius: 12px;
  background: linear-gradient(135deg, var(--grey-light), var(--grey-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border: 1px solid var(--grey-light);
}


/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, #8B2252 50%, var(--black) 100%);
  border-radius: 20px; padding: 56px 64px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.05);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: 30%;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(91,200,232,.08);
}
.cta-title { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1.25; }
.cta-sub   { color: rgba(255,255,255,.65); margin-top: 8px; font-size: .92rem; }
.cta-btns  { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer { background: var(--black); color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; margin: 14px 0 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  cursor: pointer; transition: .2s; color: rgba(255,255,255,.6);
}
.footer-social:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.footer-col-title {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; cursor: pointer; }
.footer-links a:hover { color: var(--pink-light); }
.footer-links li { list-style: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: var(--pink-light); }


/* ════════════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════════════ */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--black); color: var(--white);
  padding: 14px 22px; border-radius: 10px;
  font-size: .88rem; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--pink);
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }


/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp .45s ease both; }


/* ════════════════════════════════════════
   PRODUCTS CATALOGUE — Chemicals / Frag / Colours
════════════════════════════════════════ */
.catalogue-section { margin-bottom: 60px; }

.catalogue-section-head {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px; border-radius: 12px; margin-bottom: 24px;
}
.catalogue-section-head-chemicals  { background: var(--sky-pale);   border-left: 4px solid var(--sky); }
.catalogue-section-head-colours    { background: var(--pink-pale);  border-left: 4px solid var(--pink); }
.catalogue-section-head-fragrances { background: var(--brown-pale); border-left: 4px solid var(--brown-light); }
.cat-head-icon  { font-size: 2rem; }
.cat-head-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--black); }
.cat-head-count { font-size: .8rem; color: var(--grey-mid); margin-top: 2px; }

/* ── Alphabetical chemical groups ── */
.chem-alpha-group { margin-bottom: 28px; }
.chem-alpha-letter {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--pink); border-bottom: 2px solid var(--pink-pale);
  padding-bottom: 6px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.chem-alpha-letter span {
  font-size: .75rem; font-weight: 400; color: var(--grey-mid);
  font-family: var(--font-body); letter-spacing: .06em;
}
.chem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
}

/* Each chemical item — row with name + cart btn */
.chem-item {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 10px; border-radius: 6px; font-size: .84rem;
  color: var(--grey-dark); transition: .15s; cursor: pointer;
  border: 1px solid transparent;
}
.chem-item:hover {
  background: var(--pink-pale);
  border-color: var(--pink-light);
  color: var(--black);
}
.chem-item::before {
  content: ''; width: 5px; height: 5px;
  background: var(--sky); border-radius: 50%; flex-shrink: 0;
}
.chem-item-name { flex: 1; min-width: 0; }

/* ── Cart add button (shared across all product types) ── */
.add-to-cart-btn {
  flex-shrink: 0;
  background: none; border: 1px solid var(--grey-light);
  border-radius: 50%; cursor: pointer;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; line-height: 1; font-weight: 700;
  color: var(--grey-mid);
  transition: color .15s, background .15s, border-color .15s, transform .15s;
}
.add-to-cart-btn:hover {
  color: var(--pink);
  background: var(--pink-pale);
  border-color: var(--pink-light);
  transform: scale(1.15);
}
.add-to-cart-btn.added {
  color: #2e9e5b;
  background: #e8f5ef;
  border-color: #2e9e5b;
}

/* ── Fragrance grid tags ── */
.frag-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.frag-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--brown-pale); border: 1px solid var(--brown-light);
  border-radius: 99px; padding: 5px 10px 5px 12px;
  font-size: .82rem; color: var(--grey-dark);
  transition: .15s; cursor: pointer;
}
.frag-tag:hover {
  background: var(--pink-pale);
  border-color: var(--pink-light);
  color: var(--pink);
}
.frag-tag .frag-label {
  display: flex; align-items: center; gap: 6px;
}
.frag-tag .frag-icon { font-size: 1rem; }
.frag-tag .frag-name { white-space: nowrap; }
.frag-tag .add-to-cart-btn {
  margin-left: 4px; width: 22px; height: 22px; font-size: .8rem;
}

/* ── Colour swatches ── */
.colour-subsection { margin-bottom: 32px; }
.colour-sub-title {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.colour-sub-title::before,
.colour-sub-title::after { content: ''; flex: 1; height: 1px; background: var(--grey-light); }
.colour-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.colour-swatch {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 90px; cursor: pointer; padding: 10px 6px; border-radius: 10px;
  border: 1px solid transparent; transition: .15s;
}
.colour-swatch:hover {
  background: var(--pink-pale);
  border-color: var(--pink-light);
}
.colour-swatch-dot {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.colour-swatch-name {
  font-size: .73rem; text-align: center; color: var(--grey-dark);
  line-height: 1.3; font-weight: 500;
}
.colour-swatch .add-to-cart-btn {
  width: auto; height: auto; border-radius: 99px;
  padding: 3px 12px; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em;
}

/* Swatch individual colours */
.sw-apple-green    { background: #6abf4b; }
.sw-aqueous-blue   { background: #5bb8d8; }
.sw-brilliant-blue { background: #1a5fc8; }
.sw-brown          { background: #8b5e3c; }
.sw-egg-yellow     { background: #f5d020; }
.sw-orange         { background: #f97316; }
.sw-pink           { background: #ec4899; }
.sw-purple         { background: #9333ea; }
.sw-raspberry-red  { background: #c0284a; }
.sw-sunset-yellow  { background: #fbbf24; }
.sw-tatrazine      { background: #f6e05e; }
.sw-waxol-blue     { background: #2563eb; }
.sw-waxol-green    { background: #16a34a; }
.sw-waxol-orange   { background: #ea580c; }
.sw-waxol-red      { background: #dc2626; }
.sw-waxol-yellow   { background: #eab308; }
.sw-acid-blue      { background: #3b82f6; }
.sw-acid-green     { background: #22c55e; }
.sw-waxol          { border: 2px dashed var(--grey-light); }

/* ── Product search bar ── */
.product-search-bar { position: relative; margin-bottom: 36px; }
.product-search-input {
  width: 100%; padding: 14px 20px 14px 48px;
  border: 2px solid var(--grey-light); border-radius: 99px;
  font-size: .92rem; font-family: var(--font-body); outline: none;
  background: var(--white); transition: .2s; color: var(--black);
}
.product-search-input:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(214,51,132,.08); }
.product-search-icon {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; color: var(--grey-mid);
}
.product-search-count {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: .8rem; color: var(--grey-mid);
}
.highlight { background: #ffe06a; border-radius: 2px; padding: 0 1px; }


/* ════════════════════════════════════════
   CART DRAWER
════════════════════════════════════════ */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(17,17,17,.5);
  z-index: 1200; opacity: 0; pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(2px);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--white);
  z-index: 1201;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(17,17,17,.2);
}
#cart-drawer.open { transform: translateX(0); }

.cart-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-light);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
  background: var(--white);
}
.cart-head-title {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.cart-item-count-badge {
  background: var(--pink); color: var(--white);
  border-radius: 99px; padding: 1px 9px;
  font-size: .72rem; font-family: var(--font-body); font-weight: 600;
}
.cart-head-close {
  background: var(--grey-pale); border: none; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  color: var(--grey-dark); transition: background .2s;
}
.cart-head-close:hover { background: var(--grey-light); }

.cart-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-thumb { background: var(--grey-light); }

.cart-empty {
  text-align: center; padding: 72px 20px;
  color: var(--grey-mid);
}
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 14px; }
.cart-empty-title { font-weight: 600; font-size: 1rem; color: var(--grey-dark); margin-bottom: 6px; }
.cart-empty-sub   { font-size: .84rem; }

.cart-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--grey-light);
  animation: fadeUp .2s ease both;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--pink-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cart-item-icon.frag   { background: var(--sky-pale); }
.cart-item-icon.colour { background: var(--brown-pale); }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .86rem; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.cart-item-cat  {
  font-size: .7rem; color: var(--grey-mid);
  text-transform: uppercase; letter-spacing: .06em;
}

.cart-item-qty {
  display: flex; align-items: center; gap: 6px; margin-top: 8px; flex-wrap: wrap;
}
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--grey-light);
  background: var(--white); cursor: pointer;
  font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-dark); transition: background .15s, border-color .15s;
  line-height: 1;
}
.qty-btn:hover { background: var(--pink-pale); border-color: var(--pink-light); color: var(--pink); }
.qty-val { font-size: .9rem; font-weight: 700; min-width: 20px; text-align: center; }

.cart-unit-select {
  border: 1px solid var(--grey-light); border-radius: 6px;
  font-size: .75rem; padding: 3px 6px; background: var(--grey-pale);
  color: var(--grey-dark); cursor: pointer; font-family: var(--font-body);
  outline: none; transition: border-color .15s;
}
.cart-unit-select:focus { border-color: var(--pink); }

.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--grey-light); font-size: 1rem; padding: 4px;
  transition: color .15s; border-radius: 6px; flex-shrink: 0;
  align-self: center;
}
.cart-item-remove:hover { color: #e53e3e; background: #fff0f0; }

/* Cart footer */
.cart-foot {
  border-top: 2px solid var(--grey-light);
  padding: 18px 24px 24px; flex-shrink: 0;
  background: var(--white);
}
.cart-note {
  font-size: .78rem; color: var(--grey-dark);
  background: var(--grey-pale); border-radius: 8px;
  padding: 10px 14px; margin-bottom: 14px; line-height: 1.55;
  border-left: 3px solid var(--sky);
}
.cart-note strong { color: var(--black); }
.cart-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── Shared action button base ── */
.btn-action {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px 22px; border-radius: 99px;
  font-size: .9rem; font-weight: 600; cursor: pointer; border: none;
  font-family: var(--font-body); transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-action:hover { transform: translateY(-1px); }

.btn-mpesa {
  background: var(--green); color: #fff;
}
.btn-mpesa:hover { background: #007a36; box-shadow: 0 4px 20px rgba(0,154,68,.35); }

.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 4px 20px rgba(37,211,102,.35); }

.cart-clear-btn {
  background: none; border: none; cursor: pointer;
  font-size: .78rem; color: var(--grey-mid); text-decoration: underline;
  font-family: var(--font-body); transition: color .15s; text-align: center;
  padding: 4px;
}
.cart-clear-btn:hover { color: #e53e3e; }


/* ════════════════════════════════════════
   FLOATING CART FAB
════════════════════════════════════════ */
#cart-fab {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--pink); color: var(--white);
  border: none; border-radius: 99px;
  padding: 14px 22px; font-size: .88rem; font-weight: 600;
  cursor: pointer; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(214,51,132,.4);
  transform: translateY(24px); opacity: 0;
  transition: opacity .3s, transform .3s, box-shadow .2s;
  font-family: var(--font-body);
  letter-spacing: .02em;
}
#cart-fab.visible { opacity: 1; transform: translateY(0); }
#cart-fab:hover { box-shadow: 0 12px 40px rgba(214,51,132,.5); transform: translateY(-2px); }

#cart-fab-badge {
  background: var(--white); color: var(--pink);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}


/* ════════════════════════════════════════
   M-PESA MODAL
════════════════════════════════════════ */
#mpesa-modal-overlay {
  position: fixed; inset: 0; background: rgba(17,17,17,.55);
  z-index: 1300; opacity: 0; pointer-events: none;
  transition: opacity .3s;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
#mpesa-modal-overlay.open { opacity: 1; pointer-events: all; }

#mpesa-modal {
  position: relative;
  background: var(--white); border-radius: 20px;
  padding: 36px 32px; max-width: 440px; width: 100%;
  box-shadow: 0 32px 80px rgba(17,17,17,.28);
  transform: scale(.94) translateY(10px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh; overflow-y: auto;
}
#mpesa-modal-overlay.open #mpesa-modal { transform: scale(1) translateY(0); }
#mpesa-modal::-webkit-scrollbar { width: 0; }

.mpesa-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--grey-pale); border: none; cursor: pointer;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  color: var(--grey-dark); transition: background .15s;
}
.mpesa-modal-close:hover { background: var(--grey-light); }

.mpesa-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.mpesa-logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, #009A44, #006e30);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 12px rgba(0,154,68,.3);
}
.mpesa-logo-text {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
}
.mpesa-logo-text span { color: var(--green); }
.mpesa-subtitle { font-size: .82rem; color: var(--grey-mid); margin-bottom: 20px; }

.mpesa-step { display: none; }
.mpesa-step.active { display: block; }

.mpesa-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--grey-dark); margin-bottom: 6px;
}
.mpesa-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 10px; font-size: .95rem;
  font-family: var(--font-body); outline: none;
  transition: border-color .2s, box-shadow .2s; color: var(--black);
}
.mpesa-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,154,68,.1); }

.mpesa-field { margin-bottom: 16px; }

.mpesa-summary {
  background: var(--grey-pale); border-radius: 10px;
  padding: 14px 16px; margin: 16px 0; font-size: .84rem;
  border: 1px solid var(--grey-light);
}
.mpesa-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 3px 0; color: var(--grey-dark);
}
.mpesa-summary-row.total {
  font-weight: 700; font-size: .95rem; color: var(--black);
  border-top: 1px solid var(--grey-light);
  padding-top: 8px; margin-top: 6px;
}
.mpesa-summary-row span:last-child { font-weight: 600; color: var(--black); }

/* PIN dots */
.mpesa-pin-dots {
  display: flex; gap: 12px; justify-content: center;
  margin: 24px 0 20px;
}
.mpesa-pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grey-light); border: 2px solid var(--grey-light);
  transition: background .2s, border-color .2s, transform .15s;
}
.mpesa-pin-dot.filled {
  background: var(--green); border-color: var(--green);
  transform: scale(1.1);
}

/* Keypad */
.mpesa-keypad {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 8px;
}
.mpesa-key {
  padding: 15px 8px; border: 1.5px solid var(--grey-light); border-radius: 12px;
  font-size: 1.15rem; font-weight: 700; background: var(--white);
  cursor: pointer; transition: background .15s, border-color .15s, transform .1s;
  text-align: center; font-family: var(--font-body); color: var(--black);
  line-height: 1.2;
}
.mpesa-key:hover  { background: #e8f5ef; border-color: var(--green); }
.mpesa-key:active { transform: scale(.95); background: #d0eeda; }
.mpesa-key.del    { color: var(--grey-dark); font-size: 1rem; }
.mpesa-key.zero   { grid-column: 2; }

/* Processing spinner */
.mpesa-processing { text-align: center; padding: 32px 0; }
.mpesa-spinner-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 4px solid var(--grey-light);
  border-top-color: var(--green);
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mpesa-processing-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.mpesa-processing-sub   { font-size: .84rem; color: var(--grey-mid); line-height: 1.6; }

/* Success */
.mpesa-success { text-align: center; padding: 24px 0; }
.mpesa-success-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #e8f5ef, #c8ecd8);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(0,154,68,.2);
}
.mpesa-success-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.mpesa-success-ref   {
  display: inline-block; background: var(--grey-pale);
  border-radius: 8px; padding: 6px 16px; font-size: .82rem;
  color: var(--grey-dark); margin-bottom: 16px; font-weight: 600;
  letter-spacing: .04em;
}
.mpesa-success-msg   { font-size: .88rem; color: var(--grey-dark); line-height: 1.7; margin-bottom: 22px; }
.mpesa-success-actions { display: flex; flex-direction: column; gap: 10px; }
.mpesa-dismiss-btn {
  background: none; border: none; cursor: pointer;
  font-size: .8rem; color: var(--grey-mid); text-decoration: underline;
  font-family: var(--font-body); transition: color .15s; margin-top: 4px;
}
.mpesa-dismiss-btn:hover { color: var(--grey-dark); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid            { grid-template-columns: repeat(2, 1fr); }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .products-full-grid  { grid-template-columns: repeat(2, 1fr); }
  .chem-grid           { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav#navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 12px 16px 20px;
    border-bottom: 2px solid var(--grey-light);
    box-shadow: var(--shadow-lg); z-index: 998;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  /* Full-width nav items on mobile */
  .nav-links > li { width: 100%; }
  .nav-links > li > a,
  .nav-links > li > button {
    width: 100%; justify-content: space-between;
    padding: 12px 14px; border-radius: 8px;
  }
  /* CTA pill stretches to fill on mobile */
  .nav-links .nav-cta {
    display: flex !important; justify-content: center !important;
    margin-top: 8px;
  }
  .hero-content   { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual    { display: none; }
  .hero           { min-height: 70vh; }
  .features-bar-inner { flex-direction: column; gap: 0; }
  .feat-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 0; }
  .feat-item:last-child { border-bottom: none; }
  .cat-grid       { grid-template-columns: repeat(2, 1fr); }
  .prod-grid      { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .blog-layout    { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .cta-banner     { flex-direction: column; text-align: center; padding: 36px 28px; }
  .values-grid    { grid-template-columns: 1fr; }
  .mission-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  #topbar         { display: none; }
  .products-full-grid { grid-template-columns: 1fr; }
  .chem-grid      { grid-template-columns: 1fr 1fr; }
  .colour-grid    { gap: 8px; }
  .colour-swatch  { width: 76px; }
  .colour-swatch-dot { width: 44px; height: 44px; }
  #cart-fab       { bottom: 20px; right: 16px; padding: 12px 18px; font-size: .82rem; }
  #cart-drawer    { width: 100%; max-width: 100%; }
  #mpesa-modal    { padding: 28px 20px; }
  .mpesa-keypad   { gap: 8px; }
  .mpesa-key      { padding: 13px 6px; }
}

@media (max-width: 480px) {
  .cat-grid      { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .hero-stats    { flex-direction: column; gap: 18px; }
  .container     { padding: 0 18px; }
  .cta-banner    { padding: 28px 20px; }
  .chem-grid     { grid-template-columns: 1fr; }
  .colour-swatch { width: 68px; }
  .colour-swatch-dot { width: 38px; height: 38px; }
  .frag-tag .frag-name { max-width: 160px; overflow: hidden; text-overflow: ellipsis; }
}
/* ── Cart Button on each item ── */
    .chem-item, .frag-tag, .colour-swatch {
      position: relative;
      cursor: pointer;
      transition: box-shadow .2s, border-color .2s;
    }
    .chem-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-right: 8px; }
    .chem-item-name { flex: 1; }
    .add-to-cart-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: .95rem;
      padding: 2px 6px;
      border-radius: 50%;
      color: var(--grey-mid);
      transition: color .2s, background .2s;
      flex-shrink: 0;
      line-height: 1;
    }
    .add-to-cart-btn:hover { color: var(--pink); background: var(--pink-pale); }
    .add-to-cart-btn.added { color: #2e9e5b; }

    .frag-tag { display: flex; align-items: center; gap: 6px; padding-right: 6px; }
    .frag-tag .frag-label { flex: 1; display: flex; align-items: center; gap: 6px; min-width: 0; }
    .frag-tag .add-to-cart-btn { margin-left: auto; }

    .colour-swatch { display: flex; flex-direction: column; align-items: center; gap: 6px; }
    .colour-swatch .add-to-cart-btn { font-size: .8rem; padding: 3px 10px; border-radius: 99px; border: 1px solid var(--grey-light); }

    /* ── Cart Drawer ── */
    #cart-overlay {
      position: fixed; inset: 0; background: rgba(17,17,17,.45);
      z-index: 1200; opacity: 0; pointer-events: none;
      transition: opacity .3s;
    }
    #cart-overlay.open { opacity: 1; pointer-events: all; }

    #cart-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: 420px; max-width: 95vw;
      background: var(--white);
      z-index: 1201;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
      box-shadow: -8px 0 40px rgba(17,17,17,.18);
    }
    #cart-drawer.open { transform: translateX(0); }

    .cart-head {
      padding: 20px 24px;
      border-bottom: 1px solid var(--grey-light);
      display: flex; align-items: center; justify-content: space-between;
      flex-shrink: 0;
    }
    .cart-head-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
    .cart-head-close {
      background: var(--grey-pale); border: none; cursor: pointer;
      width: 34px; height: 34px; border-radius: 50%;
      font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
      color: var(--grey-dark); transition: background .2s;
    }
    .cart-head-close:hover { background: var(--grey-light); }

    .cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

    .cart-empty {
      text-align: center; padding: 60px 20px;
      color: var(--grey-mid);
    }
    .cart-empty-icon { font-size: 3rem; margin-bottom: 12px; }

    .cart-item {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 14px 0; border-bottom: 1px solid var(--grey-light);
    }
    .cart-item-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--pink-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .cart-item-icon.frag { background: var(--sky-pale); }
    .cart-item-icon.colour { background: var(--brown-pale); }
    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name { font-size: .88rem; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
    .cart-item-cat { font-size: .72rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: .06em; }
    .cart-item-qty {
      display: flex; align-items: center; gap: 8px; margin-top: 8px;
    }
    .qty-btn {
      width: 26px; height: 26px; border-radius: 50%;
      border: 1px solid var(--grey-light);
      background: var(--white); cursor: pointer;
      font-size: 1rem; line-height: 1; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      color: var(--grey-dark); transition: background .15s, border-color .15s;
    }
    .qty-btn:hover { background: var(--pink-pale); border-color: var(--pink-light); color: var(--pink); }
    .qty-val { font-size: .9rem; font-weight: 600; min-width: 20px; text-align: center; }
    .cart-item-unit {
      font-size: .78rem; color: var(--grey-mid); margin-left: 4px;
    }
    .cart-item-remove {
      background: none; border: none; cursor: pointer;
      color: var(--grey-mid); font-size: .8rem; padding: 4px;
      transition: color .2s;
    }
    .cart-item-remove:hover { color: #e53e3e; }

    /* ── Cart Footer ── */
    .cart-foot {
      border-top: 1px solid var(--grey-light);
      padding: 20px 24px; flex-shrink: 0;
      background: var(--white);
    }
    .cart-note {
      font-size: .8rem; color: var(--grey-mid);
      background: var(--grey-pale); border-radius: 8px;
      padding: 10px 14px; margin-bottom: 16px;
      line-height: 1.5;
    }
    .cart-actions { display: flex; flex-direction: column; gap: 10px; }

    /* ── M-Pesa Modal ── */
    #mpesa-modal-overlay {
      position: fixed; inset: 0; background: rgba(17,17,17,.5);
      z-index: 1300; opacity: 0; pointer-events: none; transition: opacity .3s;
      display: flex; align-items: center; justify-content: center; padding: 20px;
    }
    #mpesa-modal-overlay.open { opacity: 1; pointer-events: all; }
    #mpesa-modal {
      background: var(--white); border-radius: 18px;
      padding: 36px 32px; max-width: 440px; width: 100%;
      box-shadow: 0 24px 80px rgba(17,17,17,.25);
      transform: scale(.93); transition: transform .3s;
    }
    #mpesa-modal-overlay.open #mpesa-modal { transform: scale(1); }
    .mpesa-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .mpesa-logo-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: #009A44; display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .mpesa-logo-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }
    .mpesa-logo-text span { color: #009A44; }
    .mpesa-subtitle { font-size: .85rem; color: var(--grey-mid); margin-bottom: 24px; }
    .mpesa-step { display: none; }
    .mpesa-step.active { display: block; }
    .mpesa-label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-dark); margin-bottom: 6px; }
    .mpesa-input {
      width: 100%; padding: 12px 16px; border: 1.5px solid var(--grey-light);
      border-radius: 10px; font-size: 1rem; font-family: var(--font-body);
      outline: none; transition: border-color .2s;
    }
    .mpesa-input:focus { border-color: #009A44; }
    .mpesa-summary {
      background: var(--grey-pale); border-radius: 10px;
      padding: 14px 16px; margin: 16px 0; font-size: .85rem;
    }
    .mpesa-summary-row { display: flex; justify-content: space-between; padding: 3px 0; }
    .mpesa-summary-row.total { font-weight: 700; font-size: 1rem; border-top: 1px solid var(--grey-light); padding-top: 8px; margin-top: 6px; }
    .mpesa-pin-dots { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
    .mpesa-pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--grey-light); transition: background .3s; }
    .mpesa-pin-dot.filled { background: #009A44; }
    .mpesa-keypad { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; }
    .mpesa-key {
      padding: 14px; border: 1.5px solid var(--grey-light); border-radius: 10px;
      font-size: 1.1rem; font-weight: 600; background: var(--white);
      cursor: pointer; transition: background .15s, border-color .15s;
      text-align: center;
    }
    .mpesa-key:hover { background: #e8f5ef; border-color: #009A44; }
    .mpesa-key.del { color: var(--grey-mid); font-size: .95rem; }
    .mpesa-spinner {
      text-align: center; padding: 30px 0;
    }
    .mpesa-spinner-circle {
      width: 56px; height: 56px; border-radius: 50%;
      border: 4px solid var(--grey-light);
      border-top-color: #009A44;
      animation: spin 1s linear infinite;
      margin: 0 auto 16px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .mpesa-success-icon {
      width: 64px; height: 64px; border-radius: 50%; background: #e8f5ef;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 16px;
    }

    /* ── Floating Cart Badge ── */
    #cart-fab {
      position: fixed; bottom: 32px; right: 32px;
      background: var(--pink); color: var(--white);
      border: none; border-radius: 99px;
      padding: 14px 22px; font-size: .9rem; font-weight: 600;
      cursor: pointer; z-index: 900;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 32px rgba(214,51,132,.35);
      transform: translateY(20px); opacity: 0;
      transition: opacity .3s, transform .3s, box-shadow .2s;
      font-family: var(--font-body);
    }
    #cart-fab.visible { opacity: 1; transform: translateY(0); }
    #cart-fab:hover { box-shadow: 0 12px 40px rgba(214,51,132,.45); }
    #cart-fab-badge {
      background: var(--white); color: var(--pink);
      width: 22px; height: 22px; border-radius: 50%;
      font-size: .75rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    /* ── WhatsApp btn ── */
    .btn-whatsapp {
      background: #25D366; color: #fff;
      border: none;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 22px; border-radius: 99px;
      font-size: .9rem; font-weight: 600;
      cursor: pointer; width: 100%; justify-content: center;
      font-family: var(--font-body);
      transition: background .2s, box-shadow .2s;
    }
    .btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 4px 20px rgba(37,211,102,.35); }

    .btn-mpesa {
      background: #009A44; color: #fff;
      border: none;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 22px; border-radius: 99px;
      font-size: .9rem; font-weight: 600;
      cursor: pointer; width: 100%; justify-content: center;
      font-family: var(--font-body);
      transition: background .2s;
    }
    .btn-mpesa:hover { background: #007a36; }

    /* ── Nav dropdown fix ── */
    .dropdown button {
      background: none; border: none; cursor: pointer;
      padding: 10px 20px; width: 100%; text-align: left;
      font-size: .88rem; display: flex; align-items: center; gap: 8px;
      color: var(--black); font-family: var(--font-body);
      transition: background .15s;
    }
    .dropdown button:hover { background: var(--pink-pale); }

    /* Qty unit selector */
    .cart-unit-select {
      border: 1px solid var(--grey-light); border-radius: 6px;
      font-size: .78rem; padding: 2px 6px; background: var(--white);
      color: var(--grey-dark); cursor: pointer; margin-left: 4px;
    }

    .mpesa-modal-close {
      position: absolute; top: 16px; right: 16px;
      background: var(--grey-pale); border: none; cursor: pointer;
      width: 30px; height: 30px; border-radius: 50%;
      font-size: 1rem; display: flex; align-items: center; justify-content: center;
    }
    #mpesa-modal { position: relative; }