/** Shopify CDN: Minification failed

Line 22:0 All "@import" rules must come first

**/
/* ============================================
   AVATEAL — Dark Navy × Teal Design System
   Inspired by Grüns: bold shadows, press effects
   ============================================ */

* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input[readonly] {
  cursor: default;
  caret-color: transparent;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --bg:          #06111E;
  --surface:     #0C1D2E;
  --surface-2:   #122638;
  --surface-3:   #1A3048;
  --teal:        #00B4A0;
  --teal-dark:   #008F7E;
  --teal-glow:   rgba(0,180,160,0.12);
  --white:       #FFFFFF;
  --text:        #FFFFFF;
  --text-muted:  #7A9BB5;
  --text-dim:    #4A6A85;
  --border:      #1E3A52;
  --border-2:    #264860;
  --shadow:      #000000;
  --star:        #00A4B4;
  --danger:      #EF4444;
  --success:     #22C55E;

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-card:  4px 4px 0 rgba(0,0,0,0.6);
  --shadow-hover: 6px 6px 0 rgba(0,0,0,0.6);
  --shadow-btn:   4px 4px 0 #000;
  --shadow-pressed: 1px 1px 0 #000;

  --max-w: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
}

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

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2.5px solid #000;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translate(3px, 3px);
  box-shadow: var(--shadow-pressed);
}
.btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2.5px solid var(--border-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2.5px solid var(--teal);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 var(--teal-dark);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s;
}
.btn-teal-outline:hover {
  background: var(--teal-glow);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--teal-dark);
}

/* ── TAGS / BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.badge--teal { background: var(--teal-glow); color: var(--teal); border: 1px solid rgba(0,180,160,0.3); }
.badge--white { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }

/* ── STARS ── */
.stars {
  display: flex;
  gap: 2px;
  color: var(--star);
  font-size: 1rem;
}

/* ── SECTION SPACING ── */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--sm { padding: clamp(32px, 5vw, 60px) 0; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  letter-spacing: 0.01em;
}
.announcement-bar .sep { opacity: 0.4; }
.announcement-bar--mobile { display: none; }
@media (max-width: 768px) {
  .announcement-bar--desktop { display: none; }
  .announcement-bar--mobile { display: flex; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg, rgba(6, 17, 30, 0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.site-logo span { color: var(--teal); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--white); background: var(--surface-2); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.header-icon-btn:hover { color: var(--white); background: var(--surface-2); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--teal);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.mobile-menu-btn { display: none; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px var(--gutter);
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--white); background: var(--surface-2); }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 80px) 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(0,180,160,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,100,200,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 600px; }
.hero-reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-avatars {
  display: flex;
}
.hero-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  margin-left: -8px;
  font-family: var(--font-heading);
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-review-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-review-text strong { color: var(--white); }
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero-stat {
  text-align: center;
}
.hero-stat__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  white-space: nowrap;
}
.hero-stat__num span { color: var(--teal); }
.hero-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.3;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hero-img-placeholder {
  width: 320px;
  height: 380px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-dim);
  font-family: var(--font-heading);
}
.hero-float-badge {
  position: absolute;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
.hero-float-badge--1 { top: 10%; right: -5%; }
.hero-float-badge--2 { bottom: 15%; left: -8%; }
.hero-float-badge .val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal);
}
.hero-float-badge .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

/* Mobile marquee */
.trust-bar-mobile { display: none; }
@keyframes trust-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .trust-bar { padding: 14px 0; }
  .trust-bar-desktop { display: none; }
  .trust-bar-mobile {
    display: block;
    overflow: hidden;
  }
  .trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: trust-marquee 18s linear infinite;
  }
  .trust-marquee-track .trust-item { font-size: 0.8rem; gap: 7px; }
  .trust-bar-mobile:hover .trust-marquee-track { animation-play-state: paused; }
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.product-card__img {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.product-card__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  background: #fff;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.85rem;
}
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: var(--font-heading);
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card__rating-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.product-card__price del {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-right: 4px;
}
.product-card__foot {
  padding: 0 18px 18px;
  display: flex;
  gap: 8px;
}
.product-card__foot .btn-primary { flex: 1; justify-content: center; }

/* ── FEATURED PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head-left { display: flex; flex-direction: column; gap: 8px; }
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-glow);
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(var(--col-count, 4), 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
}
.benefit-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal-glow);
  border: 2px solid rgba(0,180,160,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.benefit-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* ── FEATURED PRODUCT ── */
