/* ============================================================
   Fragoil B2B — Premium Attar Oils
   Refined: warm ivory + deep brown + restrained gold
   Mobile-first, notification slider, bottom nav
   ============================================================ */

:root {
  /* Deep brown — used sparingly for CTAs and key accents only */
  --primary:      #4A3220;
  --primary-lt:   #6b4a2e;
  --primary-dk:   #2e1e0f;
  --primary-bg:   #f7f2ec;

  /* Gold — very restrained, used only for labels and highlights */
  --accent:       #B8892E;
  --accent-lt:    #d4a44a;
  --accent-dk:    #966e20;
  --accent-bg:    #fdf7ec;

  /* Warm neutrals — the dominant palette */
  --beige:        #F2EAD8;
  --beige-dk:     #e5d9c2;
  --cream:        #FAFAF7;   /* almost white with warmth */
  --ivory:        #F8F5F0;

  --dark:         #1E1410;   /* near-black warm */
  --text:         #3A2E24;   /* readable warm brown */
  --muted:        #8C7B6B;   /* medium warm grey-brown */
  --border:       #E8E0D4;   /* very light warm border */
  --border-dk:    #D4C9B8;
  --white:        #FFFFFF;
  --light-bg:     #FAFAF7;

  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 1px 12px rgba(0,0,0,.06);
  --shadow-lg:    0 6px 32px rgba(0,0,0,.10);
  --shadow-up:    0 -2px 16px rgba(0,0,0,.06);

  --notif-h:      36px;
  --nav-h:        66px;
  --bottom-h:     60px;
  --safe-b:       env(safe-area-inset-bottom, 0px);
  --font-ui:      'Poppins', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --max-w:        1260px;
  --t:            0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-ui); color: var(--text); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.28; color: var(--dark); }
h1 { font-size: clamp(1.5rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.25rem, 3vw, 2rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: .95rem; }
.section-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: .35rem;
}
.section-title { margin-bottom: .4rem; }
.section-sub { color: var(--muted); font-size: .88rem; }

