/* ========== FONT FACES ========== */
@font-face {
  font-family: 'ABC ROM Compressed';
  src: url('fonts/ABCROMCompressed-Bold.woff2') format('woff2'),
       url('fonts/ABCROMCompressed-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Text';
  src: url('fonts/HelveticaNowText-Regular.woff2') format('woff2'),
       url('fonts/HelveticaNowText-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Now Text';
  src: url('fonts/HelveticaNowText-Bold.woff2') format('woff2'),
       url('fonts/HelveticaNowText-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --font-display: 'ABC ROM Compressed', 'Impact', 'Arial Black', sans-serif;
  --font-body: 'Helvetica Now Text', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-height: 72px;
  --container-max: 1440px;
  --container-padding: clamp(20px, 5vw, 80px);
}

/* ========== RESET & BASE ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; -webkit-appearance: none; appearance: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 0.95; text-transform: uppercase; }
::selection { background: var(--black); color: var(--white); }

/* ========== LOADER ========== */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader img {
  width: 80px; height: 80px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
#loader .loader-bar {
  width: 120px; height: 2px; background: var(--gray-800);
  margin-top: 32px; border-radius: 1px; overflow: hidden;
}
#loader .loader-bar-fill {
  width: 0%; height: 100%; background: var(--white);
  animation: loaderFill 1.8s var(--ease-out-expo) forwards;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--container-padding);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gray-200);
}
.nav--scrolled .nav__logo-img { filter: none !important; }
.nav--scrolled .nav__link { color: var(--black) !important; }
.nav--scrolled .nav__lang-select { color: var(--black) !important; border-color: rgba(0,0,0,0.2) !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E") !important; }
.nav--scrolled .nav__cart-btn svg { stroke: var(--black) !important; }
.nav--scrolled .nav__cart-count { background: var(--black) !important; color: var(--white) !important; }
.nav--scrolled .nav__hamburger span { background: var(--black) !important; }

.nav--dark .nav__logo-img { filter: brightness(0) invert(1); }
.nav--dark .nav__link { color: var(--white); }
.nav--dark .nav__lang-select { color: var(--white); border-color: rgba(255,255,255,0.3); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23fff'/%3E%3C/svg%3E"); }
.nav--dark .nav__cart-btn svg { stroke: var(--white); }
.nav--dark .nav__cart-count { background: var(--white); color: var(--black); }
.nav--dark .nav__hamburger span { background: var(--white); }

.nav__logo { display: flex; align-items: center; z-index: 2; }
.nav__logo-img { height: 28px; width: auto; transition: filter 0.3s; }
.nav__links {
  display: flex; gap: 32px; align-items: center;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__link {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); transition: opacity 0.3s;
}
.nav__link:hover { opacity: 0.6; }
.nav__right { display: flex; align-items: center; gap: 20px; z-index: 2; }
.nav__lang-select {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 4px 8px 4px 4px;
  color: var(--black); background: transparent; border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 4px; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 6px center; padding-right: 22px;
  transition: border-color 0.3s, color 0.3s;
}
.nav__lang-select:hover { border-color: rgba(0,0,0,0.5); }
.nav__lang-select option { background: var(--white); color: var(--black); }
.nav__cart-btn {
  position: relative; padding: 8px;
  transition: transform 0.3s var(--ease-spring);
}
.nav__cart-btn:hover { transform: scale(1.1); }
.nav__cart-btn svg { width: 22px; height: 22px; stroke: var(--black); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.nav__cart-count {
  position: absolute; top: 2px; right: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--black); color: var(--white);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s, color 0.3s;
  transform: scale(0);
}
.nav__cart-count.show { transform: scale(1); }

/* Hamburger */
.nav__hamburger {
  display: none; width: 28px; height: 20px;
  flex-direction: column; justify-content: space-between;
  padding: 0; z-index: 2;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--black); transition: all 0.3s var(--ease-out-expo);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Nav */
.nav__mobile {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}
.nav__mobile.open { opacity: 1; visibility: visible; }
body.mobile-nav-open .cookie,
body.mobile-nav-open #chatbase-bubble-button,
body.mobile-nav-open #chatbase-message-bubbles { display: none !important; }
.nav__mobile .nav__link { font-size: 32px; font-family: var(--font-display); color: var(--black); text-decoration: none; }
.nav__mobile .nav__link:active { opacity: 0.5; }
.nav__mobile .nav__lang-select { font-size: 18px; color: var(--black); border-color: rgba(0,0,0,0.2); margin-top: 24px; padding: 8px 28px 8px 10px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E"); }
.nav__mobile-close {
  position: absolute; top: 20px; right: var(--container-padding);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 1;
}
.nav__mobile-close svg { width: 28px; height: 28px; stroke: var(--black); stroke-width: 2; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ========== HERO ========== */
.hero {
  position: relative; width: 100%; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden; background: var(--black);
}
.hero__bg {
  position: absolute; inset: 0;
  transition: transform 8s linear;
}
.hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bg-fallback {
  position: absolute; inset: 0;
  background: url('images/brand-00.jpg') center/cover no-repeat;
}
.hero.in-view .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 clamp(24px, 5vw, 80px);
  max-width: 800px;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.hero__words {
  display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.hero__word {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); opacity: 0;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,0.3);
  animation: heroWordIn 0.6s var(--ease-out-expo) forwards;
}
.hero__word:nth-child(1) { animation-delay: 0.6s; }
.hero__word:nth-child(2) { animation-delay: 0.75s; }
.hero__word:nth-child(3) { animation-delay: 0.9s; }
.hero__word:nth-child(4) { animation-delay: 1.05s; }
@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__title {
  font-size: clamp(100px, 20vw, 280px);
  color: var(--white); letter-spacing: -0.04em;
  line-height: 0.85; margin-bottom: 16px;
  opacity: 0; transform: translateY(40px);
  animation: heroTitleIn 1s var(--ease-out-expo) 0.3s forwards;
}
@keyframes heroTitleIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__tagline {
  font-family: var(--font-body); font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 8px;
  opacity: 0; animation: heroTagIn 0.8s var(--ease-out-expo) 1s forwards;
}
.hero__manifesto {
  font-family: var(--font-body); font-size: clamp(18px, 2.5vw, 28px);
  color: rgba(255,255,255,0.7); letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; margin-bottom: 48px; max-width: 600px;
  opacity: 0; animation: heroTagIn 0.8s var(--ease-out-expo) 0.8s forwards;
}
@keyframes heroTagIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 0.8; transform: translateY(0); }
}
.hero__proof {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 40px;
  opacity: 0; animation: heroTagIn 0.8s var(--ease-out-expo) 1.3s forwards;
}
.hero__stars { font-size: 16px; color: #FFD700; letter-spacing: 2px; }
.hero__proof-text { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 48px;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0; animation: heroCtaIn 0.8s var(--ease-out-expo) 1.2s forwards;
}
.hero__cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero__cta svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out-expo); }
.hero__cta:hover svg { transform: translateX(4px); }
@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll-text {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--white);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--black); padding: 12px 0; overflow: hidden;
  position: relative; border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marqueeScroll 22s linear infinite;
}
.marquee__item {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  color: var(--white); letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.marquee__dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gray-500);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== MANIFESTO ========== */
.manifesto { padding: clamp(100px, 15vw, 200px) var(--container-padding); text-align: center; background: var(--white); }
.manifesto__text {
  font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05; text-transform: uppercase; letter-spacing: -0.02em;
  max-width: 1100px; margin: 0 auto; color: var(--black);
}

