/* ================================================================
   iota international — Premium Dark Theme
   Inspired by gonoise.com | Outfit font
   ================================================================ */

/* ----------------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------------- */
:root {
  --bg:         #0a0a0a;
  --surface-1:  #111111;
  --surface-2:  #1a1a1a;
  --surface-3:  #242424;
  --border:     #2a2a2a;
  --border-2:   #333333;

  --accent:       #e8502a;
  --accent-h:     #ff6b3d;
  --accent-gold:  #e8a030;
  --accent-blue:  #4a9eff;
  --accent-green: #4caf50;

  --text-1: #ffffff;
  --text-2: #aaaaaa;
  --text-3: #666666;

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ann-h:        36px;   /* announcement bar height */
  --nav-h:        68px;
  --max-w:        1440px;
  --pad-x:        clamp(16px, 4vw, 64px);
  --slider-r:     20px;   /* hero card border-radius */

  --ease:         cubic-bezier(.4, 0, .2, 1);
  --ease-out:     cubic-bezier(0, 0, .2, 1);
  --dur-fast:     .15s;
  --dur-base:     .28s;
  --dur-slow:     .55s;
}

/* ----------------------------------------------------------------
   Reset
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: #ffffff;
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); background: none; border: none; color: inherit; }
ul { list-style: none; }


/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
#ann-bar {
  height: var(--ann-h);
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

/* Ticker wrapper — slides vertically through 3 lines */
.ann-ticker {
  display: flex;
  flex-direction: column;
  animation: ann-tick 9s cubic-bezier(.4, 0, .2, 1) infinite;
}

/* Each line is exactly ann-bar height so only one shows at a time */
.ann-ticker-line {
  height: var(--ann-h);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  letter-spacing: .2px;
}

/* Line 1 holds → slides up → Line 2 holds → fades out → snap → Line 1 fades in */
@keyframes ann-tick {
  0%   { transform: translateY(0);                         opacity: 1; }
  35%  { transform: translateY(0);                         opacity: 1; } /* Line 1 hold */
  44%  { transform: translateY(calc(-1 * var(--ann-h)));   opacity: 1; } /* slide to Line 2 */
  79%  { transform: translateY(calc(-1 * var(--ann-h)));   opacity: 1; } /* Line 2 hold */
  87%  { transform: translateY(calc(-1 * var(--ann-h)));   opacity: 0; } /* fade out */
  88%  { transform: translateY(0);                         opacity: 0; } /* invisible snap */
  97%  { transform: translateY(0);                         opacity: 1; } /* Line 1 fade in */
  100% { transform: translateY(0);                         opacity: 1; }
}

.ann-item { display: flex; align-items: center; gap: 6px; }
.ann-item strong { color: var(--text-1); font-weight: 600; }
.ann-item svg { color: rgba(255,255,255,.45); flex-shrink: 0; }

.ann-dot { color: var(--border-2); }

.ann-link {
  color: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .3px;
  transition: color var(--dur-fast) var(--ease);
}
.ann-link:hover { color: var(--text-1); }

/* ================================================================
   HERO SECTION — 100 vh wrapper
   ================================================================ */
#hero-section {
  position: relative;
  height: calc(100vh - var(--ann-h));
  min-height: 560px;
  background: linear-gradient(to bottom, #0a0a0a 0%, #0a0a0a 24%, #fcf7ee 100%);
  /* top pad = navbar height so card floats below nav; sides/bottom for card margins */
  padding: var(--nav-h) clamp(14px, 3vw, 48px) clamp(14px, 2vw, 24px);
}


/* ================================================================
   NAVBAR
   ================================================================ */
#navbar {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: var(--nav-h);
  z-index: 900;
  background: var(--bg);
  transition:
    background   .38s ease,
    box-shadow   .38s ease;
}

/* Logo — smooth filter transition for dark ↔ white swap */
.logo img {
  transition: filter .38s ease;
}

/* Sticky state — white theme */
#navbar.is-sticky {
  position: fixed;
  top: 0;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(0,0,0,.09), 0 2px 20px rgba(0,0,0,.07);
}

/* Logo: invert white logo → dark on white navbar */
#navbar.is-sticky .logo img {
  filter: invert(1);
}

/* Nav links → dark text */
#navbar.is-sticky .nav-link,
#navbar.is-sticky .nav-link--mega {
  color: rgba(0,0,0,.72);
}
#navbar.is-sticky .nav-link:hover,
#navbar.is-sticky .nav-link--active,
#navbar.is-sticky .nav-link--mega:hover {
  color: #000000;
  background: rgba(0,0,0,.05);
}

/* Chevron → dark */
#navbar.is-sticky .chevron { color: rgba(0,0,0,.5); }

/* Right icons → dark */
#navbar.is-sticky .nav-icon-btn {
  color: rgba(0,0,0,.7);
}
#navbar.is-sticky .nav-icon-btn:hover {
  color: #000000;
  background: rgba(0,0,0,.06);
}

/* Hamburger bars → dark */
#navbar.is-sticky .hamburger span {
  background: #111111;
}
#navbar.is-sticky .hamburger:hover {
  background: rgba(0,0,0,.06);
}