/* ── Announcement Slider Bar ── */
.notif-bar {
  background: var(--primary-dk);
  height: var(--notif-h);
  display: flex; align-items: center;
  position: relative; z-index: 600;
  overflow: hidden;
}
.notif-bar__arrow {
  flex-shrink: 0; background: none; border: none;
  color: rgba(255,255,255,.5); cursor: pointer;
  padding: 0 .75rem; height: 100%;
  font-size: .8rem; transition: color var(--t);
  display: flex; align-items: center;
}
.notif-bar__arrow:hover { color: white; }
.notif-bar__slides {
  flex: 1; position: relative; overflow: hidden;
  text-align: center; height: 100%;
}
.notif-bar__slide {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 400; letter-spacing: .05em;
  color: rgba(255,255,255,.82);
}
.notif-bar__slide--active { display: flex; }
@media (max-width: 767px) {
  .notif-bar { height: 30px; }
  .notif-bar__slide { font-size: .66rem; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.75rem; font-size: .85rem; font-weight: 600;
  border-radius: var(--radius); transition: all var(--t);
  cursor: pointer; border: none; white-space: nowrap; min-height: 44px;
}
.btn-primary  { background: var(--primary);  color: var(--white); }
.btn-primary:hover  { background: var(--primary-lt); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid var(--border); }
.btn-outline:hover  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-sm  { padding: .55rem 1.1rem; font-size: .8rem; min-height: 38px; }
.btn-lg  { padding: 1rem 2rem; font-size: .95rem; min-height: 54px; }
.btn-full { width: 100%; }
.btn-danger  { background: #dc3545; color: white; }
.btn-success { background: #28a745; color: white; }
.btn-wa { background: #25d366; color: white; }
.btn-wa:hover { background: #20ba5a; }

/* ── Top bar (desktop only) ── */
.topbar { display: none; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: #aaa; display: flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: white; }
@media (max-width: 767px) { .topbar { display: none; } }

/* ══════════════════════════════════════════
   NAV — Desktop hover + Mobile slide-in
══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.nav__inner { display: flex; align-items: center; height: var(--nav-h); gap: 1rem; }
/* ── Logo ── */
.nav__logo { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.nav__logo-img { height: 34px; width: auto; display: block; }
@media (max-width: 767px) { .nav__logo-img { height: 28px; } }

/* Desktop nav links */
.nav__menu { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.nav__menu > li { position: relative; }
.nav__menu > li > a {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem .85rem; font-size: .82rem; font-weight: 500; color: var(--text);
  border-radius: var(--radius); transition: all var(--t);
  /* CRITICAL: pointer-events must be default so links are clickable */
  pointer-events: auto;
  cursor: pointer;
}
.nav__menu > li > a:hover { color: var(--accent); background: var(--accent-bg); }

/* Mobile arrow button (only visible on mobile) */
.mobile-arrow-btn {
  display: none; /* hidden on desktop */
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: .75rem; padding: .25rem .5rem;
  line-height: 1; border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}

/* ── Dropdown (desktop: hover; mobile: .mobile-open class) ── */
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 2px); left: 0;
  background: white; min-width: 210px;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .4rem 0; z-index: 600;
}
/* Desktop hover opens dropdown */
@media (min-width: 768px) {
  .has-dropdown:hover > .dropdown { display: block; }
  .dropdown li.has-dropdown:hover > .dropdown { display: block; }
  .dropdown li.has-dropdown > .dropdown { top: 0; left: 100%; }
}
.dropdown li { position: relative; }
.dropdown li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .5rem 1rem; font-size: .83rem; color: var(--text);
  transition: all var(--t); cursor: pointer;
}
.dropdown li a:hover { background: var(--accent-bg); color: var(--accent); }

/* Right side of nav */
.nav__right { display: flex; align-items: center; gap: .5rem; margin-left: .5rem; }

/* Quick contact btn */
/* ── Nav Search Icon ── */
.nav__search-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: .45rem; border-radius: var(--radius);
  display: flex; align-items: center; transition: color var(--t);
  min-width: 38px; min-height: 38px; justify-content: center;
}
.nav__search-toggle:hover { color: var(--primary); }

/* ── Search Modal ── */
.search-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .22s ease;
}
.search-modal--open { pointer-events: auto; opacity: 1; }
.search-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(30, 20, 10, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.search-modal__box {
  position: relative; z-index: 1;
  width: 100%; max-width: 680px;
  margin: 72px 1rem 0;
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  transform: translateY(-16px);
  transition: transform .25s ease;
  overflow: hidden;
}
.search-modal--open .search-modal__box { transform: translateY(0); }
.search-modal__form { padding: 0; }
.search-modal__field {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.search-modal__input {
  flex: 1; border: none; outline: none;
  font-size: 1.1rem; font-family: var(--font-ui);
  color: var(--dark); background: transparent;
  min-width: 0;
}
.search-modal__input::placeholder { color: var(--muted); }
.search-modal__close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: .3rem; display: flex;
  align-items: center; border-radius: var(--radius);
  transition: color var(--t); flex-shrink: 0;
}
.search-modal__close:hover { color: var(--primary); }
.search-modal__hints {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 1rem 1.25rem;
}
.search-modal__hints a {
  font-size: .8rem; color: var(--text);
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 50px; padding: .35rem .85rem;
  text-decoration: none; transition: all var(--t);
}
.search-modal__hints a:hover { background: var(--primary-bg); border-color: var(--primary); color: var(--primary); }
@media (max-width: 767px) {
  .search-modal__box { margin: 56px .5rem 0; }
  .search-modal__input { font-size: .95rem; }
}

/* Catalogue filter dropdowns */
.catalogue-filters {
  display: flex; gap: .65rem; flex-wrap: wrap; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.filter-select {
  appearance: none; -webkit-appearance: none;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238C7B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right .7rem center;
  padding: .55rem 2rem .55rem .85rem; font-size: .82rem;
  font-family: var(--font-ui); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 50px;
  cursor: pointer; transition: all var(--t); min-height: 38px;
  font-weight: 500;
}
.filter-select:focus { outline: none; border-color: var(--accent); }
.filter-select.active { border-color: var(--primary); background-color: var(--primary-bg); color: var(--primary); font-weight: 600; }
.filter-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  background: var(--primary); color: white; border-radius: 50px;
  padding: .3rem .75rem; font-size: .75rem; font-weight: 600;
  text-decoration: none;
}
.filter-tag .x { font-size: .8rem; opacity: .75; }
.filter-tag:hover .x { opacity: 1; }
.filter-clear { font-size: .78rem; color: var(--muted); text-decoration: underline; cursor: pointer; background: none; border: none; font-family: inherit; padding: .3rem; }

.nav__quick-contact {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; background: var(--accent); color: white;
  border-radius: var(--radius); font-size: .82rem; font-weight: 600;
  border: none; cursor: pointer; min-height: 38px; transition: all var(--t);
}
.nav__quick-contact:hover { background: var(--accent-lt); }

.nav__cart {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; background: var(--light-bg); color: var(--primary);
  border-radius: var(--radius); font-size: .82rem; font-weight: 600;
  position: relative; border: 1.5px solid var(--border); min-height: 38px;
  transition: all var(--t);
}
.nav__cart:hover { background: var(--ivory); color: var(--primary); border-color: var(--border-dk); }

.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--accent); color: white;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: .62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.nav__burger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .28s; }

/* ══════════════════════════════════════════
   MOBILE (<768px): slide-in menu
══════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Slide-in panel */
  .nav__menu {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: -100%; bottom: 0;
    width: 80%; max-width: 300px; max-height: 100vh;
    background: white; padding: calc(var(--nav-h) + .5rem) 0 2rem;
    z-index: 490; box-shadow: var(--shadow-lg);
    transition: left .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; gap: 0;
  }
  .nav__menu.open { left: 0; }

  /* Overlay */
  .nav__overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.5); z-index: 480;
    backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .nav__overlay.open { display: block; }

  /* Mobile nav link styles */
  .nav__menu > li > a {
    padding: .9rem 1.25rem; border-radius: 0;
    font-size: .95rem; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav__menu > li > a:hover { background: var(--accent-bg); }

  /* Show arrow buttons on mobile */
  .mobile-arrow-btn { display: inline-flex; }

  /* Dropdown in mobile panel */
  .dropdown {
    position: static !important; box-shadow: none !important;
    border: none !important; border-radius: 0 !important;
    padding: 0 !important; background: var(--light-bg) !important;
    display: none !important; /* always closed by default */
  }
  .dropdown.mobile-open { display: block !important; }
  .dropdown li a { padding: .75rem 1.25rem .75rem 2rem; font-size: .9rem; }

  /* Burger visible */
  .nav__burger { display: flex; }

  /* Hide text labels in nav cart/contact on mobile */
  .nav__cart span { display: none; }
  .nav__quick-contact span { display: none; }

  /* Body padding for bottom nav */
  body { padding-bottom: calc(var(--bottom-h) + var(--safe-b)); }
}

/* Desktop: no bottom padding, no overlay */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .nav__overlay { display: none !important; }
}