/* ========== SECTION UTILITIES ========== */
.section { padding: clamp(60px, 10vw, 120px) var(--container-padding); }
.section--dark { background: var(--black); color: var(--white); }
.section--light { background: var(--white); color: var(--black); }
.section--gray { background: var(--gray-50); color: var(--black); }
.container { max-width: var(--container-max); margin: 0 auto; }
.section-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px;
}
.section-title {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.03em; margin-bottom: 20px; line-height: 0.95;
}
.section-subtitle {
  font-family: var(--font-body); font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400; color: var(--gray-500); max-width: 540px;
  line-height: 1.7; letter-spacing: 0.02em;
}
/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* stripe divider removed */

/* ========== FEATURES / BRAND STORY ========== */
.features { background: var(--black); }
.features__editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px); align-items: center;
}
.features__image-col { overflow: hidden; }
.features__image-col img { width: 100%; height: auto; object-fit: cover; }
.features__text-col { max-width: 520px; }
.features__list { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }
.features__item { display: flex; gap: 20px; align-items: flex-start; }
.features__number {
  font-family: var(--font-display); font-size: 48px; color: var(--gray-700);
  line-height: 1; flex-shrink: 0; min-width: 56px;
}
.features__item-title {
  font-size: 20px; letter-spacing: 0.05em; margin-bottom: 6px; color: var(--white);
}
.features__item-text { font-size: 14px; color: var(--gray-400); line-height: 1.6; }
@media (max-width: 768px) {
  .features__editorial { grid-template-columns: 1fr; }
  .features__image-col { order: -1; }
}

