/* ============================================
   GlintSet — Premium Aligner Gems
   Brand: Pearl / Gold / Warm tones
   Mobile-first responsive design
   ============================================ */

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

:root {
  --pearl: #FFF8F0;
  --pearl-dark: #F5EDE3;
  --gold: #C9A96E;
  --gold-light: #D4BC8A;
  --gold-dark: #A88B4A;
  --blush: #F5E6E0;
  --rose: #F0C6D4;
  --lavender: #D8CCE8;
  --mint: #C8E6D0;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #9A9A9A;
  --white: #FFFFFF;
  --border: #E8E0D8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--pearl);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

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

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
em { font-style: italic; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  padding: 12px 24px;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-gem {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav-links {
  display: none;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pearl);
  padding: 20px;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav-mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero { padding: 80px 0 100px; }
  .hero .container { grid-template-columns: 1fr 1fr; }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title em {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero Visual — Animated gem display */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.hero-gem-display {
  position: relative;
  width: 300px;
  height: 300px;
}

@media (min-width: 768px) {
  .hero-gem-display { width: 400px; height: 400px; }
}

.gem {
  position: absolute;
  border-radius: 50%;
  animation: gemFloat 6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.gem-crystal {
  width: 80px; height: 80px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #E8E0D8, #D4C5B2);
  box-shadow: 0 0 30px rgba(232, 224, 216, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.6);
  top: 20%; left: 10%;
}

.gem-gold {
  width: 90px; height: 90px;
  background: radial-gradient(circle at 30% 30%, #E8D5A8, #C9A96E, #A88B4A);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
  top: 30%; right: 15%;
}

.gem-pink {
  width: 70px; height: 70px;
  background: radial-gradient(circle at 30% 30%, #F8D4E0, #F0C6D4, #E0A0B4);
  box-shadow: 0 0 30px rgba(240, 198, 212, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.5);
  bottom: 20%; left: 30%;
}

.gem-sm {
  width: 40px !important; height: 40px !important;
}

.gem-sm.gem-crystal { top: 60%; left: 5%; }
.gem-sm.gem-gold { top: 10%; right: 30%; }

@keyframes gemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(3deg); }
  66% { transform: translateY(10px) rotate(-2deg); }
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: var(--pearl-dark);
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 1.5px solid var(--border);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Product Cards ---------- */
.collections {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.products-grid-sm {
  max-width: 800px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  overflow: hidden;
}

.product-card-gems {
  position: relative;
  width: 120px;
  height: 120px;
}

.card-gem {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), var(--color));
  box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 4px rgba(255,255,255,0.7);
  animation: cardGemFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
}

.card-gem:nth-child(1) { top: 10%; left: 20%; }
.card-gem:nth-child(2) { top: 5%; right: 20%; }
.card-gem:nth-child(3) { top: 40%; left: 5%; }
.card-gem:nth-child(4) { top: 45%; right: 10%; }
.card-gem:nth-child(5) { bottom: 10%; left: 35%; }

@keyframes cardGemFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}

.product-badge-lg {
  font-size: 0.8rem;
  padding: 8px 16px;
}

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

.product-card-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.product-card-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-card-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.product-card-actions .btn { flex: 1; }

/* ---------- Subscription CTA ---------- */
.subscription-cta {
  padding: 80px 0;
  background: var(--white);
}

.sub-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  background: linear-gradient(135deg, var(--pearl), var(--pearl-dark));
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  border: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 768px) {
  .sub-card {
    grid-template-columns: 1fr 1fr;
    padding: 64px 48px;
  }
}

.sub-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.sub-card h2 {
  margin-bottom: 12px;
}

.sub-price {
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.sub-desc {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.sub-features {
  list-style: none;
  margin-bottom: 32px;
}

.sub-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.sub-features li svg { flex-shrink: 0; }

.sub-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-gem-cluster {
  position: relative;
  width: 240px;
  height: 240px;
}

.sub-gem {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    hsl(var(--hue), 60%, 90%),
    hsl(var(--hue), 50%, 70%));
  box-shadow: 0 4px 16px hsla(var(--hue), 40%, 60%, 0.3),
              inset 0 2px 8px rgba(255,255,255,0.5);
  animation: subGemFloat 5s ease-in-out infinite;
}

.sub-gem:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sub-gem:nth-child(2) { top: 5%; right: 20%; animation-delay: 0.5s; }
.sub-gem:nth-child(3) { top: 45%; right: 5%; animation-delay: 1s; }
.sub-gem:nth-child(4) { bottom: 15%; left: 15%; animation-delay: 1.5s; }
.sub-gem:nth-child(5) { top: 30%; left: 35%; animation-delay: 2s; width: 60px; height: 60px; }
.sub-gem:nth-child(6) { bottom: 5%; right: 30%; animation-delay: 2.5s; width: 35px; height: 35px; }

@keyframes subGemFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 80px 0;
}

/* --- Accordion --- */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--border);
}

.faq-accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.2s;
}

.faq-accordion-btn:hover { color: var(--gold); }

.faq-accordion-btn[aria-expanded="true"] { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.faq-accordion-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.25s ease;
}

.faq-accordion-body.open {
  max-height: 300px;
}

.faq-accordion-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-bottom: 22px;
  padding-right: 36px;
}

/* Legacy grid (kept for backward compat) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ---------- Product Detail Page ---------- */
.product-detail {
  padding: 40px 0 80px;
}