/* When sticky, mega-menu drops from nav-h */
#navbar.is-sticky ~ * .mega-menu,
#navbar.is-sticky .mega-menu {
  top: var(--nav-h);
}

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--dur-fast) var(--ease);
}
.logo:hover { opacity: .8; }
.logo img { height: 60px; width: auto; }

/* ----------------------------------------------------------------
   Nav Links (desktop)
   ---------------------------------------------------------------- */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link--active { color: var(--text-1); }
.nav-link:hover  { background: rgba(255,255,255,.06); }


.nav-link--mega {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 8px;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-link--mega:hover { color: var(--text-1); background: rgba(255,255,255,.06); }

.chevron {
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.mega-wrap.is-open .chevron,
.mega-wrap:hover    .chevron { transform: rotate(180deg); }


/* ================================================================
   MEGA MENU
   ================================================================ */
.mega-wrap { position: static; }

/* ── Mega Menu — boAt-style white panel ── */
.mega-menu {
  position: fixed;
  top: calc(var(--ann-h) + var(--nav-h));
  left: 0; right: 0;
  background: #ffffff;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  pointer-events: none;
}
.mega-menu.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 22px var(--pad-x) 26px;
}

/* Product grid — 4 per row */
.mega-pg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 0;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  transition: background .15s ease;
  color: #222222;
}
.mega-item:hover { background: #f5f5f5; }

.mega-item-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f2f2f2;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.mega-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #222222;
  line-height: 1.35;
}

/* View All item */
.mega-item--all .mega-item-img {
  background: #111111;
  color: #ffffff;
}
.mega-item--all:hover .mega-item-img { background: #333333; }
.mega-item--all .mega-item-name { font-weight: 600; color: #111111; }

/* Featured panel (5th column) */
.mega-featured {
  background: var(--surface-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.mega-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

.mega-featured-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  padding: 12px 14px 0;
}

.mega-featured img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 8px 16px;
  background: linear-gradient(135deg, #1c1c1c 0%, #222 100%);
}

.mega-featured-info { padding: 10px 14px 14px; }
.mega-featured-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}
.mega-featured-price {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.mega-featured-price s { opacity: .5; }

.mega-featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  transition: background var(--dur-fast) var(--ease);
}
.mega-featured-btn:hover { background: rgba(255,255,255,.85); }


/* ================================================================
   NAV RIGHT — search + icons wrapper
   ================================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ================================================================
   SEARCH BAR
   ================================================================ */
.search-bar {
  max-width: 220px;
  min-width: 130px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.search-bar:focus-within {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 3px rgba(232,80,42,.18);
}

.search-icon { color: var(--text-3); flex-shrink: 0; }

.search-input-wrap {
  flex: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font: 500 14px/1 var(--font);
  color: var(--text-1);
  position: relative;
  z-index: 2;
  /* hide default placeholder since we use custom typewriter */
  caret-color: var(--accent);
}
.search-input::-webkit-search-cancel-button { display: none; }
.search-input::placeholder { color: transparent; }

.tw-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font: 400 14px/1 var(--font);
  color: var(--text-3);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.tw-placeholder.is-hidden { display: none; }


/* ================================================================
   NAV ACTIONS (right icons)
   ================================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.nav-icon-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.78);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav-icon-btn:hover { color: var(--text-1); background: rgba(255,255,255,.08); }

.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  font: 700 9px/16px var(--font);
  text-align: center;
  border-radius: 10px;
  padding-inline: 3px;
  pointer-events: none;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 9px;
  transition: background var(--dur-fast) var(--ease);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease), width var(--dur-base) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
  display: none; /* shown on mobile via media query */
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(9,9,9,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 800;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-inner {
  padding: 20px var(--pad-x) 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--text-3);
}
.mobile-search input {
  flex: 1; background: none; border: none; outline: none;
  font: 400 15px var(--font); color: var(--text-1);
}
.mobile-search input::placeholder { color: var(--text-3); }

.mobile-nav { display: flex; flex-direction: column; }

.mobile-nav-link {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-1);
  transition: color var(--dur-fast) var(--ease);
}
.mobile-nav-link:hover { color: var(--accent); }

/* Accordion */
.mobile-accordion { border-bottom: 1px solid var(--border); }

.mobile-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
}
.mobile-acc-btn svg { flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.mobile-accordion.is-open .mobile-acc-btn svg { transform: rotate(180deg); }

.mobile-acc-panel {
  display: none;
  flex-direction: column;
  padding: 4px 0 14px 12px;
  gap: 0;
}
.mobile-accordion.is-open .mobile-acc-panel { display: flex; }

.mobile-acc-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-3);
  padding: 12px 0 6px;
}

.mobile-acc-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  border-radius: 8px;
  transition: all var(--dur-fast) var(--ease);
}
.mobile-acc-panel a:hover { color: var(--text-1); background: var(--surface-2); }
.mobile-acc-panel a span { font-size: 13px; font-weight: 600; color: var(--accent); }
.badge-cs {
  font-size: 10px !important;
  color: var(--text-3) !important;
  background: var(--surface-3);
  padding: 2px 7px;
  border-radius: 4px;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.8;
}


/* ================================================================
   HERO SLIDER — Card style (gonoise-inspired)
   ================================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--slider-r);
  user-select: none;
  /* subtle shadow to lift the card off the dark bg */
  box-shadow: 0 8px 48px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}