/* ========== TENSION ========== */
.tension { text-align: center; padding: clamp(120px, 18vw, 240px) var(--container-padding); background: var(--black); }
.tension__statements { max-width: 1000px; margin: 0 auto; }
.tension__line {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px);
  color: var(--white); text-transform: uppercase;
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: clamp(32px, 5vw, 64px);
  opacity: 0.15;
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  transform: translateY(10px);
}
.tension__line:last-child { margin-bottom: 0; }
.tension__line.visible { opacity: 1; transform: translateY(0); }

/* ========== PRODUCT SHOWCASE ========== */
.showcase { background: var(--gray-50); }
.showcase__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.showcase__gallery { position: relative; }
.showcase__main-img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}
.showcase__thumbs {
  display: flex; gap: 8px; margin-top: 12px;
}
.showcase__thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: 2px;
  cursor: pointer; opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
  border: 2px solid transparent;
}
.showcase__thumb.active { opacity: 1; border-color: var(--black); }
.showcase__thumb:hover { opacity: 0.8; transform: scale(1.05); }
.showcase__info { max-width: 500px; }
.showcase__badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--black);
  margin-bottom: 20px; color: var(--gray-600);
}
.showcase__name { font-size: clamp(48px, 6vw, 80px); margin-bottom: 16px; }
.showcase__desc { font-size: 17px; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.showcase__specs { display: flex; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.showcase__spec {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 16px; background: var(--white); border-radius: 4px;
  min-width: 80px;
}
.showcase__spec-val { font-family: var(--font-display); font-size: 22px; }
.showcase__spec-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
.showcase__price {
  font-family: var(--font-display); font-size: 42px; margin-bottom: 24px;
}
.showcase__buy-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; background: var(--black); color: var(--white);
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}
.showcase__buy-btn:hover { background: var(--gray-800); transform: scale(1.02); }
@media (max-width: 768px) {
  .showcase__grid { grid-template-columns: 1fr; }
}

/* ========== PHOTO STRIP ========== */
.photostrip {
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden; background: var(--off-white);
}
.photostrip__track {
  display: flex; gap: 12px;
  animation: photoStripScroll 40s linear infinite;
  width: max-content;
}
.photostrip__img {
  width: 480px; height: 320px; object-fit: cover; border-radius: 0;
  flex-shrink: 0;
  filter: grayscale(20%);
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s;
}
.photostrip__img:hover { transform: scale(1.03); filter: grayscale(0%); }
.photostrip__img--contain { object-fit: contain; background: var(--black); }
@keyframes photoStripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .photostrip__img { width: 280px; height: 200px; }
}

/* ========== VIDEO SECTION ========== */
.video-section { background: var(--black); position: relative; overflow: hidden; }
.video-section__content {
  position: relative; z-index: 2; text-align: center;
}
.video-section__title { color: var(--white); margin-bottom: 16px; }
.video-section__subtitle { color: var(--gray-400); margin-bottom: 48px; margin-left: auto; margin-right: auto; }
.video-section__embed {
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 0; overflow: hidden;
  border: 1px solid var(--gray-800);
}
.video-section__embed iframe {
  width: 100%; height: 100%; border: none;
}