/* ══════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
══════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: calc(var(--bottom-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: white; border-top: 1px solid var(--border);
  box-shadow: var(--shadow-up); z-index: 400;
}
.mobile-bottom-nav__inner { display: flex; height: var(--bottom-h); align-items: stretch; }
.mobile-bottom-nav__item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .15rem;
  text-decoration: none; color: var(--muted); background: none; border: none;
  font-size: .6rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; padding: .4rem .2rem; position: relative;
  -webkit-tap-highlight-color: transparent; transition: color var(--t);
}
.mobile-bottom-nav__item svg { flex-shrink: 0; }
.mobile-bottom-nav__item.active { color: var(--accent); }
.mobile-bottom-nav__item.active svg { stroke: var(--accent); }
.mobile-bottom-nav__item.contact-btn {
  color: white; background: var(--accent); border-radius: 14px 14px 0 0;
  margin: 0 4px; box-shadow: 0 -3px 12px rgba(201,150,58,.35);
}
.mobile-bottom-nav__item.contact-btn:active { background: var(--accent-lt); }
.bottom-badge {
  position: absolute; top: 5px; right: 50%; margin-right: -18px;
  background: var(--primary-dk); color: white; width: 18px; height: 18px;
  border-radius: 50%; font-size: .55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid white;
}
@media (max-width: 767px) {
  .mobile-bottom-nav { display: block; }
  .wa-float { display: none; } /* WA in bottom nav, no need for float */
}

/* ══════════════════════════════════════════
   QUICK CONTACT DRAWER / MODAL
══════════════════════════════════════════ */
.quick-contact-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 800;
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
}
.quick-contact-overlay.open { display: block; }

