/* ===================================================
   SUPP4ELITE — Global Stylesheet
   Dark Premium Theme · Mobile-First
   =================================================== */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --surface-3: #222222;
  --border: #2a2a2a;
  --border-light: #333333;

  --accent: #5ab4e4;
  --accent-glow: rgba(90, 180, 228, 0.18);
  --accent-dark: #3a9fd4;
  --accent-text: #ffffff;

  --gold: #ffb800;
  --gold-dim: rgba(255, 184, 0, 0.15);
  --red: #ff4455;
  --success: #00d26a;

  --text: #ffffff;
  --text-muted: #888888;
  --text-subtle: #555555;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);

  --nav-h: 60px;
}

/* ---------- Typography ---------- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&display=swap");

.display {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.05;
}
h1,
h2,
h3 {
  font-family: "Bebas Neue", "Impact", sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.08;
}
h4,
h5,
h6 {
  font-weight: 700;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announce-bar {
  background: var(--accent);
  color: #000;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.announce-bar__track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.announce-bar__track:hover {
  animation-play-state: paused;
}
.announce-bar__segment {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.announce-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.announce-bar__dot {
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}
.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 80px;
}
.nav__right {
  justify-content: flex-end;
}

.nav__logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav__logo span {
  color: var(--accent);
}

.nav__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background var(--transition);
}
.nav__icon-btn:hover {
  background: var(--surface-2);
}
.nav__icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav__cart-btn {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  transition: transform var(--transition);
}
.cart-badge.bump {
  animation: badge-bump 0.3s ease;
}
@keyframes badge-bump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu__drawer {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  background: var(--surface);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.mobile-menu.open {
  pointer-events: all;
}
.mobile-menu.open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu.open .mobile-menu__drawer {
  transform: translateX(0);
}
.mobile-menu__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.mobile-menu__close:hover {
  color: var(--text);
}
.mobile-menu__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  letter-spacing: 0.02em;
}
.mobile-menu__nav a:hover {
  background: var(--surface-2);
  color: var(--accent);
}
.mobile-menu__logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.mobile-menu__logo span {
  color: var(--accent);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  display: flex;
  flex-direction: column;
  height: calc(100svh - var(--nav-h) - 38px);
  min-height: 520px;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.hero__image-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0) 50%,
    rgba(8, 8, 8, 0.6) 80%,
    rgba(8, 8, 8, 1) 100%
  );
}
.hero__content {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px 28px;
  gap: 12px;
  background: var(--bg);
  z-index: 1;
}
.hero__badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.hero__title {
  font-size: clamp(38px, 10.5vw, 96px);
  color: var(--text);
  max-width: 400px;
  line-height: 1.05;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__sub {
  display: none;
}
.hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.stars-icon {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.hero__stars strong {
  color: var(--text);
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 300px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  width: 100%;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(90, 180, 228, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}
.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--surface-2);
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar {
  display: none;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: max-content;
  padding: 0 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  white-space: nowrap;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
  color: var(--accent);
  flex-shrink: 0;
}
.trust-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.trust-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.trust-item__sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(30px, 8vw, 52px);
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   PRODUCTS GRID — BEST SELLERS
   ===================================================== */
.products-section {
  padding: 64px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* ════════════════════════════════════════════════════
   PRODUCT CARD — High-Converting Redesign
   Cleaner hierarchy · stronger trust signals · clearer CTA
   ════════════════════════════════════════════════════ */

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(
      circle at top right,
      rgba(90, 180, 228, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(90, 180, 228, 0.7);
  box-shadow:
    0 0 0 1px rgba(90, 180, 228, 0.35),
    0 18px 44px rgba(0, 0, 0, 0.46),
    0 24px 64px rgba(90, 180, 228, 0.12);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    transparent 24%
  );
  pointer-events: none;
  z-index: 1;
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.05),
      transparent 60%
    ),
    #0d0d0d;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

.product-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.92) 0%,
    rgba(8, 8, 8, 0.08) 42%,
    rgba(8, 8, 8, 0) 72%
  );
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(90, 180, 228, 0.28);
}