/* Individual slide — stack over each other */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s var(--ease), visibility .75s var(--ease);
  pointer-events: none;
}
.slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-bg { position: absolute; inset: 0; }
.slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay — left side dark for text readability, right shows product */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 28%,
      rgba(0,0,0,.18) 54%,
      rgba(0,0,0,0)   72%
    ),
    linear-gradient(to top,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,0)   25%
    );
  z-index: 1;
}

/* Text content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 70px;
}

.slide-text {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Staggered entrance animation for active slide */
.slide--active .slide-text > * {
  animation: riseUp .75s var(--ease-out) both;
}
.slide--active .slide-tag      { animation-delay: .08s; }
.slide--active .slide-headline { animation-delay: .18s; }
.slide--active .slide-desc     { animation-delay: .28s; }
.slide--active .slide-price    { animation-delay: .36s; }
.slide--active .slide-cta      { animation-delay: .44s; }

@keyframes riseUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tag pill */
.slide-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 100px;
}
.slide-tag--orange { background: var(--accent);      color: #fff; }
.slide-tag--gold   { background: var(--accent-gold); color: #000; }
.slide-tag--blue   { background: var(--accent-blue); color: #000; }

/* Headline */
.slide-headline {
  font-size: clamp(30px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-1);
}

/* Desc */
.slide-desc {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  max-width: 420px;
}

/* Price row */
.slide-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.price-now {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--text-1);
}
.price-was {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-off {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(76,175,80,.14);
  padding: 3px 10px;
  border-radius: 100px;
}

/* CTA buttons */
.slide-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: var(--accent);
  color: #fff;
  font: 600 15px var(--font);
  border-radius: 100px;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,80,42,.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font: 600 15px var(--font);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }


/* ================================================================
   SLIDER CONTROLS
   ================================================================ */

/* Prev / Next arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.hero-slider:hover .slider-arrow { opacity: 1; }
.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }
.slider-arrow:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-50%) scale(1.08);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 100px;
  background: rgba(255,255,255,.28);
  transition: width var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.dot--active {
  width: 26px;
  background: rgba(255,255,255,.9);
}
.dot:hover { background: rgba(255,255,255,.6); }

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.08);
  z-index: 10;
}
.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,.85);
  transition: width linear;
  transform-origin: left;
}


/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* ---- Tablet: hide full nav, keep key items ---- */
@media (max-width: 1100px) {
  .mega-inner { grid-template-columns: repeat(4, 1fr); }
  .mega-featured { display: none; }
}

@media (max-width: 960px) {
  .nav-links .nav-link:not(.nav-link--active) { display: none; }
  .mega-wrap { display: none; }
}

/* ---- Switch to hamburger ---- */
@media (max-width: 800px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: block; }

  .search-bar { display: none; }
}

/* ---- Small mobile ---- */
@media (max-width: 600px) {
  :root {
    --nav-h:   58px;
    --ann-h:   32px;
    --slider-r: 14px;
  }

  #hero-section { padding: var(--nav-h) 8px 8px; }

  .ann-ticker-line { gap: 8px; font-size: 11px; }
  /* Mobile: hide middle items, show only first + last per line */
  .ann-ticker-line .ann-dot:nth-of-type(2),
  .ann-ticker-line .ann-dot:nth-of-type(3),
  .ann-ticker-line .ann-item:nth-of-type(3),
  .ann-ticker-line .ann-item:nth-of-type(4) { display: none; }

  .logo img { height: 30px; }
  .search-bar { display: none; }

  .slide-content {
    padding: calc(var(--nav-h) + 16px) 18px 64px;
  }

  .slide-cta { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 14px; }

  /* Always show arrows on mobile (no hover on touch) */
  .slider-arrow { opacity: .6; }
  .slider-arrow--prev { left: 10px; width: 38px; height: 38px; }
  .slider-arrow--next { right: 10px; width: 38px; height: 38px; }
}

@media (max-width: 380px) {
  .nav-actions .nav-icon-btn:first-child { display: none; }
}

/* ---- Prefers reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* ================================================================
   SHOP BY CATEGORY SECTION
   ================================================================ */
.cat-section {
  background: #fcf7ee;
  padding: 80px var(--pad-x) 88px;
}

.cat-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Header ── */
.cat-header {
  margin-bottom: 24px;
}

.cat-heading-accent {
  font-weight: 700;
  color: var(--accent);
}

/* ── Grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* ── Card ── */
.cat-card {
  display: flex;
  flex-direction: column;
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
}

/* ── Image ── */
.cat-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.07); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,.7) 100%
  );
}

/* ── Icon Badge ── */
.cat-card-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: background .2s ease, color .2s ease;
}
.cat-card:hover .cat-card-icon-ring {
  background: var(--accent);
  color: #ffffff;
}