.quick-contact-drawer {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: white; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.25rem 1.25rem calc(1.5rem + var(--safe-b));
  z-index: 810; transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.2);
  max-height: 92vh; overflow-y: auto;
  /* Never block clicks when closed */
  pointer-events: none;
  visibility: hidden;
}
.quick-contact-drawer.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

@media (min-width: 768px) {
  .quick-contact-drawer {
    position: fixed; top: 50%; left: 50%; right: auto; bottom: auto;
    width: 460px; border-radius: var(--radius-lg); padding: 2rem;
    transform: translate(-50%, -48%); opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
    max-height: 90vh;
    /* Closed: invisible + no pointer events */
    pointer-events: none;
    visibility: hidden;
  }
  .quick-contact-drawer.open {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.drawer-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 1.25rem; }
@media (min-width: 768px) { .drawer-handle { display: none; } }

.quick-contact-drawer h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: .2rem; }
.quick-contact-drawer .subtitle { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }

.qc-field { margin-bottom: .9rem; }
.qc-field label { display: block; font-size: .78rem; font-weight: 600; color: var(--dark); margin-bottom: .35rem; }
.qc-input {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 1rem; color: var(--text);
  transition: border-color var(--t); min-height: 50px; -webkit-appearance: none;
  background: white;
}
.qc-input:focus { outline: none; border-color: var(--accent); }
select.qc-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.qc-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.1rem; }
.qc-success { text-align: center; padding: 1.5rem 1rem; }
.qc-success svg { margin: 0 auto .75rem; }
.qc-success h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: .25rem; }
.qc-success p { font-size: .85rem; color: var(--muted); }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--light-bg); }
.hero__track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hero__slide { min-width: 100%; position: relative; height: 500px; display: flex; align-items: center; }
@media (max-width: 640px) { .hero__slide { height: 500px; align-items: flex-end; padding-bottom: 2rem; } }
.hero__slide img.hero__img-desktop { display: block; }
.hero__slide img.hero__img-mobile  { display: none; }
@media (max-width: 640px) {
  .hero__slide img.hero__img-desktop { display: none; }
  .hero__slide img.hero__img-mobile  { display: block; }
}
.hero__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
@media (max-width: 640px) {
  .hero__overlay { background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
}
.hero__content { position: relative; padding: 0 clamp(1.25rem,6vw,5rem); max-width: 680px; color: white; }
.hero__content .section-label { color: var(--accent-lt); }
.hero__content h1 { color: white; margin: .4rem 0 .75rem; }
.hero__content p { color: rgba(255,255,255,.85); margin-bottom: 1.25rem; font-size: .95rem; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__controls { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 10; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s; }
.hero__dot.active { background: white; width: 24px; border-radius: 4px; }
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); border: none; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; z-index: 10; transition: all var(--t); font-size: 1rem;
}
.hero__arrow:hover { background: white; }
.hero__arrow--prev { left: 1rem; }
.hero__arrow--next { right: 1rem; }
@media (max-width: 640px) { .hero__arrow { display: none; } }