.product-card__badge.gold {
  background: var(--gold);
  color: #111;
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.22);
}

.product-card__badge.red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 68, 85, 0.22);
}

.product-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 0;
}

.product-card__overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card__eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 22px;
  padding: 0 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__headline,
.product-card__proof {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.product-card__headline {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 80%;
}

.product-card__proof {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: var(--radius-full);
  background: rgba(90, 180, 228, 0.12);
  border: 1px solid rgba(90, 180, 228, 0.22);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__benefit {
  font-size: 13px;
  line-height: 1.6;
  color: #d0d0d0;
}

.product-card__benefits {
  display: grid;
  gap: 7px;
  margin-top: 2px;
}

.product-card__benefits li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #d0d0d0;
}

.product-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.12);
}

.product-card__trust,
.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__trust span,
.product-card__meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c4c4c4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card__actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-card__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 36px);
  min-height: 42px;
  margin: 0 18px 18px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7d7d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.product-card__secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(90, 180, 228, 0.32);
  color: #fff;
  transform: translateY(-1px);
}

.product-card__name {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text);
}

.product-card__flavor {
  font-size: 12px;
  line-height: 1.5;
  color: #b9b9b9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c7c7c7;
}

.product-card__stars .stars-icon {
  font-size: 12px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-shadow: 0 0 12px rgba(255, 184, 0, 0.18);
}

.product-card__pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  padding-top: 2px;
}