/* ── Body ── */
.cat-card-body {
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cat-card-name {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -.3px;
}

.cat-card-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  flex: 1;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .2px;
  margin-top: 4px;
  transition: gap .2s ease;
}
.cat-card:hover .cat-card-link { gap: 8px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 700px) {
  .cat-section { padding: 48px var(--pad-x) 56px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-header { margin-bottom: 20px; }
  .cat-card-name { font-size: 15px; }
  .cat-card-icon-ring { width: 44px; height: 44px; margin-top: -22px; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card-body { padding: 12px 12px 16px; }
  .cat-card-name { font-size: 14px; }
  .cat-card-desc { font-size: 11.5px; }
}


/* ================================================================
   WHY CHOOSE iota SECTION
   ================================================================ */
.wci-section {
  background: #fcf7ee;
  padding: 0 var(--pad-x) 88px;
}

.wci-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.wci-header {
  margin-bottom: 28px;
}

.wci-accent {
  font-weight: 700;
  color: var(--accent);
}

/* ── Grid ── */
.wci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Card ── */
.wci-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 26px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .25s ease, transform .25s ease;
}
.wci-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

/* ── Icon ── */
.wci-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(232,80,42,.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Text ── */
.wci-card-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.wci-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -.2px;
  line-height: 1.3;
}

.wci-card-desc {
  font-size: 13px;
  color: rgba(0,0,0,.48);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .wci-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wci-section { padding: 0 14px 56px; }
  .wci-grid { grid-template-columns: 1fr; gap: 10px; }
  .wci-card { padding: 20px 18px; gap: 14px; }
  .wci-icon { width: 44px; height: 44px; border-radius: 12px; }
  .wci-card-title { font-size: 14.5px; }
  .wci-card-desc { font-size: 12.5px; }
}


/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.products-section {
  background: #fcf7ee;
  padding: 72px var(--pad-x) 80px;
}

.products-container {
  max-width: var(--max-w);
  margin-inline: auto;
}

/* ---- Section Header ---- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* Prev / Next nav buttons */
.ps-nav-btns { display: flex; gap: 8px; }

.ps-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: #222222;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  flex-shrink: 0;
}
.ps-btn:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.section-heading {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1.3;
  letter-spacing: -.2px;
}

/* Dynamic word in heading */
.dyn-word,
.dyn-word-2 {
  font-weight: 700;
  display: inline-block;
  transition: opacity .25s ease, transform .25s ease;
}
.dyn-word.dyn-exit,
.dyn-word-2.dyn-exit {
  opacity: 0;
  transform: translateY(-6px);
}
@keyframes dynEnter {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.dyn-word.dyn-enter,
.dyn-word-2.dyn-enter {
  animation: dynEnter .28s ease forwards;
}

/* ---- Products Slider ---- */
.products-slider-wrap {
  overflow: hidden;
  position: relative;
}

.products-track {
  display: flex;
  gap: 16px;
  transition: transform .46s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* Each card in track: 4 visible (3 gaps of 16px = 48px) */
.products-track .product-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}

/* ---- Product Card ---- */
.product-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .26s ease, transform .26s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 14px 40px rgba(0,0,0,.13);
  transform: translateY(-4px);
}
.product-card--soon {
  opacity: .65;
}
.product-card--soon .product-img {
  filter: grayscale(45%);
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.product-card.sr-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card.sr-card.sr-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Product Image Area ---- */
.product-img-wrap {
  display: block;
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
}
.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.product-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-img-icon { opacity: .4; }

/* Wishlist button — appears on hover */
.product-wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #888888;
  cursor: pointer;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .2s ease, transform .2s ease, color .15s ease;
  z-index: 2;
}
.product-card:hover .product-wish {
  opacity: 1;
  transform: scale(1);
}
.product-wish:hover { color: #e05252; }

/* ---- Product Info ---- */
.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Coming Soon tag */
.soon-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #999999;
  border: 1px solid #e0e0e0;
  padding: 3px 9px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 2px;
}

/* Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.stars {
  color: #f5a623;
  font-size: 12px;
  letter-spacing: .6px;
  line-height: 1;
}
.review-count {
  font-size: 11.5px;
  color: #bbbbbb;
  font-weight: 400;
}

/* Name */
.product-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a { color: inherit; text-decoration: none; transition: color .15s; }
.product-name a:hover { color: var(--accent); }

/* Price */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.price-original {
  font-size: 12px;
  color: #c0c0c0;
  text-decoration: line-through;
  font-weight: 400;
}
.price-sale {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -.3px;
}
.price-off {
  font-size: 11.5px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: .1px;
}
.price-tbd {
  font-size: 13px;
  color: #bbbbbb;
  font-style: italic;
}

/* Feature line — hidden (cleaner) */
.product-feat { display: none; }

/* Product slogan — 2 lines below name */
.product-slogan {
  font-size: 11.5px;
  color: #999999;
  line-height: 1.6;
  font-style: normal;
  margin-top: 1px;
}

/* CTA */
.product-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 18px;
  background: #1c1c1e;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 10px;
  transition: background .2s ease, letter-spacing .2s ease;
  cursor: pointer;
  border: none;
  letter-spacing: .3px;
}
.product-cta:hover {
  background: #3a3a3c;
  letter-spacing: .6px;
}
.product-cta--notify {
  background: #eeeeee;
  color: #c0c0c0;
  cursor: not-allowed;
}
.product-cta--notify:hover { background: #eeeeee; letter-spacing: .3px; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  /* 3 cards visible */
  .products-track .product-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 768px) {
  .products-section { padding: 48px var(--pad-x) 56px; }
  .section-heading { font-size: 22px; }
  /* 2 cards visible */
  .products-track .product-card { flex: 0 0 calc((100% - 16px) / 2); }
  .products-track { gap: 12px; }
  .ps-btn { width: 36px; height: 36px; }
}
@media (max-width: 420px) {
  .product-info { padding: 11px 11px 13px; }
  .product-name { font-size: 13.5px; }
  .price-sale { font-size: 14.5px; }
}