.featured-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-product-img {
  position: relative;
}
.featured-product-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
  background: #fff;
}
.featured-product-img-placeholder {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-heading);
}
.featured-product-content { display: flex; flex-direction: column; gap: 20px; }
.featured-product-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
}
.featured-product-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.featured-product-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.featured-product-price del {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-right: 8px;
}
.macro-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.macro-pill {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.macro-pill .val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
}
.macro-pill .lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}
.variant-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.variant-btn:hover, .variant-btn.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-glow);
}

/* ── TESTIMONIALS CAROUSEL ── */
.testimonials-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.testimonials-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonials-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

/* Desktop: switch to normal 3-column grid */
@media (min-width: 769px) {
  .testimonials-carousel { max-width: 100%; }
  .testimonials-track-wrap { overflow: visible; border-radius: 0; }
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
  .testimonial-card { flex: unset; width: auto; }
  .carousel-nav { display: none; }
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border-2);
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.carousel-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translate(-1px,-1px);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.carousel-btn:active {
  transform: translate(2px,2px);
  box-shadow: 1px 1px 0 rgba(0,0,0,0.4);
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--border-2);
  border: none;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}
.carousel-dot.active {
  width: 28px;
  background: var(--teal);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.testimonial-text::before { content: '"'; color: var(--teal); font-size: 1.5rem; font-family: var(--font-heading); font-weight: 800; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── SHOP BY GOAL ── */
.goal-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.goal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  min-width: 110px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s, background 0.2s;
  box-shadow: var(--shadow-card);
  color: var(--text-muted);
  font-family: var(--font-heading);
}
.goal-card:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.goal-card.active {
  background: var(--teal-glow);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 4px 4px 0 rgba(0,180,160,0.3);
}
.goal-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.goal-card__title {
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}
.sbg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.sbg-product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sbg-product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hover);
}
.sbg-product-img {
  overflow: hidden;
  background: #fff;
}
.sbg-product-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  background: #fff;
  transition: transform 0.3s ease;
}
.sbg-product-card:hover .sbg-product-img img {
  transform: scale(1.04);
}
.sbg-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
}
.sbg-product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sbg-product-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sbg-product-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
}
.sbg-product-price {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sbg-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sbg-empty svg { opacity: 0.4; }
@media (max-width: 768px) {
  .goal-cards { gap: 8px; }
  .goal-card { padding: 14px 16px; min-width: 90px; }
  .goal-card__title { font-size: 0.75rem; }
  .sbg-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .sbg-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.newsletter-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
}
.newsletter-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 480px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-success {
  display: none;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

/* ── CART DRAWER ── */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 520px;
  max-width: 100vw;
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.cart-drawer-count { font-weight: 500; font-size: 1.2rem; }
.cart-drawer-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.cart-drawer-close:hover { color: var(--teal); }
.cart-drawer-timer-bar {
  background: var(--teal);
  color: var(--bg);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}
.cart-drawer-empty {
  color: var(--text-muted);
  text-align: center;
  margin-top: 60px;
  font-size: 0.95rem;
}
.cart-drawer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--surface-2);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.cart-drawer-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.cart-drawer-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.cart-drawer-item-remove:hover { color: #ef4444; }
.cart-drawer-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.cart-drawer-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.cart-drawer-qty-row {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.drawer-qty-btn {
  width: 34px;
  height: 32px;
  background: var(--surface-2);
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-qty-btn:hover { color: var(--teal); background: var(--teal-glow); }
.drawer-qty-num {
  width: 36px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 32px;
}
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.cart-drawer-checkout {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
  text-decoration: none;
}
.cart-drawer-payments {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-drawer-payments li { display: flex; }
.payment-icon {
  width: 38px;
  height: 24px;
  border-radius: 4px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover { color: var(--teal); border-color: var(--teal); background: var(--teal-glow); }

/* ── CART PAGE ── */
.cart-page { padding: clamp(40px,6vw,80px) 0; }
.cart-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 40px;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex;
  gap: 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}
.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.cart-item-variant { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 12px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  width: fit-content;
  overflow: hidden;
}
.cart-item-qty button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--surface-2);
  transition: color 0.2s, background 0.2s;
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-item-qty button:hover { color: var(--white); background: var(--surface-3); }
.cart-item-qty input {
  width: 48px;
  height: 36px;
  text-align: center;
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  outline: none;
}
.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  align-self: center;
  white-space: nowrap;
}
.cart-remove {
  color: var(--text-dim);
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--danger); }
.cart-summary {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 80px;
}
.cart-summary-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row.total {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: none;
  padding-top: 16px;
}
.cart-summary-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cart-summary-actions .btn-primary,
.cart-summary-actions .btn-ghost { width: 100%; justify-content: center; }
.cart-empty {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cart-empty svg { color: var(--text-dim); }
.cart-empty h2 { font-size: 1.5rem; font-weight: 700; }
.cart-empty p { color: var(--text-muted); }

/* ── PRODUCT PAGE ── */
.product-page { padding: clamp(32px,5vw,64px) 0; }
.product-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery {}
.product-main-img {
  aspect-ratio: 1;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb.active { border-color: var(--teal); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info .product-cat { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-family: var(--font-heading); }
.product-info .product-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; }
.product-info .product-rating { display: flex; align-items: center; gap: 8px; }
.product-info .product-rating-count { font-size: 0.85rem; color: var(--text-muted); }
.product-info .product-price { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; }
.product-info .product-price del { font-size: 1.2rem; font-weight: 400; color: var(--text-dim); margin-right: 8px; }
.product-info .product-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; }
.qty-wrap { display: flex; align-items: center; gap: 16px; }
.qty-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  overflow: hidden;
}
.qty-input-wrap button {
  width: 40px; height: 44px;
  background: var(--surface-2);
  color: var(--qty-text, var(--text-muted));
  font-size: 1.2rem;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}
.qty-input-wrap button:hover { color: var(--white); background: var(--surface-3); }
.qty-input-wrap input {
  width: 56px; height: 44px;
  text-align: center;
  background: none;
  border: none;
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  color: var(--qty-text, var(--white));
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  padding: 0;
  line-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-appearance: textfield;
}
.qty-input-wrap input::-webkit-inner-spin-button,
.qty-input-wrap input::-webkit-outer-spin-button { -webkit-appearance: none; }
.product-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.product-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.product-trust-item svg { color: var(--teal); }

/* ── COLLECTION PAGE ── */
.collection-page { padding: clamp(32px,5vw,64px) 0; }
.collection-header { margin-bottom: 40px; }
.collection-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; }

/* ── SINGLE PRODUCT COLLECTION PAGE ── */
.single-product-page { padding: clamp(40px,6vw,80px) 0; }
.single-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.single-product-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  background: #fff;
}
.single-product-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.single-product-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.single-product-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.product-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bullet-text, var(--white));
  line-height: 1.4;
}
.product-bullets li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b4a0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── PRODUCT ACCORDION ── */
.product-accordion {
  border-top: 1px solid var(--border);
  margin-bottom: 4px;
}
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--accordion-text, var(--white));
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.accordion-trigger:hover {
  color: var(--teal);
}
.accordion-icon {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body p {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.single-product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.variant-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
}
.variant-btn:hover { border-color: var(--teal); color: var(--teal); }
.variant-btn.active { border-color: var(--teal); background: var(--teal-glow); color: var(--teal); }
.variant-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-control {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}
.qty-btn {
  width: 44px;
  height: 48px;
  background: none;
  border: none;
  color: var(--qty-text, var(--text-muted));
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  color: var(--teal);
  background: var(--teal-glow);
}
.qty-input {
  width: 52px;
  height: 48px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--qty-text, var(--white));
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.single-product-qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.single-product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  background: #fff;
  border: 2px solid var(--border);
}
@media (max-width: 768px) {
  .single-product-inner { grid-template-columns: 1fr; gap: 28px; }
  .single-product-details { position: static; }
  .single-product-qty-row { flex-direction: column; }
  .single-product-qty-row .btn-primary { width: 100%; justify-content: center; }
}
.collection-desc { color: var(--text-muted); margin-top: 8px; }

