﻿/* ============================================
   Aur Amör ORENZO — Premium Landing Page CSS
   Theme: Black / White / Dark Olive Green
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* --- Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --accent: #063F47; /* Teal */
  --accent-light: #0d6e7a;
  --accent-dark: #032024;
  --text-olive: #10b8cc; /* Teal for text on black */
  --star-color: #f5c518; /* Yellow for stars */
  --accent-glow: rgba(6, 63, 71, 0.3);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(6, 63, 71, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400; /* Enforced 400 font-weight */
}

/* Global SVG styling */
.icon-svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
}
.icon-svg.filled {
  fill: currentColor;
  stroke: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 80px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-olive);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--accent);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.announcement-bar .ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.announcement-bar .ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.brand-logo span {
  color: var(--text-olive);
}

.header-cta {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.header-cta:hover {
  background: var(--accent-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(6, 63, 71, 0.04) 0%, transparent 60%),
              var(--bg-primary);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s infinite ease-in-out;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; animation-duration: 5s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 8s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 0.5s; animation-duration: 6s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(6) { left: 35%; top: 80%; animation-delay: 1.5s; animation-duration: 5.5s; }

@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  30% { opacity: 0.4; }
  50% { opacity: 0.6; transform: translateY(-60px) scale(1); }
  70% { opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* --- Product Gallery --- */
.hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.gallery-main-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 calc(25% - 8px);
  scroll-snap-align: start;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 2px solid var(--glass-border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.gallery-thumb.active {
  border-color: var(--text-olive);
}

.gallery-thumb:hover {
  border-color: var(--text-olive);
}

.gallery-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.gallery-arrow {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  font-size: 0.8rem;
}

.gallery-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* --- Product Info --- */
.hero-text {
  text-align: left;
}

.hero-brand-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-olive);
  margin-bottom: 8px;
  display: block;
}

.hero-product-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.hero-product-category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.hero-rating .stars {
  color: var(--star-color);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.hero-rating .rating-text {
  color: var(--text-muted);
}

.hero-description {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
  font-weight: 300;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

/* Price Block */
.hero-price-block {
  margin-bottom: 24px;
}

.price-row-original {
  margin-bottom: 4px;
}

.price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-row-current {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-current {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-save {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-tax-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Trust Chips */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.trust-chip .icon-svg {
  font-size: 1.1rem;
  color: var(--text-olive);
}

/* Urgency */
.hero-urgency {
  font-size: 0.85rem;
  color: var(--text-olive);
  margin-bottom: 24px;
  animation: urgencyPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-urgency .icon-svg {
  fill: var(--text-olive);
  stroke: none;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* CTA Button */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 18px 48px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 240px;
}

.cta-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 63, 71, 0.35);
}

.cta-primary .arrow {
  transition: transform 0.3s ease;
}

.cta-primary:hover .arrow {
  transform: translateX(4px);
}

.cta-glow {
  animation: ctaGlow 2.5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(6, 63, 71, 0.2); }
  50% { box-shadow: 0 0 40px rgba(6, 63, 71, 0.4), 0 0 80px rgba(6, 63, 71, 0.1); }
}

.hero-microcopy {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-microcopy .icon-svg {
  width: 14px;
  height: 14px;
  color: var(--text-olive);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-wrapper {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 36px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.ticker-item-proof .dot {
  width: 5px;
  height: 5px;
  background: var(--text-olive);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   WHY MEN LOVE ORENZO
   ============================================ */
.why-love { background: var(--bg-primary); }

.why-love-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  border-color: rgba(6, 63, 71, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.why-card:hover::before { opacity: 1; }

.why-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(6, 63, 71, 0.25), rgba(6, 63, 71, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text-olive);
}

.why-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.why-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   FRAGRANCE NOTES
   ============================================ */
.fragrance-notes {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.fragrance-notes::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6, 63, 71, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.notes-pyramid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.note-tier {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.note-tier:hover {
  border-color: rgba(6, 63, 71, 0.3);
  box-shadow: var(--shadow-glow);
}

.note-tier-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-olive);
  margin-bottom: 4px;
}

.note-tier-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.note-ingredients {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.note-ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.note-ingredient-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 63, 71, 0.2), rgba(6, 63, 71, 0.05));
  border: 1px solid rgba(6, 63, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  color: var(--text-olive);
}

.note-tier:hover .note-ingredient-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(6, 63, 71, 0.2);
}

.note-ingredient-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.note-tier.top { border-left: 3px solid #6b823e; }
.note-tier.heart { border-left: 3px solid var(--accent-light); }
.note-tier.base { border-left: 3px solid var(--accent); }

/* ============================================
   WHEN TO WEAR IT
   ============================================ */
.when-to-wear { background: var(--bg-primary); }

.wear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.wear-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.wear-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 63, 71, 0.4);
  box-shadow: var(--shadow-glow);
}

.wear-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transition: transform 0.6s ease;
  z-index: 0;
}

.wear-card:hover .wear-card-photo { transform: scale(1.08); }

.wear-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  z-index: 2;
}

.wear-card-icon { 
  font-size: 1.6rem; 
  margin-bottom: 8px; 
  color: var(--text-olive);
}

.wear-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

.wear-card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   UGC / SOCIAL CONTENT
   ============================================ */
.ugc-section { background: var(--bg-secondary); }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ugc-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.ugc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 63, 71, 0.4);
}

.ugc-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.7) 100%);
}