/* ══════════════════════════════════════════
   QUICK CONTACT BANNER (homepage)
══════════════════════════════════════════ */
.quick-banner { background: var(--primary); padding: 1.5rem 0; }
.quick-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.quick-banner__text h3 { color: white; font-size: 1.05rem; margin-bottom: .15rem; }
.quick-banner__text p  { color: rgba(255,255,255,.75); font-size: .82rem; }
.quick-banner__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: white; color: var(--primary); border: none; border-radius: var(--radius);
  padding: .75rem 1.5rem; font-size: .88rem; font-weight: 700; cursor: pointer;
  min-height: 48px; white-space: nowrap; transition: all var(--t); font-family: inherit; flex-shrink: 0;
}
.quick-banner__btn:hover { background: var(--accent-bg); }
@media (max-width: 640px) {
  .quick-banner__inner { flex-direction: column; text-align: center; align-items: stretch; }
  .quick-banner__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section--light { background: var(--light-bg); }
.section__header { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section__header.centered { text-align: center; }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-item { padding: 1.25rem 1rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: 1.8rem; color: var(--primary); line-height: 1; }
.stat-label { font-size: .7rem; color: var(--muted); margin-top: .2rem; }
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* Notes strip */
.notes-strip { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.note-pill {
  display: flex; align-items: center; gap: .35rem; padding: .45rem .9rem;
  border-radius: 50px; border: 1.5px solid var(--border); background: white;
  font-size: .78rem; font-weight: 500; color: var(--text);
  transition: all var(--t); text-decoration: none; cursor: pointer; min-height: 38px;
}
.note-pill:hover, .note-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.note-pill__dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* Category tabs */
.cat-tabs {
  display: flex; gap: .5rem; margin-bottom: 1.5rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; flex-wrap: nowrap;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: .5rem 1rem; border: 1.5px solid var(--border); border-radius: 50px;
  font-size: .8rem; font-weight: 500; cursor: pointer; background: white;
  color: var(--text); text-decoration: none; white-space: nowrap; flex-shrink: 0;
  min-height: 38px; display: flex; align-items: center; transition: all var(--t);
}
.cat-tab:hover, .cat-tab.active { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }

/* Product grid */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 640px)  { .products-grid { gap: 1.25rem; } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(4,1fr); } }

/* Product card */
.product-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
@media (min-width: 768px) { .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; } }
.product-card:active { transform: scale(.98); }
.product-card__img { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--light-bg); }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; color: var(--muted); font-size: .72rem; }
.product-card__badge { position: absolute; top: .6rem; left: .6rem; background: var(--primary); color: white; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 4px; }

/* Product Labels — up to 2 per product */
.product-labels { position: absolute; top: .6rem; left: .6rem; display: flex; flex-direction: column; gap: .3rem; z-index: 3; }
.product-label {
  display: inline-block; padding: .22rem .65rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 4px;
  white-space: nowrap; line-height: 1.5;
}
.product-label--1 { background: var(--primary); color: white; font-weight:500; letter-spacing:.06em; }
.product-label--2 { background: var(--accent-dk); color: white; font-weight:500; letter-spacing:.06em; }
.product-card__body { padding: .85rem; flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.product-card__cat { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.product-card__name { font-family: var(--font-serif); font-size: 1rem; line-height: 1.3; color: var(--dark); display: block; }
.product-card__tagline { font-size: .75rem; color: var(--muted); line-height: 1.4; }
.product-card__accords { display: flex; gap: .25rem; flex-wrap: wrap; margin-top: .2rem; }
.accord-tag { font-size: .62rem; font-weight: 600; padding: .18rem .5rem; border-radius: 50px; color: white; white-space: nowrap; }
.product-card__footer { padding: .75rem .85rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.product-card__moq { font-size: .72rem; color: var(--muted); }
.product-card__moq strong { color: var(--dark); font-weight: 600; }

/* Product detail page */
.product-detail { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; } }

/* ── Product Gallery Slider ── */
.product-gallery { position: relative; }
.pgallery__slider {
  position: relative; aspect-ratio: 1/1;
  background: var(--light-bg); border-radius: var(--radius-lg); overflow: hidden;
}
.pgallery__slide { display: none; width: 100%; height: 100%; position: absolute; inset: 0; }
.pgallery__slide--active { display: block; }
.pgallery__slide img, .pgallery__slide video { width:100%; height:100%; object-fit:contain; display:block; }
.pgallery__slide iframe { width:100%; height:100%; border:none; display:block; }
.pgallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.92); border: 1px solid var(--border);
  width: 38px; height: 38px; border-radius: 50%;
  box-shadow: var(--shadow); cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark); transition: all var(--t);
}
.pgallery__arrow:hover { background: var(--primary); color: white; border-color: var(--primary); }
.pgallery__arrow--prev { left: .6rem; }
.pgallery__arrow--next { right: .6rem; }
.pgallery__thumbs {
  display: flex; gap: .5rem; margin-top: .65rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 4px; scroll-snap-type: x mandatory;
}
.pgallery__thumbs::-webkit-scrollbar { display: none; }
.pgallery__thumb {
  flex-shrink: 0; width: 68px; height: 68px; border-radius: 8px;
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  position: relative; transition: border-color var(--t);
  background: var(--light-bg); scroll-snap-align: start;
}
.pgallery__thumb--active { border-color: var(--primary); }
.pgallery__thumb img { width:100%; height:100%; object-fit:cover; display:block; }

