/** Shopify CDN: Minification failed

Line 1646:0 Expected "}" to go with "{"

**/
/* =====================================================
   FOCUS — styles.css
   Luxury Anti Blue Light Glasses — Shopify Theme
   ===================================================== */

/* ------------------- RESET & ROOT ------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:       #000000;
  --black-rich:  #050505;
  --black-soft:  #0a0a0a;
  --black-card:  #0f0f0f;
  --black-border:#1a1a1a;
  --black-mid:   #1f1f1f;
  --black-light: #2a2a2a;
  --orange:      #ff6a00;
  --orange-hot:  #ff9500;
  --orange-deep: #cc4400;
  --orange-glow: rgba(255, 106, 0, 0.18);
  --orange-faint:rgba(255, 106, 0, 0.06);
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.8);
  --white-60:    rgba(255,255,255,0.6);
  --white-40:    rgba(255,255,255,0.4);
  --white-20:    rgba(255,255,255,0.2);
  --white-10:    rgba(255,255,255,0.1);
  --white-05:    rgba(255,255,255,0.05);

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-condensed:'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  /* Spacing */
  --section-py: 120px;
  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ------------------- TYPOGRAPHY ------------------- */
em { font-style: italic; color: var(--orange); }

.section-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--white-60);
  max-width: 520px;
  line-height: 1.7;
}

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ------------------- BUTTONS ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white-10);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 30px rgba(0, 0, 0, 1);
}

.btn--primary:hover {
  background: var(--orange-hot);
  box-shadow: 0 0 50px rgba(0, 0, 0, 1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white-80);
  border: 1px solid var(--white-20);
}

.btn--ghost:hover {
  border-color: var(--black);
  color: var(--black);
  box-shadow: 0 0 20px var(--black-glow);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 40px rgba(0, 0, 0, 1);
}

.btn--lg { padding: 18px 44px; font-size: 15px; }
.btn--sm { padding: 11px 22px; font-size: 12px; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.3s ease;
}

.logo-link:hover { color: var(--orange); }

.logo-icon {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--white-60);
  transition: all 0.3s ease;
  position: relative;
}

.nav-icon-btn:hover {
  color: var(--white);
  background: var(--white-05);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-80);
  transition: all 0.3s var(--ease-smooth);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--black-border);
  padding: 24px 40px;
}

.mobile-nav-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--white-80);
  padding: 12px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover { color: var(--orange); }
.mobile-menu.is-open { display: block; }


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-rich);
}

.hero-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or cover if you want full screen */
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1) blur(0.5px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

.particle:nth-child(1)  { top: 20%; left: 15%; animation-delay: 0s;   animation-duration: 7s; }
.particle:nth-child(2)  { top: 60%; left: 80%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(3)  { top: 80%; left: 25%; animation-delay: 3s;   animation-duration: 6s; }
.particle:nth-child(4)  { top: 35%; left: 70%; animation-delay: 0.8s; animation-duration: 9s; }
.particle:nth-child(5)  { top: 70%; left: 55%; animation-delay: 2.2s; animation-duration: 7.5s; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* Glows */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 6, 6, 1) 0%, transparent 70%);
  pointer-events: none;
  animation: heroPulse 4s ease-in-out infinite;
}

.hero-glow-secondary {
  position: absolute;
  top: 30%;
  left: 55%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(4, 4, 4, 1) 0%, transparent 70%);
  pointer-events: none;
  animation: heroPulse 6s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* Scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInDown 0.8s var(--ease-smooth) 0.2s forwards;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--orange);
}

.eyebrow-text {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Product stage */
.hero-product-stage {
  position: relative;
  width: 540px;
  max-width: 100%;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.4s forwards;
}

.product-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 1);
  animation: ringPulse 3s ease-in-out infinite;
}

.product-glow-ring--2 {
  width: 115%;
  height: 115%;
  border-color: rgba(255, 106, 0, 0.08);
  animation-delay: 1s;
  animation-duration: 4s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
}

.hero-glasses {
  position: relative;
  animation: glassesFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 1));
}

@keyframes glassesFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  33%       { transform: translateY(-14px) rotateX(2deg); }
  66%       { transform: translateY(-8px) rotateX(-1deg); }
}

.glasses-svg { width: 100%; height: auto; }

.product-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 1) 0%, transparent 70%);
  animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.6; width: 55%; }
  33%       { opacity: 0.3; width: 45%; }
  66%       { opacity: 0.45; width: 50%; }
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(58px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.headline-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) forwards;
}

.headline-line--1 {
  animation-delay: 0.6s;
  color: var(--white);
}

.headline-line--2 {
  animation-delay: 0.8s;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  text-shadow: 0 0 40px rgba(255, 106, 0, 0.4);
}

/* Hero sub */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 1.0s forwards;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 1.2s forwards;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 1.4s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--black-light);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.8); }
}