.product-card__price {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.product-card__compare {
  font-size: 13px;
  color: #8d8d8d;
  text-decoration: line-through;
}

.product-card__discount {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: var(--radius-full);
  background: rgba(0, 210, 106, 0.12);
  border: 1px solid rgba(0, 210, 106, 0.28);
  color: var(--success);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 36px);
  margin: 16px 18px 18px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #071018;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(90, 180, 228, 0.9);
  box-shadow:
    0 10px 24px rgba(90, 180, 228, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.product-card__cta:hover,
.product-card:hover .product-card__cta {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 14px 28px rgba(90, 180, 228, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.product-card__cta:active {
  transform: translateY(0);
}

.product-card__cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .product-card {
    border-radius: 18px;
  }

  .product-card__overlay {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .product-card__headline {
    font-size: 16px;
    max-width: 88%;
  }

  .product-card__topline {
    gap: 10px;
  }

  .product-card__body {
    padding: 16px 16px 0;
    gap: 8px;
  }

  .product-card__name {
    font-size: 16px;
  }

  .product-card__price {
    font-size: 24px;
  }

  .product-card__cta {
    width: calc(100% - 32px);
    margin: 14px 16px 10px;
    min-height: 48px;
    border-radius: 12px;
  }

  .product-card__secondary {
    width: calc(100% - 32px);
    min-height: 40px;
    margin: 0 16px 16px;
  }
}

/* =====================================================
   BENEFITS / WHY US
   ===================================================== */
.benefits-section {
  padding: 64px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.benefit-card:hover {
  border-color: var(--accent);
}
.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  border: 1px solid rgba(90, 180, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.benefit-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.benefit-card__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================
   BUNDLE DEAL SECTION
   ===================================================== */
.bundle-section {
  padding: 64px 0;
}
.bundle-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.bundle-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
  position: relative;
}
.bundle-card.popular {
  border-color: var(--accent);
  background: var(--surface-2);
}
.bundle-card__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.bundle-card.popular .bundle-card__radio {
  border-color: var(--accent);
  background: var(--accent);
}
.bundle-card.popular .bundle-card__radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}
.bundle-card__label-wrap {
  flex: 1;
}
.bundle-card__qty {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.bundle-card__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.bundle-card__pricing {
  text-align: right;
}
.bundle-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.bundle-card__compare {
  font-size: 12px;
  color: var(--text-subtle);
  text-decoration: line-through;
}
.bundle-card__popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.bundle-cta-wrap {
  max-width: 480px;
  margin: 20px auto 0;
}

/* =====================================================
   TICKER / SOCIAL PROOF SCROLL
   ===================================================== */
.ticker-section {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.ticker__track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover {
  animation-play-state: paused;
}
.ticker__segment {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.ticker__item .stars-icon {
  font-size: 12px;
}
.ticker__item strong {
  color: var(--text);
}
.ticker__sep {
  color: var(--border-light);
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-section {
  padding: 64px 0;
}
.reviews-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  text-align: center;
}
.reviews-score {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--text);
}
.reviews-stars {
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 4px;
}
.reviews-count {
  font-size: 14px;
  color: var(--text-muted);
}
.reviews-bars {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.review-bar__label {
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}
.review-bar__track {
  flex: 1;
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.review-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: var(--radius-full);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-bar__count {
  width: 16px;
  text-align: left;
  flex-shrink: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
@media (min-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.review-card__meta {
  flex: 1;
}
.review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.review-card__date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.review-card__product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-subtle);
  background: var(--surface-2);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.review-card__verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
}

/* =====================================================
   EMAIL CAPTURE
   ===================================================== */
.email-section {
  padding: 64px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.email-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.email-inner .section-title {
  margin-bottom: 10px;
}
.email-inner p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .email-form {
    flex-direction: row;
  }
}
.email-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.email-input::placeholder {
  color: var(--text-subtle);
}
.email-input:focus {
  border-color: var(--accent);
}
.email-form .btn-primary {
  flex-shrink: 0;
  width: auto;
  padding: 14px 24px;
}
.email-disclaimer {
  font-size: 11px;
  color: var(--text-subtle);
  margin-top: 14px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.footer__brand-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer__brand-logo span {
  color: var(--accent);
}
.footer__brand-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer__socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}
.footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: 12px;
  color: var(--text-subtle);
}
.footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__payment-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100vw, 400px);
  background: var(--surface);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-size: 16px;
  font-weight: 700;
}
.cart-drawer__count {
  font-size: 13px;
  color: var(--text-muted);
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition:
    color var(--transition),
    background var(--transition);
}
.cart-drawer__close:hover {
  color: var(--text);
  background: var(--surface-2);
}
.cart-drawer__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}
.cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-drawer__body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
}
.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--border-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-empty p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.cart-empty small {
  font-size: 13px;
  color: var(--text-subtle);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cart-item__image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0f0f0f;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-item__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}
.cart-item__variant {
  font-size: 11px;
  color: var(--text-muted);
}
.cart-item__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  margin-top: auto;
}
.cart-item__qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  transition:
    color var(--transition),
    background var(--transition);
}
.qty-btn:hover {
  color: var(--text);
  background: var(--surface-3);
}
.qty-display {
  width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.cart-item__remove {
  font-size: 11px;
  color: var(--text-subtle);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cart-item__remove:hover {
  color: var(--red);
}

.cart-drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.cart-summary-row span {
  color: var(--text-muted);
}
.cart-summary-row strong {
  font-weight: 600;
  color: var(--text);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.cart-total-row span {
  font-weight: 700;
  color: var(--text);
}
.cart-total-row strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}
.cart-free-shipping {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--success);
  background: rgba(0, 210, 106, 0.1);
  border: 1px solid rgba(0, 210, 106, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.cart-free-shipping svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* =====================================================
   PRODUCT PAGE
   ===================================================== */
.product-page {
  padding-bottom: 80px;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050508;
  max-height: 100vw;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.product-details {
  padding: 28px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-name {
  font-size: clamp(26px, 7vw, 40px);
  margin-bottom: 6px;
}
.product-flavor {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-rating-row .stars-icon {
  font-size: 15px;
  color: var(--gold);
}
.product-rating-row span {
  font-size: 13px;
  color: var(--text-muted);
}
.product-rating-row strong {
  color: var(--text);
}

/* Countdown */
.countdown-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-block {
  text-align: center;
}
.countdown-num {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.countdown-unit {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.countdown-sep {
  font-size: 18px;
  font-weight: 800;
  color: var(--border-light);
  margin-bottom: 8px;
}

/* Bundle Options */
.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.bundle-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition);
  position: relative;
}
.bundle-option.selected {
  border-color: var(--accent);
  background: var(--surface-2);
}
.bundle-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.bundle-option.selected .bundle-option__radio {
  border-color: var(--accent);
  background: var(--accent);
}
.bundle-option.selected .bundle-option__radio::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #000;
  border-radius: 50%;
}
.bundle-option__text {
  flex: 1;
}
.bundle-option__qty {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.bundle-option__desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.bundle-option__prices {
  text-align: right;
}
.bundle-option__price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.bundle-option__orig {
  font-size: 11px;
  color: var(--text-subtle);
  text-decoration: line-through;
}
.bundle-option__popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.bundle-option__save {
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Product CTA */
.product-cta-wrap {
  margin-bottom: 24px;
}
.btn-addcart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-addcart:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(90, 180, 228, 0.35);
}
.btn-addcart:active {
  transform: translateY(0);
}
.btn-addcart.loading {
  opacity: 0.7;
  pointer-events: none;
}
.btn-addcart svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.product-guarantee svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--success);
}

/* Product perks strip */
.product-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.perk-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* Product description */
.product-description {
  margin-bottom: 28px;
}
.product-description__heading {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text);
}
.product-description p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.product-description strong {
  color: var(--text);
}

/* Ingredients highlights */
.ingredient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ingredient-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.ingredient-pill span {
  color: var(--accent);
  font-weight: 800;
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 28px;
}
.faq-section__title {
  font-size: 22px;
  margin-bottom: 14px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-trigger:hover {
  color: var(--accent);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.faq-icon::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}
.faq-icon::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}
.faq-item.open .faq-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

/* Stock indicator */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-stock 2.5s ease infinite;
}
@keyframes pulse-stock {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.4);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(0, 210, 106, 0);
  }
}
.stock-indicator strong {
  color: var(--text);
}

/* Sticky Add to Cart (mobile) */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-atc.visible {
  transform: translateY(0);
}
.sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-atc__info {
  flex: 1;
}
.sticky-atc__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.sticky-atc__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
}
.sticky-atc .btn-addcart {
  width: auto;
  padding: 13px 20px;
  font-size: 13px;
}