/* Legacy – kept for any other references */
.gallery__main { aspect-ratio: 1/1; background: var(--light-bg); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery__main img, .gallery__main video { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Quick contact success – ALWAYS hidden until shown by JS */
.qc-success { display: none !important; text-align: center; padding: 1.5rem 1rem; }
.qc-success.visible { display: block !important; }
.qc-success svg { margin: 0 auto .75rem; display: block; }
.qc-success h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: .25rem; }
.qc-success p { font-size: .85rem; color: var(--muted); }
.gallery__thumbs { display: flex; gap: .5rem; margin-top: .6rem; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: all var(--t); background: var(--light-bg); }
.gallery__thumb.active { border-color: var(--primary); }
.gallery__thumb img, .gallery__thumb video { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: .9rem; }
.product-info__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }
.product-info__name { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; }
.product-info__tagline { color: var(--muted); font-style: italic; font-size: .9rem; }
.origin-badge { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--muted); background: var(--light-bg); padding: .3rem .85rem; border-radius: 50px; border: 1px solid var(--border); width: fit-content; }

/* Variant pills */
.variant-select { display: flex; flex-direction: column; gap: .5rem; }
.variant-select > label { font-size: .82rem; font-weight: 600; color: var(--dark); }
.variant-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.variant-pill {
  padding: .55rem 1rem; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: .8rem; cursor: pointer; transition: all var(--t); background: white;
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  min-width: 68px; text-align: center; min-height: 48px; justify-content: center;
  /* It's a <label> wrapping a radio — make sure it's clickable */
  user-select: none;
}
.variant-pill:hover { border-color: var(--primary); }
.variant-pill.active { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); font-weight: 700; }
.variant-pill .price { font-size: .68rem; color: var(--muted); }
.variant-pill.active .price { color: var(--primary); }

.inquiry-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.inquiry-actions .btn { flex: 1; min-width: 140px; }

/* Notes pyramid */
.notes-pyramid { background: var(--light-bg); border-radius: var(--radius); padding: 1rem; }
.notes-pyramid h4 { font-size: .82rem; margin-bottom: .75rem; }
.notes-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; }
@media (max-width: 480px) { .notes-row { grid-template-columns: 1fr; } }
.notes-col { background: white; padding: .65rem; border-radius: 6px; border: 1px solid var(--border); }
.notes-col h5 { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: .3rem; }
.notes-col p { font-size: .78rem; }

/* Performance bars */
.longevity-bar { background: var(--light-bg); border-radius: var(--radius); padding: .9rem 1rem; }
.longevity-bar__row { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: .4rem; }
.longevity-bar__track { background: var(--border); border-radius: 50px; height: 6px; overflow: hidden; margin-bottom: .6rem; }
.longevity-bar__fill { height: 100%; background: linear-gradient(to right, var(--accent-lt), var(--accent)); border-radius: 50px; }

/* Tabs */
.tabs { border-bottom: 2px solid var(--border); display: flex; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-btn { padding: .7rem 1.2rem; font-size: .82rem; font-weight: 500; border: none; background: none; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--t); white-space: nowrap; min-height: 44px; }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; padding-top: 1.25rem; }
.tab-content.active { display: block; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: .65rem .85rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: .85rem; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: .88rem; }
.cart-thumb { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--light-bg); flex-shrink: 0; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr; gap: .9rem; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--dark); }
.form-control { width: 100%; padding: .75rem .9rem; border: 2px solid var(--border); border-radius: var(--radius); font-size: .95rem; color: var(--text); background: white; transition: border-color var(--t); min-height: 50px; -webkit-appearance: none; }
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { resize: vertical; min-height: 90px; }
.cart-form { background: var(--light-bg); border-radius: var(--radius-lg); padding: 1.5rem; }