.scroll-indicator span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-40);
}



/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits {
  padding: var(--section-py) 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-glow), transparent);
}

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

.benefit-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--orange-faint), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 106, 0, 0.1);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
  margin-bottom: 24px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--black-mid);
  border: 1px solid var(--black-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(255, 106, 0, 0.1);
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.benefit-title {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefit-stat {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
  padding: 6px 12px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 4px;
  display: inline-block;
}


/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(255, 106, 0, 0.08);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
  aspect-ratio: 4/3;
}

.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.tag--hot {
  background: var(--orange);
  color: var(--black);
}

.tag--new {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-img { transform: scale(1.05); }

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-placeholder svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-img-placeholder svg { transform: scale(1.05); }

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-info {
  padding: 24px;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
}

.product-card-price {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.product-card-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars { color: var(--orange); font-size: 13px; }

.rating-count {
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--white-40);
}

.product-cta-link {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.product-cta-link:hover { gap: 10px; }

.products-footer {
  text-align: center;
}


/* ============================================================
   LIFESTYLE SECTION
   ============================================================ */
.lifestyle {
  padding: var(--section-py) 0;
  background: var(--black-soft);
  overflow: hidden;
  position: relative;
}

.lifestyle::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--black-glow), transparent);
}

.lifestyle-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lifestyle-content .section-label { margin-bottom: 16px; }
.lifestyle-content .section-title { margin-bottom: 20px; }

.lifestyle-list {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lifestyle-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--white-80);
  line-height: 1.5;
}

.lifestyle-icon {
  color: var(--orange);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lifestyle-list strong { color: var(--white); }

/* Lifestyle visual */
.lifestyle-visual {
  position: relative;
}

.lifestyle-visual-bg {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 60% 50%, rgba(255, 106, 0, 0.06), transparent 70%);
  border-radius: var(--radius-lg);
}

.lifestyle-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.lifestyle-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s var(--ease-smooth);
}

.lifestyle-card:hover {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(15, 15, 15, 0.9);
  transform: translateX(6px);
}

.lc-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.lc-title {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.lc-bar {
  height: 3px;
  background: var(--black-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
  flex-grow: 1;
}

.lc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s var(--ease-smooth);
}

.lc-bar-fill.is-visible { width: var(--target-width, 0); }

.lc-stat {
  font-family: var(--font-condensed);
  font-size: 12px;
  color: var(--orange);
  white-space: nowrap;
}

.lifestyle-card--1 { transform: translateX(-8px); }
.lifestyle-card--2 { transform: translateX(8px); }
.lifestyle-card--3 { transform: translateX(-4px); }

.lifestyle-orange-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
  align-items: start;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  border-color: rgba(255, 106, 0, 0.2);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.06) 0%, var(--black-card) 100%);
  border-color: rgba(255, 106, 0, 0.25);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.08);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

blockquote {
  font-size: 15px;
  font-weight: 300;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black-mid);
  border: 1px solid var(--black-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.author-role {
  font-size: 12px;
  color: var(--white-40);
  margin-top: 2px;
}

.testimonial-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 10px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 4px;
  background: rgba(255, 106, 0, 0.06);
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-card);
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.trust-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
}


/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  padding: 140px 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(5, 5, 5, 1) 0%, transparent 65%);
  pointer-events: none;
  animation: heroPulse 5s ease-in-out infinite;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(70px, 12vw, 150px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.cta-headline-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  text-shadow: 0 0 60px rgba(255, 106, 0, 0.4);
}

.cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-60);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--white-40);
}

.cta-guarantees span { display: flex; align-items: center; gap: 6px; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 40px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-40);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 106, 0, 0.06);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 14px;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-condensed);
  font-size: 13px;
  color: var(--white-40);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--white-40);
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: var(--orange); }


/* ============================================================
   ANIMATIONS — SHARED KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-inner { gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--black-border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--black-border); }
}

@media (max-width: 900px) {
  :root { --section-py: 80px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .lifestyle-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lifestyle-visual { order: -1; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section-container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }
  .footer-container { padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .mobile-menu { padding: 20px 24px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }

  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 12px 20px; }

  .lifestyle-cards { gap: 12px; }
  .lifestyle-card--1,
  .lifestyle-card--2,
  .lifestyle-card--3 { transform: none; }

  .hero-cta-group { flex-direction: column; }

  .footer-links-grid { grid-template-columns: 1fr; }

  .cta-guarantees { gap: 16px; font-size: 12px; }
  .footer-legal { gap: 16px; }
  
.product-video {
  width: 100%;
  height: 100%;
}

.product-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-swatches {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.is-active {
  border: 2px solid orange;
  box-shadow: 0 0 12px rgba(255, 120, 0, 0.6);
}

.swatch-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
  .color-swatch {
    width: 28px;
    height: 28px;
  }
}