/* ================================================================
   SECONDARY BANNER SLIDER
   ================================================================ */
.ss-section {
  background: #fcf7ee;
  padding: 0 var(--pad-x) 0;
}

.ss-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* Slider viewport */
.ss-slider {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  user-select: none;
  cursor: grab;
}
.ss-slider:active { cursor: grabbing; }

/* Track */
.ss-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide */
.ss-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.ss-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Dots */
.ss-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
}
.ss-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cccccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, width .25s ease;
}
.ss-dot--active {
  background: #111111;
  width: 22px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 640px) {
  .ss-section { padding: 0 14px 0; }
  .ss-slider { border-radius: 16px; }
}


/* ================================================================
   BANNER IMAGE STRIP
   ================================================================ */
.tdv-section {
  background: #fcf7ee;
  padding: 0 var(--pad-x);
}

.tdv-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.tdv-banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 640px) {
  .tdv-section { padding: 0 14px; }
  .tdv-banner-img { border-radius: 16px; }
}


/* ================================================================
   INSTAGRAM REELS SECTION
   ================================================================ */
.insta-section {
  background: #fcf7ee;
  padding: 72px 0 80px;
  overflow: hidden;
}

.insta-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Two-column body ── */
.insta-body {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.insta-left  { flex: 1; min-width: 0; }
.insta-right { flex: 0 0 240px; }

/* ── Header ── */
.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.insta-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.insta-icon-ring {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 55%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insta-handle {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: #111111;
  letter-spacing: -.4px;
  line-height: 1.15;
}

.insta-tagline {
  font-size: 12.5px;
  color: rgba(0,0,0,.42);
  margin-top: 3px;
}

/* ── Nav buttons (in header) ── */
.insta-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.insta-arr {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cccccc;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.insta-arr:hover  { background: #111111; border-color: #111111; color: #ffffff; }
.insta-arr:disabled { opacity: .3; cursor: default; }

/* ── Viewport & Track ── */
.insta-viewport {
  overflow: hidden;
}

.insta-reel-track {
  display: flex;
  gap: 12px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Reel Card — 4 visible ── */
.insta-card {
  flex: 0 0 calc((100% - 36px) / 4);   /* 4 cards, 3 gaps × 12px */
  min-width: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1c1c1c;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.insta-card:hover .insta-video { transform: scale(1.04); }

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.28) 0%,
    transparent 35%,
    transparent 60%,
    rgba(0,0,0,.52) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  pointer-events: none;
}

.insta-reel-icon {
  align-self: flex-end;
  color: rgba(255,255,255,.8);
  line-height: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
}

.insta-mute-btn {
  align-self: flex-end;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s, transform .2s, background .2s;
}
.insta-card:hover .insta-mute-btn { opacity: 1; transform: scale(1); }
.insta-mute-btn:hover { background: rgba(255,255,255,.25); }
.insta-card.is-unmuted { box-shadow: 0 0 0 2.5px #dc2743; }

/* ── QR Panel ── */
.insta-qr-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px 22px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.insta-qr-ig-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 55%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* QR with Instagram gradient ring */
.insta-qr-ring {
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 55%, #cc2366 75%, #bc1888 100%);
  margin-bottom: 12px;
}

.insta-qr-inner {
  background: #ffffff;
  border-radius: 15px;
  padding: 10px;
  line-height: 0;
}

.insta-qr-img {
  width: 140px;
  height: 140px;
  display: block;
  border-radius: 6px;
}

.insta-qr-scan-txt {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(0,0,0,.4);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.insta-qr-divider {
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin-bottom: 14px;
}

.insta-qr-handle {
  font-size: 14px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -.2px;
  margin-bottom: 10px;
}

.insta-qr-msg {
  font-size: 12.5px;
  color: rgba(0,0,0,.55);
  line-height: 1.7;
  margin-bottom: 18px;
}
.insta-qr-msg strong {
  color: #111111;
  font-weight: 700;
}

/* Follow button */
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #ffffff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 55%, #cc2366 75%, #bc1888 100%);
  transition: opacity .2s ease, transform .2s ease;
  white-space: nowrap;
}
.insta-follow-btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .insta-body    { flex-direction: column; }
  .insta-right   { flex: none; width: 100%; }
  .insta-qr-panel {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 24px;
    padding: 22px 24px;
    flex-wrap: wrap;
  }
  .insta-qr-ig-icon { display: none; }
  .insta-qr-ring  { margin-bottom: 0; flex-shrink: 0; }
  .insta-qr-divider { display: none; }
  .insta-qr-scan-txt { display: none; }
  .insta-follow-btn { width: auto; }
}
@media (max-width: 600px) {
  .insta-section  { padding: 56px 0 64px; }
  .insta-wrap     { padding: 0 14px; }
  .insta-card     { flex: 0 0 calc((100% - 24px) / 3); }
  .insta-reel-track { gap: 8px; }
  .insta-tagline  { display: none; }
}


/* ================================================================
   FOOTER
   ================================================================ */

/* ── Newsletter Strip ── */
.footer-newsletter {
  background: linear-gradient(120deg, #0d0d0d 0%, #181818 60%, #111111 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 44px var(--pad-x);
  position: relative;
  overflow: hidden;
}
/* Subtle accent line on left */
.footer-newsletter::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #f09433, #dc2743, #bc1888);
}

.footer-nl-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nl-heading {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.footer-nl-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

.footer-nl-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 460px;
  min-width: 280px;
}

.footer-nl-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-input:focus {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
}

.footer-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  border-radius: 100px;
  background: #ffffff;
  color: #111111;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, gap .2s ease;
}
.footer-nl-btn:hover { background: #ebebeb; gap: 11px; }

/* ── Trust Stats Strip ── */
.footer-trust-strip {
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: stretch;
}

.footer-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  transition: background .2s ease;
}
.footer-trust-item:hover {
  background: rgba(255,255,255,.03);
}
.footer-trust-item > svg {
  flex-shrink: 0;
  color: rgba(255,255,255,.3);
  transition: color .2s ease;
}
.footer-trust-item:hover > svg {
  color: #fbbf24;
}

.footer-trust-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-trust-num {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -.5px;
}
.footer-trust-num sup {
  font-size: 11px;
  font-weight: 700;
  vertical-align: super;
}

.footer-trust-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
  font-weight: 500;
  letter-spacing: .2px;
  white-space: nowrap;
}

.footer-trust-sep {
  width: 1px;
  background: rgba(255,255,255,.07);
  margin: 16px 0;
  flex-shrink: 0;
}

/* ── Footer Body ── */
.footer-body {
  background: #111111;
  padding: 72px var(--pad-x) 60px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.1fr 1.3fr;
  gap: 40px 32px;
}

/* ── Columns ── */
.footer-col-heading {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Brand Column */
.footer-logo { display: inline-block; margin-bottom: 18px; text-decoration: none; }

.footer-logo-text {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1;
  display: block;
}

.footer-logo-int {
  font-weight: 300;
  color: rgba(255,255,255,.55);
  font-size: 24px;
  letter-spacing: .5px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border-color: rgba(255,255,255,.25);
}

/* Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
  transition: color .18s ease;
  line-height: 1.4;
}
.footer-links a:hover { color: #ffffff; }

.footer-link--highlight {
  color: rgba(255,200,80,.7) !important;
  font-weight: 600;
}
.footer-link--highlight:hover { color: #ffd250 !important; }

/* Contact List */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,.4);
}

.footer-contact-list a {
  color: rgba(255,255,255,.52);
  transition: color .18s;
}
.footer-contact-list a:hover { color: #ffffff; }

/* ── Bottom Bar ── */
.footer-bottom {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px var(--pad-x);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,.32);
}

.footer-made-in {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.footer-made-in svg { color: #f59e0b; }

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
/* Payment methods strip image */
.footer-pay-img {
  height: 26px;
  width: auto;
  display: block;
  background: #ffffff;
  border-radius: 5px;
  padding: 2px 4px;
}

/* Secured label */
.footer-secured-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,.32);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-right: 4px;
}

/* Base card style */
.footer-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: background .18s ease;
}
.footer-pay-badge:hover { background: rgba(255,255,255,.1); }