/* =====================================================
   UTILITY / ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* =====================================================
   RESPONSIVE — DESKTOP ENHANCEMENTS
   ===================================================== */
@media (min-width: 768px) {
  :root {
    --nav-h: 68px;
  }
  .hero {
    position: relative;
    display: block;
    height: calc(100svh - var(--nav-h) - 38px);
    min-height: 600px;
  }
  .hero__image-wrap {
    position: absolute;
    inset: 0;
    flex: unset;
    min-height: unset;
    overflow: hidden;
  }
  .hero__image-wrap img {
    object-position: center 55%;
  }
  .hero__image-overlay {
    background:
      linear-gradient(
        to right,
        rgba(7, 10, 14, 0.98) 0%,
        rgba(7, 10, 14, 0.78) 40%,
        rgba(7, 10, 14, 0.15) 72%,
        rgba(7, 10, 14, 0.3) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(7, 10, 14, 0.25) 0%,
        rgba(7, 10, 14, 0) 20%,
        rgba(7, 10, 14, 0) 80%,
        rgba(7, 10, 14, 0.25) 100%
      );
  }
  .hero__content {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 52%;
    text-align: left;
    align-items: flex-start;
    padding: 0 52px;
    background: transparent;
    flex-shrink: unset;
    gap: 18px;
  }
  .hero__sub {
    display: block;
    font-size: 15px;
  }
  .hero__cta-group {
    flex-direction: row;
  }
  .btn-primary,
  .btn-secondary {
    width: auto;
  }

  .product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
  }
  .product-img-wrap {
    max-height: none;
    aspect-ratio: auto;
    height: 100%;
    min-height: 500px;
    position: sticky;
    top: var(--nav-h);
  }
  .product-details {
    padding: 40px 36px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