/* Alerts */
.alert { padding: 1rem 1.1rem; border-radius: var(--radius); font-size: .88rem; margin-bottom: 1rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info     { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* Badges */
.badge { padding: .22rem .55rem; border-radius: 4px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-info    { background: #d1ecf1; color: #0c5460; }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all var(--t); }
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card__icon { font-size: 1.8rem; margin-bottom: .75rem; }
.service-card__title { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: .4rem; }
.service-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.testimonial__stars { color: #f5a623; font-size: .82rem; margin-bottom: .65rem; }
.testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: .98rem; line-height: 1.6; margin-bottom: .85rem; }
.testimonial__author { font-size: .78rem; color: var(--muted); }
.testimonial__author strong { color: var(--text); font-weight: 600; display: block; }

/* Footer */
.footer { background: var(--dark); color: #999; padding: 3rem 0 1.5rem; }
.footer__grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; } }
.footer__brand .footer__logo { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: white; margin-bottom: .65rem; }
.footer__brand p { font-size: .83rem; color: #777; line-height: 1.7; margin-bottom: .9rem; }
.footer__social { display: flex; gap: .5rem; }
.footer__social a { width: 34px; height: 34px; border: 1px solid #333; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: #777; transition: all var(--t); }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer h5 { color: white; font-family: var(--font-ui); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .9rem; }
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer ul a { font-size: .83rem; color: #777; transition: color var(--t); }
.footer ul a:hover { color: white; }
.footer__bottom { border-top: 1px solid #222; padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .75rem; color: #555; }

/* WhatsApp float (desktop only) */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 52px; height: 52px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 390; transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Process Slider (How to Order) ─────────────────────────── */
.process-slider { position: relative; overflow: hidden; }
.process-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.process-step {
  min-width: 100%; padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1rem; flex-shrink: 0;
}
@media (min-width: 768px) {
  .process-track { flex-wrap: wrap; transform: none !important; }
  .process-step { min-width: 25%; flex: 1; }
}
.process-step__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400;
  position: relative; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(92,61,30,.25);
}
.process-step__num::after {
  content: '';
  position: absolute; top: 50%; left: 100%;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--primary), var(--border));
  transform: translateY(-50%);
}
.process-step:last-child .process-step__num::after { display: none; }
@media (max-width: 767px) { .process-step__num::after { display: none; } }
.process-step h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--dark); margin-bottom: .25rem; }
.process-step p { font-size: .83rem; color: var(--muted); max-width: 200px; line-height: 1.6; }
/* Mobile dots */
.process-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.process-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all .3s; }
.process-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
@media (min-width: 768px) { .process-dots { display: none; } }

/* ── Gender Shop Section ─────────────────────────────────── */
.gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) { .gender-grid { grid-template-columns: 1fr; } }
@media (min-width: 641px) and (max-width: 900px) { .gender-grid { grid-template-columns: 1fr 1fr; } }

.gender-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; min-height: 280px;
  transition: transform .25s, box-shadow .25s;
}
.gender-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Textured background patterns via CSS */
.gender-card--men {
  background: linear-gradient(160deg, #1E1208 0%, #3A2010 50%, #4a2c18 100%);
}
.gender-card--women {
  background: linear-gradient(160deg, #1E0E14 0%, #3A1828 50%, #5a2440 100%);
}
.gender-card--unisex {
  background: linear-gradient(160deg, #0E1618 0%, #182830 50%, #243840 100%);
}

/* Subtle pattern overlay for texture */
.gender-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
  z-index: 0;
}

/* Gold top accent line */
.gender-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  z-index: 1;
}

.gender-card__overlay { display: none; } /* removed — using CSS bg directly */

.gender-card__body {
  position: relative; z-index: 2;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  gap: .75rem; height: 100%; flex: 1;
}

.gender-card__icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  margin-bottom: .25rem;
}

.gender-card__label {
  font-size: .62rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent-lt);
  display: block;
}

.gender-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 400; line-height: 1.15;
  color: white; margin: 0;
}

/* Fragrance note pills */
.gender-card__notes {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-top: auto; padding-top: .5rem;
}
.gender-card__notes span {
  font-size: .65rem; font-weight: 500; letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: .2rem .6rem; border-radius: 50px;
}

.gender-card__btn {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; color: white;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: .15rem; width: fit-content;
  margin-top: .25rem;
  transition: border-color var(--t), color var(--t);
}
.gender-card:hover .gender-card__btn { color: var(--accent-lt); border-color: var(--accent-lt); }