/* UPI — purple/indigo */
.footer-pay-badge--upi  {
  color: #a78bfa;
  border-color: rgba(167,139,250,.25);
}
/* Visa — classic blue */
.footer-pay-badge--visa {
  color: #93c5fd;
  border-color: rgba(147,197,253,.25);
}
/* Mastercard */
.footer-pay-badge--mc   {
  color: #fca5a5;
  border-color: rgba(252,165,165,.2);
}
/* RuPay — green */
.footer-pay-badge--rupay {
  color: #6ee7b7;
  border-color: rgba(110,231,183,.2);
}
/* COD — amber */
.footer-pay-badge--cod  {
  color: #fcd34d;
  border-color: rgba(252,211,77,.2);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1.8fr 1.2fr 1fr 1.2fr;
  }
  .footer-col--contact { grid-column: 1 / -1; }
  .footer-col--contact .footer-contact-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
  }
}

@media (max-width: 900px) {
  .footer-trust-inner { flex-wrap: wrap; }
  .footer-trust-item  { flex: 0 0 calc(50% - 1px); }
  .footer-trust-sep   { display: none; }
  .footer-trust-item  { border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media (max-width: 768px) {
  .footer-newsletter  { padding: 32px 20px; }
  .footer-body        { padding: 52px 20px 44px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .footer-col--brand  { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-trust-item  { flex: 0 0 100%; }
  .footer-inner       { grid-template-columns: 1fr; }
  .footer-nl-form     { flex-direction: column; }
  .footer-nl-btn      { width: 100%; justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
}


/* ================================================================
   ANIMATED STATS STRIP
   ================================================================ */
.stats-strip {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 var(--pad-x);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 20px;
  text-align: center;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.38);
  letter-spacing: .4px;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  background: rgba(255,255,255,.07);
  margin: 20px 0;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item   { flex: 0 0 50%; padding: 22px 16px; }
  .stat-sep    { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2)  { border-bottom: 1px solid rgba(255,255,255,.07); }
}


/* ================================================================
   MARQUEE BRAND TICKER
   ================================================================ */
.brand-marquee {
  background: #fcf7ee;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}
.brand-marquee:hover .marquee-track { animation-play-state: paused; }

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  letter-spacing: .2px;
  padding: 0 28px;
}
.mq-item svg { color: var(--accent); flex-shrink: 0; }

.mq-sep {
  font-size: 10px;
  color: var(--accent);
  flex-shrink: 0;
}


/* ================================================================
   CUSTOMER REVIEWS SECTION
   ================================================================ */
.reviews-section {
  background: #fcf7ee;
  padding: 80px var(--pad-x) 88px;
}

.reviews-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.reviews-header {
  margin-bottom: 28px;
}

.reviews-accent {
  font-weight: 700;
  color: var(--accent);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Review Card ── */
.review-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .25s ease, transform .25s ease;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

.review-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f5a623;
  line-height: 1;
}

.review-text {
  font-size: 13.5px;
  color: rgba(0,0,0,.62);
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f5a623);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0a0a;
}

.review-meta {
  font-size: 11.5px;
  color: rgba(0,0,0,.4);
}

/* Responsive */
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-section { padding: 40px 14px 48px; }
  .reviews-grid    { grid-template-columns: 1fr; gap: 10px; }
  .review-card     { padding: 20px 18px; }
}


/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.whatsapp-btn:active { transform: scale(.96); }

/* Pulse ring animation */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 600px) {
  .whatsapp-btn { bottom: 18px; right: 16px; width: 50px; height: 50px; }
}


/* ================================================================
   ★  MOBILE COMPLETE REDESIGN  (≤ 600px)
   ================================================================ */
@media (max-width: 600px) {

  /* ── Global ── */
  html { overflow-x: hidden; }

  /* ── Ann bar ── */
  .ann-bar { height: 28px; font-size: 10.5px; }
  .ann-ticker-line .ann-dot:nth-of-type(n+2),
  .ann-ticker-line .ann-item:nth-of-type(n+3) { display: none; }

  /* ── Hero ── */
  #hero-section {
    min-height: 460px;
    height: calc(100svh - 28px);
    padding: var(--nav-h) 8px 8px;
  }
  .slide-headline {
    font-size: clamp(24px, 7vw, 32px);
    letter-spacing: -0.8px;
    line-height: 1.1;
  }
  .slide-text { gap: 12px; max-width: 100%; }
  .slide-desc { font-size: 13px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .slide-price { font-size: 14.5px; }
  .btn-primary { font-size: 13px; padding: 11px 20px; }
  .btn-ghost   { font-size: 13px; padding: 11px 20px; }
  /* hide arrows — swipe to navigate */
  .slider-arrow { display: none !important; }
  .slider-dots  { bottom: 12px; gap: 6px; }
  .slider-dot   { width: 6px; height: 6px; }
  .slider-dot--active { width: 18px; border-radius: 3px; }

  /* ── Products sections ── */
  .products-section { padding: 40px 14px 48px; }
  .section-header   { margin-bottom: 16px; }
  .section-heading  { font-size: 19px; letter-spacing: -0.2px; }
  .ps-btn           { width: 34px; height: 34px; }
  .products-track   { gap: 10px; }
  .products-track .product-card { flex: 0 0 calc((100% - 10px) / 2); }
  /* Card internals */
  .product-img-wrap { aspect-ratio: 1 / 1; }
  .product-info     { padding: 10px 10px 12px; gap: 6px; }
  .product-name     { font-size: 12.5px; line-height: 1.35; }
  .product-slogan   { font-size: 11px; -webkit-line-clamp: 1; }
  .product-rating   { font-size: 10.5px; gap: 4px; }
  .stars            { font-size: 11px; }
  .price-sale       { font-size: 13.5px; }
  .price-original   { font-size: 11px; }
  .price-off        { font-size: 10px; padding: 2px 5px; border-radius: 4px; }
  .product-cta      { font-size: 11.5px; padding: 9px 10px; }

  /* ── Secondary banner slider (ss-section) ── */
  .ss-section  { padding: 0; }
  .ss-slider   { border-radius: 0; }
  .ss-dots     { bottom: 10px; gap: 6px; }
  .ss-dot      { width: 6px; height: 6px; }
  .ss-dot--active { width: 16px; border-radius: 3px; }

  /* ── Banner image strip (tdv-section) ── */
  .tdv-section    { padding: 0; }
  .tdv-banner-img { border-radius: 0; }

  /* ── Instagram section ── */
  .insta-section { padding: 40px 0 48px; }
  .insta-wrap    { padding: 0 14px; }
  .insta-body    { flex-direction: column; gap: 20px; }
  .insta-left    { width: 100%; }
  .insta-right   { width: 100%; }
  .insta-header  { margin-bottom: 12px; }
  .insta-handle  { font-size: 15px; }
  .insta-tagline { display: none; }
  .insta-arr     { width: 32px; height: 32px; }
  /* Show 2 reels at a time */
  .insta-card    { flex: 0 0 calc((100% - 8px) / 2); border-radius: 12px; }
  .insta-reel-track { gap: 8px; }
  /* QR panel: horizontal row layout */
  .insta-qr-panel {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 14px;
    border-radius: 16px;
    flex-wrap: nowrap;
  }
  .insta-qr-ig-icon  { display: none; }
  .insta-qr-ring     { margin-bottom: 0; flex-shrink: 0; }
  .insta-qr-inner    { padding: 6px; border-radius: 10px; }
  .insta-qr-img      { width: 72px; height: 72px; }
  .insta-qr-scan-txt { display: none; }
  .insta-qr-divider  { display: none; }
  .insta-qr-handle   { font-size: 13.5px; margin-bottom: 4px; }
  .insta-qr-msg      { font-size: 11.5px; line-height: 1.55; margin-bottom: 10px; }
  .insta-follow-btn  { font-size: 12px; padding: 9px 16px; border-radius: 100px; }
  /* QR text group fills remaining space */
  .insta-qr-panel > *:not(.insta-qr-ring) { flex: 1 1 0; min-width: 0; }
  .insta-qr-panel > .insta-qr-ring        { flex: 0 0 auto; }

  /* ── Footer newsletter ── */
  .footer-newsletter { padding: 28px 14px; }
  .footer-nl-heading { font-size: 16px; margin-bottom: 2px; }
  .footer-nl-sub     { font-size: 12px; }
  .footer-nl-form    { flex-direction: column; gap: 10px; }
  .footer-nl-input   { border-radius: 12px; }
  .footer-nl-btn     { width: 100%; justify-content: center; border-radius: 12px; padding: 13px; }

  /* ── Footer trust strip ── */
  .footer-trust-inner { flex-wrap: wrap; }
  .footer-trust-item  { flex: 0 0 50%; padding: 18px 12px; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .footer-trust-sep   { display: none; }
  .footer-trust-num   { font-size: 16px; }
  .footer-trust-label { font-size: 10.5px; }

  /* ── Footer body ── */
  .footer-body  { padding: 36px 14px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-col--brand { grid-column: auto; }
  .footer-col-heading { margin-bottom: 10px; font-size: 10px; }
  .footer-col-link    { font-size: 13px; }
  .footer-logo-text   { font-size: 22px; }
  .footer-logo-int    { font-size: 20px; }
  .footer-desc        { font-size: 12.5px; }
  .footer-badges      { gap: 6px; flex-wrap: wrap; }
  .footer-badge       { font-size: 10.5px; padding: 4px 10px; }
  .footer-social-links { gap: 8px; }

  /* ── Footer contact ── */
  .footer-contact-list { gap: 10px; }
  .footer-contact-item { font-size: 12.5px; }

  /* ── Footer bottom ── */
  .footer-bottom       { padding: 14px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-copy         { font-size: 11px; }
  .footer-made         { font-size: 11px; }
  .footer-pay-badges   { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .footer-pay-badge    { font-size: 10px; padding: 3px 8px; }
}

/* ── Extra small (≤ 390px) ── */
@media (max-width: 390px) {
  .slide-headline { font-size: 22px; }
  .insta-card     { flex: 0 0 calc((100% - 8px) / 2); }
  .products-track .product-card { flex: 0 0 calc((100% - 10px) / 2); }
  .footer-trust-item { flex: 0 0 100%; }
  .ann-ticker-line   { font-size: 10px; }
}

/* ===== Navbar theme: dark/solid at very top, white once scrolled ===== */
#navbar.at-top {
  position: fixed;
  top: 0;
  background: var(--bg);
  box-shadow: none;
}
#navbar.at-top .logo img { filter: none; }

/* Hero slider progress-bar fill animation */
@keyframes hero-progress { from { width: 0%; } to { width: 100%; } }

/* Wishlist icon pulse when a product flies in */
@keyframes nav-pulse { 0% { transform: scale(1); } 35% { transform: scale(1.38); } 60% { transform: scale(.9); } 100% { transform: scale(1); } }
#navWishlist.nav-pulse { animation: nav-pulse .6s ease; }

/* ============================================================
   PRODUCT CARD — wishlist heart + interactive cart button
   ============================================================ */
.product-img-wrap { position: relative; }
.product-img-link { display: contents; }
.pc-wish { position: absolute; top: 10px; right: 10px; z-index: 4; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); border: 1px solid rgba(0,0,0,.06); color: #9a9a9a; display: grid; place-items: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.14); transition: transform .18s ease, color .18s ease; }
.pc-wish:hover { transform: scale(1.14); color: var(--accent); }
.pc-wish.is-active { color: var(--accent); }
button.product-cta { border: none; cursor: pointer; font: inherit; width: 100%; }
.nav-pulse { animation: nav-pulse .6s ease; }

/* Bottom footer — uniform muted-white text & icons (no pure white) */
.footer-bottom, .footer-bottom * { color: rgba(255,255,255,.52) !important; }

/* Footer-bottom icons also muted (override earlier white svg rules) */
.footer-bottom svg { color: rgba(255,255,255,.52) !important; }

/* Footer — mute the two remaining white texts (company "iota" + View All Products) */
.footer-logo-text { color: rgba(255,255,255,.52) !important; }
.footer-link--highlight, .footer-link--highlight:hover { color: rgba(255,255,255,.52) !important; }