.ugc-card-tag {
  align-self: flex-start;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ugc-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition-smooth);
  color: var(--text-primary);
}

.ugc-card:hover .ugc-play-btn {
  background: rgba(6, 63, 71, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

.ugc-card-bottom { display: flex; align-items: center; gap: 8px; }

.ugc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.ugc-username { font-size: 0.72rem; font-weight: 600; }

.ugc-card-bg-icon {
  font-size: 3rem;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  color: var(--text-primary);
  width: 80px;
  height: 80px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section { background: var(--bg-primary); }

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.reviews-rating-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-olive);
}

.reviews-stars {
  color: var(--star-color);
  font-size: 1.2rem;
  letter-spacing: 4px;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.review-card:hover {
  border-color: rgba(6, 63, 71, 0.25);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author { display: flex; align-items: center; gap: 10px; }

.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-location { font-size: 0.72rem; color: var(--text-muted); }

.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-olive);
  background: rgba(6, 63, 71, 0.2);
  padding: 4px 8px;
  border-radius: 100px;
}

.review-stars {
  color: var(--star-color);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-section { background: var(--bg-secondary); }

.comparison-table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.comparison-table thead th {
  padding: 16px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.comparison-table thead th:nth-child(2) { color: var(--text-olive); }

.comparison-table tbody td {
  padding: 14px 12px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tbody td:nth-child(2) {
  color: var(--text-olive);
  font-weight: 600;
}

.comparison-table .check { color: var(--text-olive); }
.comparison-table .cross { color: #ff4444; opacity: 0.5; }
.comparison-highlight { background: rgba(6, 63, 71, 0.08); }

/* ============================================
   LIMITED STOCK / URGENCY
   ============================================ */
.urgency-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.urgency-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.urgency-icon {
  margin-bottom: 16px;
  animation: urgencyPulse 2s ease-in-out infinite;
  display: inline-block;
  color: var(--text-olive);
}

.urgency-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.urgency-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.countdown-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  min-width: 64px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-olive);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.urgency-purchases {
  font-size: 0.82rem;
  color: var(--text-olive);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--bg-secondary); }

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item { border-bottom: 1px solid var(--glass-border); }

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--text-primary);
  padding: 20px 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--text-olive); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-olive);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CHECKOUT / FINAL CTA
   ============================================ */
.checkout-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.checkout-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6, 63, 71, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.checkout-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.checkout-price-row { margin: 24px 0; }
.checkout-price-row .price-row-current { justify-content: center; }

.checkout-trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.checkout-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.checkout-trust-item .ct-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-olive);
}

.checkout-microcopy {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 40px 20px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--text-olive); }

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(6, 63, 71, 0.4);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.sticky-mobile-cta.visible { transform: translateY(0); }

.sticky-left { display: flex; flex-direction: column; gap: 2px; }

.sticky-product-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sticky-price-row { display: flex; align-items: center; gap: 8px; }
.sticky-price { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.sticky-original { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; }

.sticky-badge {
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sticky-cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition-smooth);
  animation: ctaGlow 2.5s ease-in-out infinite;
}

.sticky-cta-btn:hover { background: var(--accent-light); }

/* ============================================
   RESPONSIVE — DESKTOP
   ============================================ */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero-gallery { order: 1; }
  .hero-text { order: 2; }

  .why-love-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .wear-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .ugc-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sticky-mobile-cta { display: none !important; }
  .container { padding: 0 40px; }
  .section-padding { padding: 100px 0; }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { gap: 60px; padding-top: 140px; padding-bottom: 140px; }
}

/* Mobile overrides */
@media (max-width: 767px) {
  .sticky-mobile-cta { display: flex; }
  .hero-content { gap: 24px; padding-top: 24px; padding-bottom: 40px; }
  body { padding-bottom: 72px; }
  .section-padding { padding: 60px 0; }
  .wear-card { aspect-ratio: 4/3; }
  .ugc-card { aspect-ratio: 9/14; }
  .gallery-main { aspect-ratio: 1; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(57, 72, 31, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(57, 72, 31, 0.6); }

::selection {
  background: rgba(57, 72, 31, 0.4);
  color: #fff;
}