/* ========== COMPARISON TABLE ========== */
.comparison { background: var(--white); }
.comparison__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.comparison__table-wrap {
  max-width: 900px; margin: 0 auto; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison__table {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.comparison__table thead th {
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 20px; text-align: center;
  border-bottom: 2px solid var(--black);
}
.comparison__table thead th:first-child { text-align: left; }
.comparison__table thead th.highlight {
  background: var(--black); color: var(--white); border-radius: 8px 8px 0 0;
}
.comparison__table tbody td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.comparison__table tbody td:first-child {
  text-align: left; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison__table tbody td.highlight {
  background: var(--gray-50); font-weight: 700;
}
.comparison__check { color: var(--black); font-size: 18px; }
.comparison__cross { color: var(--gray-300); font-size: 18px; }

/* ========== HOW TO PLAY ========== */
.howto { background: var(--gray-50); }
.howto__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.howto__image { border-radius: 4px; overflow: hidden; }
.howto__image img { width: 100%; }
.howto__steps { display: flex; flex-direction: column; gap: 32px; }
.howto__step {
  display: flex; gap: 20px; align-items: flex-start;
}
.howto__step-num {
  font-family: var(--font-display); font-size: 72px; color: var(--gray-200);
  line-height: 1; flex-shrink: 0; min-width: 64px;
}
.howto__step-content {}
.howto__step-title {
  font-size: 22px; margin-bottom: 6px; letter-spacing: 0.03em;
}
.howto__step-text { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
@media (max-width: 768px) {
  .howto__grid { grid-template-columns: 1fr; }
}

/* ========== REVIEWS ========== */
.reviews { background: var(--black); color: var(--white); overflow: hidden; }
.reviews__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.reviews__header .section-label { color: var(--gray-500); }
.reviews__header .section-title { color: var(--white); }
.reviews__track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__card {
  min-width: 340px; max-width: 400px; flex-shrink: 0;
  background: var(--gray-900); border: 1px solid var(--gray-800);
  padding: 32px; border-radius: 2px; scroll-snap-align: start;
}
.reviews__stars { margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; color: var(--white); }
.reviews__text { font-size: 15px; line-height: 1.7; color: var(--gray-300); margin-bottom: 20px; font-style: italic; }
.reviews__author { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); }
.reviews__source { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.reviews__verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gray-400); font-weight: 600; margin-top: 8px; letter-spacing: 0.03em; }
.reviews__verified svg { width: 14px; height: 14px; stroke: var(--gray-400); }
.reviews__auto-scroll { display: flex; animation: reviewsScroll 40s linear infinite; overflow: visible; scroll-snap-type: none; width: max-content; }
.reviews__auto-scroll:hover { animation-play-state: paused; }
@keyframes reviewsScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== UGC GALLERY ========== */
.ugc { background: var(--black); overflow: hidden; }
.ugc__header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
.ugc__header .section-label { color: var(--gray-400); }
.ugc__header .section-title { color: var(--white); }
.ugc__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.ugc__item {
  position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.ugc__item img, .ugc__item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.ugc__item:hover img, .ugc__item:hover video { transform: scale(1.08); }
.ugc__item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.3); opacity: 0;
  transition: opacity 0.3s;
}
.ugc__item:hover::after { opacity: 1; }
.ugc__cta { text-align: center; margin-top: clamp(24px, 3vw, 40px); }
.ugc__cta a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; border: 2px solid var(--white);
  padding: 14px 32px; border-radius: 0; transition: all 0.3s;
}
.ugc__cta a:hover { background: var(--white); color: var(--black); }
.ugc__cta svg { width: 20px; height: 20px; }
@media (max-width: 768px) { .ugc__grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== INSTAGRAM FEED ========== */
.instagram { background: var(--white); overflow: hidden; }
.instagram__header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
.instagram__handle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 18px; font-weight: 700; color: var(--black);
  text-decoration: none; margin-top: 12px;
}
.instagram__handle svg { width: 24px; height: 24px; }
.instagram__handle:hover { opacity: 0.7; }
.instagram__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.instagram__item {
  position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.instagram__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%); transition: all 0.4s ease;
}
.instagram__item:hover img { filter: grayscale(0%); transform: scale(1.06); }
@media (max-width: 768px) { .instagram__grid { grid-template-columns: repeat(3, 1fr); } }