/* ── GENERAL PAGES ── */
.page-content { padding: clamp(40px,6vw,80px) 0; max-width: 720px; margin: 0 auto; }
.page-content h1 { font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 24px; }
.page-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* ── AUTH PAGES ── */
.auth-page { padding: clamp(40px,6vw,80px) 0; display: flex; justify-content: center; }
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.auth-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.auth-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-field input {
  padding: 13px 16px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus { border-color: var(--teal); }
.form-field input::placeholder { color: var(--text-dim); }
.form-divider { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin: 16px 0; position: relative; }
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.form-divider span { background: var(--surface); padding: 0 12px; position: relative; }
.auth-link { color: var(--teal); font-weight: 600; transition: opacity 0.2s; }
.auth-link:hover { opacity: 0.8; }

/* ── 404 ── */
.error-page { padding: 80px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.error-page .error-code { font-size: 6rem; font-weight: 800; color: var(--teal); font-family: var(--font-heading); line-height: 1; }
.error-page h1 { font-size: 2rem; }
.error-page p { color: var(--text-muted); max-width: 400px; }

/* ── FLOATING ANIMATION ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes float-badge-1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes float-badge-2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow behind image */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 60%;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--teal) 0%, transparent 70%);
  opacity: 0.35;
  filter: blur(40px);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-img-wrap img {
  position: relative;
  z-index: 1;
  animation: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0px 40px 40px rgba(0,0,0,0.55)) drop-shadow(0px 8px 16px rgba(0,180,160,0.15));
}