.breadcrumb {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.breadcrumb:hover { color: var(--gold); }

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.product-image-main {
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-image-main { min-height: 450px; position: sticky; top: 100px; }
}

.product-gem-display {
  position: relative;
  width: 200px;
  height: 200px;
}

.detail-gem {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), var(--color));
  box-shadow: 0 4px 12px rgba(0,0,0,0.1), inset 0 2px 6px rgba(255,255,255,0.7);
  animation: detailGemFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
  /* Position gems in a circular pattern */
  left: calc(50% + cos(calc(var(--i) * 360deg / var(--total))) * 70px - 18px);
  top: calc(50% + sin(calc(var(--i) * 360deg / var(--total))) * 70px - 18px);
}

@keyframes detailGemFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1) translateY(-5px); }
}

.product-collection-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-title {
  margin-bottom: 8px;
}

.product-tagline-detail {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.product-price-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.product-price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.product-gem-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--pearl-dark);
  padding: 4px 12px;
  border-radius: 20px;
}

.product-description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1rem;
}

.product-features h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-features ul {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--pearl-dark);
}

.product-features li:last-child { border-bottom: none; }
.product-features li svg { flex-shrink: 0; }

.product-buy-area {
  margin-bottom: 32px;
}

.product-buy-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.product-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.guarantee svg { color: var(--gold); flex-shrink: 0; }

.related-products {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}

/* ---------- Subscribe Page ---------- */
.subscribe-hero {
  padding: 60px 0 80px;
}

.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .subscribe-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.subscribe-title {
  margin-bottom: 16px;
}

.subscribe-price {
  margin-bottom: 20px;
}

.price-big {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.subscribe-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.subscribe-features {
  margin-bottom: 36px;
}

.subscribe-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
}

.subscribe-feature svg { flex-shrink: 0; }

.subscribe-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.subscribe-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.subscribe-box-visual {
  position: relative;
  width: 280px;
  height: 280px;
}

.box-layer {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.box-layer-1 {
  inset: 0;
  background: var(--white);
  transform: rotate(-3deg);
}

.box-layer-2 {
  inset: 8px;
  background: var(--pearl);
  transform: rotate(2deg);
}

.box-layer-3 {
  inset: 16px;
  background: var(--pearl-dark);
  transform: rotate(-1deg);
}

.box-gems {
  position: absolute;
  inset: 24px;
}

.box-gem {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,
    hsl(var(--h), 60%, 90%),
    hsl(var(--h), 50%, 70%));
  box-shadow: 0 3px 10px hsla(var(--h), 40%, 60%, 0.3),
              inset 0 2px 6px rgba(255,255,255,0.5);
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  animation: boxGemPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--h) * 10ms);
}

@keyframes boxGemPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.sub-how-it-works {
  padding: 80px 0;
  background: var(--white);
}

/* ---------- Comparison Table ---------- */
.comparison {
  padding: 80px 0;
}

.comparison-table {
  max-width: 700px;
  margin: 48px auto 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.comp-header {
  background: var(--pearl-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.comp-cell {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
}

.comp-label {
  justify-content: flex-start;
  font-weight: 500;
  color: var(--text);
}

.comp-highlight {
  background: rgba(201, 169, 110, 0.05);
}

.comp-row {
  border-top: 1px solid var(--pearl-dark);
}

.comp-row .comp-cell { color: var(--text-light); }

/* ---------- Success Page ---------- */
.success-page {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  margin-bottom: 24px;
}

.success-card h1 {
  margin-bottom: 12px;
}

.success-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.success-details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.success-details p {
  color: var(--text-light);
  font-size: 0.93rem;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About Page ---------- */
.about-hero {
  padding: 80px 0;
  text-align: center;
}

.about-title { margin-bottom: 16px; }

.about-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  padding: 0 0 80px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .story-grid { grid-template-columns: repeat(3, 1fr); }
}

.story-block h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.story-block p {
  color: var(--text-light);
  line-height: 1.8;
}

.about-values {
  padding: 80px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: 32px;
  background: var(--pearl);
  border-radius: var(--radius-md);
}

.value-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.value-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

.about-cta {
  padding: 80px 0;
}

.about-cta-card {
  text-align: center;
  background: linear-gradient(135deg, var(--pearl), var(--pearl-dark));
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  border: 1px solid var(--border);
}

.about-cta-card h2 { margin-bottom: 12px; }
.about-cta-card p { color: var(--text-light); margin-bottom: 32px; }

.about-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Error Page ---------- */
.error-page {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-card {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.error-card h1 {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.error-card p {
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.footer-links a:hover { color: var(--gold); }

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Animations & Utilities ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Smooth entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content { animation: fadeInUp 0.6s ease-out; }
.hero-visual { animation: fadeInUp 0.8s ease-out 0.2s both; }
.product-card { animation: fadeInUp 0.5s ease-out both; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }

/* Product Photography */
.product-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-photo {
  transform: scale(1.04);
}

.product-detail-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* Footer email */
.footer-email {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--gold);
}

/* Mobile check — product card image height at small screens */
@media (max-width: 375px) {
  .product-card-image { min-height: 180px; }
  .product-image-main { min-height: 280px; padding: 32px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
}

/* ============ Email Capture ============ */
.email-capture {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--pearl-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.email-capture-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .email-capture-card {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .email-capture-copy {
    flex: 1 1 45%;
  }

  .email-capture-form-wrap {
    flex: 1 1 55%;
  }
}

.email-capture-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.email-capture-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.email-capture-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.email-capture-form {
  width: 100%;
}

.email-capture-input-row {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media (min-width: 500px) {
  .email-capture-input-row {
    flex-direction: row;
  }
}

.email-capture-input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.email-capture-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.email-capture-input::placeholder {
  color: var(--text-muted);
}

.email-capture-btn {
  white-space: nowrap;
  gap: 6px;
}

.btn-spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.email-capture-fine {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.email-capture-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  animation: fadeInUp 0.4s ease-out both;
}

.success-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.success-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