/* ========== PURCHASE SECTION ========== */
.purchase { background: var(--white); }
.purchase__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.purchase__gallery { display: flex; flex-direction: column; gap: 8px; position: sticky; top: calc(var(--nav-height) + 20px); }
.purchase__gallery-main {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px;
}
.purchase__gallery-thumbs { display: flex; gap: 8px; }
.purchase__gallery-thumb {
  width: 80px; height: 80px; object-fit: cover; border-radius: 2px;
  cursor: pointer; opacity: 0.5; border: 2px solid transparent;
  transition: all 0.3s;
}
.purchase__gallery-thumb.active { opacity: 1; border-color: var(--black); }
.purchase__gallery-thumb:hover { opacity: 0.8; }

.purchase__form { max-width: 520px; }
.purchase__form-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 8px; }
.purchase__form-price { font-family: var(--font-display); font-size: 28px; margin-bottom: 24px; color: var(--gray-700); }
.purchase__form-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px; color: var(--gray-600);
}
.form-group select,
.form-group input[type="text"],
.form-group input[type="number"] {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group select:focus,
.form-group input:focus { border-color: var(--black); outline: none; }

.quantity-control {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--gray-300); border-radius: 4px;
  width: fit-content;
}
.quantity-control button {
  width: 44px; height: 44px;
  font-size: 20px; font-weight: 300; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.quantity-control button:hover { background: var(--gray-100); }
.quantity-control input {
  width: 56px; height: 44px; text-align: center;
  border: none; border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
}
.quantity-control input:focus { outline: none; }

/* Product selector tabs */
.product-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.product-tab {
  flex: 1; padding: 14px 16px; border: 2px solid var(--gray-200);
  border-radius: 4px; text-align: center; cursor: pointer;
  transition: all 0.3s;
}
.product-tab.active { border-color: var(--black); background: var(--gray-50); }
.product-tab:hover { border-color: var(--gray-400); }
.product-tab__name { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-tab__price { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* Includes line */
.showcase__includes {
  font-size: 13px; color: var(--gray-500); margin-bottom: 24px; margin-top: -16px;
  display: flex; align-items: center; gap: 6px;
}
.showcase__includes::before {
  content: '\2714'; color: var(--black); font-size: 14px;
}

/* Bundle offers */
.bundle-offers { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.bundle-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 2px solid var(--gray-200);
  border-radius: 8px; cursor: pointer; position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.bundle-option:hover { border-color: var(--gray-400); }
.bundle-option.active { border-color: var(--black); background: var(--gray-50); }
.bundle-option__radio {
  width: 20px; height: 20px; border: 2px solid var(--gray-300);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.2s;
}
.bundle-option.active .bundle-option__radio { border-color: var(--black); }
.bundle-option__dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--black);
  transform: scale(0); transition: transform 0.2s var(--ease-spring);
}
.bundle-option.active .bundle-option__dot { transform: scale(1); }
.bundle-option__info { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.bundle-option__name { font-weight: 700; font-size: 14px; }
.bundle-option__price { font-family: var(--font-display); font-size: 18px; }
.bundle-option__old { text-decoration: line-through; color: var(--gray-400); font-size: 14px; margin-right: 6px; }
.bundle-option__save { font-size: 12px; font-weight: 700; color: var(--white); background: var(--black); padding: 3px 8px; border-radius: 4px; }
.bundle-option__badge {
  position: absolute; top: -10px; left: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  background: var(--black); color: var(--white);
}
.bundle-option--best .bundle-option__badge { background: var(--black); }

/* Country search */
.country-search-wrapper { position: relative; }
.country-search {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.3s; background: var(--white);
}
.country-search:focus { border-color: var(--black); outline: none; }
.country-dropdown {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border: 1px solid var(--gray-300);
  border-top: none; border-radius: 0 0 4px 4px;
  max-height: 200px; overflow-y: auto; z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.country-dropdown.open { display: block; }
.country-option {
  padding: 10px 16px; font-size: 14px; cursor: pointer;
  transition: background 0.2s;
}
.country-option:hover { background: var(--gray-100); }
.country-option.highlighted { background: var(--gray-100); }

/* Shipping info */
.shipping-info {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #f0f4ff; border: 1px solid #c8d6e5;
  border-radius: 4px; font-size: 13px; color: #2c5282; margin-top: 16px;
}
.shipping-info svg { flex-shrink: 0; }

/* Shipping box */
.shipping-box { margin-top: 16px; }
.promo-input-wrap { display: flex; gap: 8px; }
.promo-input-wrap input { flex: 1; padding: 12px 16px; border: 1px solid var(--gray-300); border-radius: 4px; font-family: var(--font-body); font-size: 14px; }
.promo-input-wrap input:focus { border-color: var(--black); outline: none; }
.promo-apply-btn { padding: 12px 20px; background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 4px; white-space: nowrap; transition: background 0.2s; cursor: pointer; border: none; }
.promo-apply-btn:hover { background: var(--gray-800); }
.promo-message { font-size: 13px; margin-top: 8px; }
.promo-message--success { color: #2e7d32; }
.promo-message--error { color: #c62828; }
.shipping-option {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: 6px; margin-bottom: 8px;
}
.shipping-option--relay { background: var(--gray-50); border: 1px solid var(--gray-200); }
.shipping-option--standard { background: #f0f4ff; border: 1px solid #c8d6e5; }
.shipping-option__icon { flex-shrink: 0; margin-top: 2px; }
.shipping-option__title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.shipping-option--relay .shipping-option__title { color: var(--black); }
.shipping-option--standard .shipping-option__title { color: #2c5282; }
.shipping-option__desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
#MR_Widget { margin-top: 12px; border-radius: 8px; overflow: hidden; min-height: 300px; }
#MR_Widget .MRW-Search { font-family: var(--font-body) !important; }
.mr-selected-info { margin-top: 12px; padding: 12px 16px; background: #e8f5e9; border-radius: 6px; font-size: 13px; color: #2e7d32; display: none; }
.mr-selected-info.active { display: block; }

/* Checkout button */
.checkout-btn {
  width: 100%; padding: 18px;
  background: var(--black); color: var(--white);
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; margin-top: 24px;
  transition: all 0.4s var(--ease-out-expo);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.checkout-btn:hover { background: var(--gray-800); transform: scale(1.01); }
.checkout-btn svg { width: 18px; height: 18px; }

.purchase__secure {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 12px; color: var(--gray-400);
}
.purchase__secure svg { width: 14px; height: 14px; }

.amazon-separator {
  display: flex; align-items: center; gap: 12px; margin: 20px 0 16px;
}
.amazon-separator__line { flex: 1; height: 1px; background: var(--gray-200); }
.amazon-separator__text { font-size: 13px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }

.amazon-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 24px;
  background: #fff; color: #232F3E;
  border: 2px solid #e5e5e5; border-radius: 8px; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.amazon-btn:hover { border-color: #FF9900; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,153,0,0.2); }
.amazon-btn:active { transform: translateY(0); }
.amazon-btn__logo { flex-shrink: 0; height: 21px; width: auto; }
.amazon-btn__prime { flex-shrink: 0; height: 16px; width: auto; }
.amazon-btn__arrow { flex-shrink: 0; opacity: 0.7; }

@media (max-width: 768px) {
  .purchase__grid { grid-template-columns: 1fr; }
  .purchase__gallery { position: static; }
}

/* ========== PROOF STRIP ========== */
.proof-strip {
  background: var(--white); border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); padding: 20px var(--container-padding);
}
.proof-strip__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.proof-strip__item { display: flex; align-items: center; gap: 8px; }
.proof-strip__stars { font-size: 14px; color: #000; letter-spacing: 1px; }
.proof-strip__text {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-600);
}
.proof-strip__divider { width: 1px; height: 16px; background: var(--gray-300); }
@media (max-width: 480px) { .proof-strip__inner { gap: 16px; } .proof-strip__divider { display: none; } }

/* ========== FINAL CTA ========== */
.final-cta { padding: clamp(100px, 15vw, 200px) var(--container-padding); background: var(--black); }
.final-cta__title {
  font-family: var(--font-display); font-size: clamp(48px, 8vw, 120px);
  color: var(--white); text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 0.95; margin-bottom: 24px;
}
.final-cta__sub {
  font-size: clamp(14px, 2vw, 18px); color: var(--gray-400);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 48px;
}
.final-cta__btn {
  display: inline-flex; align-items: center; padding: 18px 48px;
  border: 1px solid var(--white); color: var(--white);
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.4s var(--ease-out-expo);
}
.final-cta__btn:hover { background: var(--white); color: var(--black); }

/* ========== FAQ ========== */
.faq { background: var(--gray-50); }
.faq__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__question {
  width: 100%; padding: 24px 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 17px; font-weight: 700;
  gap: 16px; background: none; border: none; color: var(--black);
  cursor: pointer; -webkit-appearance: none; appearance: none;
}
.faq__question svg {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}
.faq__item.open .faq__question svg { transform: rotate(45deg); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.4s;
}
.faq__item.open .faq__answer { max-height: 300px; }
.faq__answer-inner {
  padding-bottom: 20px; font-size: 15px;
  color: var(--gray-600); line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black); color: var(--white);
  padding: clamp(48px, 6vw, 80px) var(--container-padding) 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer__logo-img { width: 140px; height: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.footer__heading {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 16px; color: var(--gray-400);
}
.footer__link {
  display: block; font-size: 14px; color: var(--gray-500);
  margin-bottom: 10px; transition: color 0.3s;
}
.footer__link:hover { color: var(--white); }
.footer__social { display: flex; gap: 16px; margin-top: 8px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid var(--gray-700);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer__social a:hover { border-color: var(--white); background: var(--white); }
.footer__social a:hover svg { stroke: var(--black); }
.footer__social svg { width: 16px; height: 16px; stroke: var(--gray-500); fill: none; stroke-width: 1.5; }
.footer__bottom {
  border-top: 1px solid var(--gray-800); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 12px; color: var(--gray-600); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--gray-600); transition: color 0.3s; }
.footer__legal a:hover { color: var(--white); }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ========== CART DRAWER ========== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 90vw; z-index: 2001;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 1px solid var(--gray-200);
}
.cart-drawer__title {
  font-family: var(--font-display); font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.cart-drawer__close:hover { transform: rotate(90deg); }
.cart-drawer__close svg { width: 20px; height: 20px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-drawer__empty {
  text-align: center; padding: 48px 0; color: var(--gray-400);
  font-size: 14px;
}
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cart-item__img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.cart-item__info { flex: 1; }
.cart-item__name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.cart-item__price { font-size: 13px; color: var(--gray-500); }
.cart-item__qty {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.cart-item__qty button {
  width: 28px; height: 28px; border: 1px solid var(--gray-300);
  border-radius: 4px; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-item__qty button:hover { background: var(--gray-100); }
.cart-item__qty span { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item__remove {
  font-size: 11px; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.05em; margin-top: 8px;
  transition: color 0.3s;
}
.cart-item__remove:hover { color: var(--black); }
.cart-drawer__footer {
  border-top: 1px solid var(--gray-200); padding: 24px;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cart-drawer__subtotal-label { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 22px; }
.cart-drawer__checkout {
  width: 100%; padding: 16px;
  background: var(--black); color: var(--white);
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 4px; transition: background 0.3s;
}
.cart-drawer__checkout:hover { background: var(--gray-800); }

/* ========== COOKIE NOTICE ========== */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 3000; background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 16px var(--container-padding);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.cookie.show { transform: translateY(0); }
.cookie__text { font-size: 13px; color: var(--gray-600); max-width: 700px; line-height: 1.5; }
.cookie__btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie__btn {
  padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 4px; transition: all 0.3s;
}
.cookie__btn--accept { background: var(--black); color: var(--white); }
.cookie__btn--accept:hover { background: var(--gray-800); }
.cookie__btn--decline { border: 1px solid var(--gray-300); color: var(--gray-600); }
.cookie__btn--decline:hover { border-color: var(--black); color: var(--black); }
.chatbot-tooltip {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px 12px 4px 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 99998;
  opacity: 0;
  transform: translateY(10px);
  animation: tooltipIn 0.4s ease forwards 3s, tooltipOut 0.4s ease forwards 9s;
  pointer-events: none;
  max-width: 220px;
  line-height: 1.4;
}
@keyframes tooltipIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tooltipOut {
  to { opacity: 0; transform: translateY(10px); }
}

/* ========== BREADCRUMB (SEO) ========== */
.breadcrumb {
  position: absolute; top: var(--nav-height); left: var(--container-padding);
  z-index: 10; padding: 8px 0;
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumb li { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; text-transform: uppercase; }
.breadcrumb li a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.breadcrumb li a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.3); }

/* ========== MOBILE STICKY CTA ========== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1500; padding: 12px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__btn {
  display: block; width: 100%;
  padding: 16px 24px;
  background: var(--black); color: var(--white);
  font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.sticky-cta__btn:hover { background: var(--gray-800); }
@media (max-width: 768px) {
  .sticky-cta { display: block; }
}
/* Hide sticky when cookie notice or cart is open */
body.mobile-nav-open .sticky-cta,
.cookie.show ~ .sticky-cta { display: none !important; }

/* ========== IMPROVED MOBILE HAMBURGER ========== */
@media (max-width: 768px) {
  .nav__mobile {
    opacity: 0; visibility: hidden;
    transform: translateX(100%);
    transition: opacity 0.45s var(--ease-out-expo), visibility 0.45s, transform 0.45s var(--ease-out-expo);
  }
  .nav__mobile.open {
    opacity: 1; visibility: visible;
    transform: translateX(0);
  }
  .nav__mobile .nav__link {
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
  }
  .nav__mobile.open .nav__link {
    opacity: 1; transform: translateX(0);
  }
  .nav__mobile.open .nav__link:nth-child(2) { transition-delay: 0.05s; }
  .nav__mobile.open .nav__link:nth-child(3) { transition-delay: 0.1s; }
  .nav__mobile.open .nav__link:nth-child(4) { transition-delay: 0.15s; }
  .nav__mobile.open .nav__link:nth-child(5) { transition-delay: 0.2s; }
  .nav__mobile.open .nav__link:nth-child(6) { transition-delay: 0.25s; }
  .nav__mobile.open .nav__link:nth-child(7) { transition-delay: 0.3s; }
  .nav__mobile.open .nav__lang-select {
    opacity: 0; transform: translateX(30px);
    transition: opacity 0.3s ease 0.35s, transform 0.3s var(--ease-out-expo) 0.35s;
  }
  .nav__mobile.open .nav__lang-select { opacity: 1; transform: translateX(0); }
}

/* ========== LARGER TOUCH TARGETS ON MOBILE ========== */
@media (max-width: 768px) {
  .hero__cta { padding: 18px 40px; font-size: 15px; min-height: 54px; }
  .checkout-btn { min-height: 56px; font-size: 15px; }
  .final-cta__btn { padding: 18px 40px; min-height: 54px; }
  .faq__question { min-height: 56px; padding: 20px 0; font-size: 16px; }
  .amazon-btn { min-height: 54px; }
  .cookie__btn { min-height: 44px; padding: 12px 24px; }
  .bundle-option { min-height: 56px; padding: 16px; }
  .nav__cart-btn { padding: 12px; }
  .nav__hamburger { width: 32px; height: 24px; }
  .ugc__cta a { min-height: 54px; padding: 16px 32px; }
  .showcase__thumb { width: 64px; height: 64px; }
}

/* ========== PHOTOSTRIP SWIPE SUPPORT ========== */
@media (max-width: 768px) {
  .photostrip__track {
    animation: none !important;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    scrollbar-width: none;
  }
  .photostrip__track::-webkit-scrollbar { display: none; }
  .photostrip__img { scroll-snap-align: center; flex-shrink: 0; }
}

/* ========== SHOWCASE GALLERY SWIPE ========== */
@media (max-width: 768px) {
  .showcase__gallery { touch-action: pan-x; }
}