.hero-img-placeholder {
  position: relative;
  z-index: 1;
  border: 2px dashed var(--border) !important;
  box-shadow: none !important;
  filter: none;
}

.hero-float-badge {
  z-index: 2;
}
.hero-float-badge--1 {
  animation: none;
}
.hero-float-badge--2 {
  animation: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  /* ── Header ── */
  .site-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-inner { height: 60px; }

  /* ── Hero ── */
  .hero { min-height: unset; padding: 32px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero-visual { order: -1; width: 100%; }
  .hero-img-wrap { padding: 12px 20px; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-img-wrap img { width: 100%; height: auto; max-width: 280px; }
  .hero-img-placeholder { width: 240px; height: 280px; }
  .hero-ctas { justify-content: center; flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-stat { text-align: center !important; }
  .hero-reviews { justify-content: center; }
  .hero-title { font-size: 2.2rem; }
  .hero-sub { max-width: 100%; font-size: 0.95rem; }
  .hero-float-badge { padding: 8px 12px; }
  .hero-float-badge .val { font-size: 0.95rem; }
  .hero-float-badge .lbl { font-size: 0.62rem; }
  .hero-float-badge--1 { top: 0; right: 0; }
  .hero-float-badge--2 { bottom: 0; left: 0; }

  /* ── Trust bar ── */
  .trust-item { font-size: 0.8rem; }

  /* ── Sections ── */
  .section { padding: 40px 0; }
  .section--sm { padding: 24px 0; }
  .section-title { font-size: 1.75rem; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── Products grid ── */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card__body { padding: 12px; }
  .product-card__foot { padding: 0 12px 12px; }
  .product-card__title { font-size: 0.9rem; }
  .product-card__price { font-size: 1rem; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { flex-shrink: 0; }

  /* ── Benefits ── */
  .benefits-grid { grid-template-columns: repeat(var(--col-count-mobile, 2), 1fr); gap: 10px; }
  .benefit-card { padding: 12px 14px !important; gap: 10px; }
  .benefit-icon { width: 36px; height: 36px; }
  .benefit-icon svg { width: 18px; height: 18px; }
  .benefit-title { font-size: 0.85rem; }

  /* ── Featured product ── */
  .featured-product-inner { grid-template-columns: 1fr; gap: 28px; }
  .featured-product-title { font-size: 1.6rem; }
  .macro-pills { justify-content: center; }
  .product-trust { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .product-trust-item { font-size: 0.72rem; gap: 4px; white-space: nowrap; flex-shrink: 0; }
  .product-trust-item svg { width: 12px; height: 12px; flex-shrink: 0; }
  .featured-product-img { max-width: 420px; margin: 0 auto; width: 100%; }
  .featured-product-img img { width: 100%; height: auto; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 24px; }

  /* ── Newsletter ── */
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input, .newsletter-form .btn-primary { width: 100%; }
  .newsletter-title { font-size: 1.5rem; }

  /* ── Cart ── */
  .cart-grid { grid-template-columns: 1fr; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-img { width: 80px; height: 80px; }
  .cart-summary { position: static; }

  /* ── Product page ── */
  .product-page-inner { grid-template-columns: 1fr; gap: 28px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* ── Auth ── */
  .auth-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  /* ── Hero ── */
  .hero-title { font-size: 1.6rem; }
  .hero-sub { font-size: 0.85rem; line-height: 1.6; }
  .hero-stat__num { font-size: 1.1rem; white-space: normal; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat { flex: 0 0 auto; }

  /* ── Products ── */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card__title { font-size: 0.82rem; }
  .product-card__price { font-size: 0.95rem; }
  .product-card__body { padding: 10px; gap: 5px; }
  .product-card__foot { padding: 0 10px 10px; }
  .btn-primary { padding: 11px 18px; font-size: 0.88rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand-desc { max-width: 100%; }

  /* ── Buttons full width in hero ── */
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { font-size: 0.95rem; padding: 13px 20px; }

  /* ── Section spacing ── */
  .section { padding: 32px 0; }
  .section-title { font-size: 1.5rem; }
  .benefits-grid { grid-template-columns: repeat(var(--col-count-mobile, 1), 1fr); gap: 10px; }
  .testimonial-card { padding: 20px; }
}

@media (max-width: 540px) {
  /* ── Global mobile overflow guard ── */
  .section, .container, .hero-inner, .hero-visual, .hero-img-wrap,
  .featured-product-inner, .product-page-inner, .footer-inner,
  .testimonials-carousel, .benefits-grid, .newsletter-inner {
    max-width: 100%;
    box-sizing: border-box;
  }
  img, video, iframe, svg { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