/* ── Why Us Section ───────────────────────────────────────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .why-us-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.why-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.25rem;
  text-align: center; transition: all var(--t);
}
.why-card:hover { border-color: var(--border-dk); box-shadow: var(--shadow); }
.why-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--border-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1rem;
}
.why-card h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: .4rem; color: var(--dark); }
.why-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── CTA strip (gold) ─────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 60%, var(--primary-lt) 100%);
  padding: 3.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(201,150,58,.1);
}
.cta-strip h2 { color: white; margin-bottom: 1.25rem; }
.cta-strip p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 1.5rem; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; text-align: left; padding: 1.1rem 0;
  background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--accent); }
.faq-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform var(--t); }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.8; }
.faq-body.open { display: block; }

/* ── Steps grid ────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── About / Services page ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background:url('../img/fragoil-logo.png') center/600px no-repeat; opacity:.03; }
.page-hero h1 { color: white; margin-bottom: .6rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.team-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.team-card__img { aspect-ratio: 1/1; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.team-card__body { padding: 1.25rem; }

/* ══════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════ */
.admin-wrap { display: flex; min-height: 100vh; background: #f4f6f9; }
.admin-sidebar { width: 220px; background: var(--dark); flex-shrink: 0; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar__logo { padding: 1.25rem 1rem; border-bottom: 1px solid #2a2a2a; font-family: var(--font-serif); font-size: 1.05rem; color: white; }
.admin-sidebar__logo span { color: var(--accent); }
.admin-nav { flex: 1; padding: .75rem 0; }
.admin-nav a { display: flex; align-items: center; gap: .7rem; padding: .65rem 1rem; font-size: .82rem; color: #888; transition: all var(--t); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: white; background: rgba(255,255,255,.05); border-left-color: var(--accent); }
.admin-sidebar__footer { padding: 1rem; border-top: 1px solid #2a2a2a; font-size: .75rem; color: #555; }
.admin-sidebar__footer a { color: #777; }
.admin-sidebar__footer a:hover { color: white; }
.admin-main { flex: 1; padding: 1.5rem; overflow-x: hidden; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.admin-header h1 { font-size: 1.4rem; color: var(--dark); }
.admin-card { background: white; border-radius: var(--radius); box-shadow: 0 1px 6px rgba(0,0,0,.06); padding: 1.25rem; margin-bottom: 1.25rem; }
.admin-card h3 { font-size: .95rem; margin-bottom: .9rem; color: var(--dark); padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.admin-table th { text-align: left; padding: .55rem .85rem; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); background: var(--light-bg); border-bottom: 2px solid var(--border); }
.admin-table td { padding: .7rem .85rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: #fafafa; }
.admin-table img { width: 44px; height: 44px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: .9rem; margin-bottom: 1.25rem; }
.stat-card { background: white; border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: 0 1px 6px rgba(0,0,0,.06); display: flex; align-items: center; gap: .9rem; }
.stat-card__icon { width: 42px; height: 42px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.stat-card__num { font-size: 1.5rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-card__label { font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.upload-zone { border: 2px dashed var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; cursor: pointer; transition: all var(--t); background: var(--light-bg); }
.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary); background: var(--primary-bg); }
.upload-zone svg { margin: 0 auto .65rem; opacity: .4; }
.upload-zone p { font-size: .83rem; color: var(--muted); }
.image-preview-grid { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: .65rem; }
.image-preview { position: relative; width: 88px; height: 88px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.image-preview__del { position: absolute; top: 2px; right: 2px; background: rgba(0,0,0,.65); color: white; border: none; border-radius: 3px; width: 20px; height: 20px; cursor: pointer; font-size: .68rem; display: flex; align-items: center; justify-content: center; }
.variant-row { display: grid; grid-template-columns: 1.4fr 80px 80px 130px 44px; gap: .45rem; align-items: center; background: var(--light-bg); padding: .55rem .75rem; border-radius: 6px; margin-bottom: .5rem; }
.variant-row input { width: 100%; padding: .4rem .55rem; border: 1px solid var(--border); border-radius: 4px; font-size: .82rem; }
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion__btn { width: 100%; text-align: left; padding: .9rem 1.1rem; background: none; border: none; cursor: pointer; font-weight: 600; font-size: .88rem; display: flex; justify-content: space-between; align-items: center; color: var(--dark); }
.accordion__btn:hover { background: var(--light-bg); }
.accordion__content { padding: .9rem 1.1rem; display: none; font-size: .86rem; color: var(--text); line-height: 1.7; }
.accordion__content.open { display: block; }
@media (max-width: 1024px) { .stat-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .admin-wrap { flex-direction: column; } .admin-sidebar { width: 100%; height: auto; position: static; } .stat-cards { grid-template-columns: 1fr 1fr; } }