/* ============================================================
   SLEEP TIGHT — WORDPRESS THEME CSS
   Matches design from sleeptightstore.com (Lovable build)
   ============================================================ */

/* 1. DESIGN TOKENS
   ============================================================ */
:root {
  --background:        hsl(40, 33%, 98%);
  --foreground:        hsl(30, 10%, 15%);
  --card:              hsl(40, 20%, 96%);
  --secondary:         hsl(35, 20%, 92%);
  --muted-foreground:  hsl(30, 8%, 45%);
  --border:            hsl(35, 15%, 88%);
  --primary:           hsl(30, 10%, 15%);
  --primary-foreground:hsl(40, 33%, 98%);
  --gold:              hsl(36, 55%, 58%);
  --gold-light:        hsl(38, 50%, 80%);
  --sale:              hsl(0, 84%, 60%);
  --sale-foreground:   #fff;
  --success:           hsl(142, 71%, 45%);
  --radius:            0.375rem;
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'DM Sans', system-ui, sans-serif;
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--foreground);
}
.font-display { font-family: var(--font-display); }
p { color: var(--muted-foreground); line-height: 1.7; }

/* 4. LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

section { width: 100%; }
.bg-secondary { background-color: var(--secondary); }
.bg-primary   { background-color: var(--primary); }

/* 5. UTILITIES
   ============================================================ */
.text-gold     { color: var(--gold); }
.text-success  { color: var(--success); }
.text-sale     { color: var(--sale); }
.text-muted    { color: var(--muted-foreground); }
.text-center   { text-align: center; }
.uppercase     { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.2em; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* 6. COMPONENTS
   ============================================================ */

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius);
  transition: opacity 0.2s, background-color 0.2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  height: 3.5rem;
  padding: 0 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1rem;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  height: 3.5rem;
  padding: 0 2.5rem;
  border: 1.5px solid rgba(42,36,32,0.2);
  color: var(--foreground);
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-outline:hover { background-color: var(--secondary); }

.btn-sale {
  height: 3.5rem;
  padding: 0 2.5rem;
  background: var(--sale);
  color: var(--sale-foreground);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(240,56,56,0.25);
}
.btn-sale:hover { opacity: 0.9; }

.btn-gold {
  height: 3rem;
  padding: 0 2rem;
  background: var(--gold);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
}
.btn-gold:hover { opacity: 0.9; }

.btn-sm {
  height: 2.5rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
}

/* -- Cards -- */
.card {
  background: var(--background);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.card-secondary {
  background: var(--secondary);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* -- Section Headers -- */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--foreground);
}
.section-subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* -- Stars -- */
.stars { display: flex; gap: 0.15rem; }
.star {
  width: 1rem;
  height: 1rem;
  fill: var(--gold);
  color: var(--gold);
}
.star-sm { width: 0.875rem; height: 0.875rem; }

/* -- Icon Badges -- */
.icon-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge-gold { background: rgba(196,147,63,0.12); }
.icon-badge-success { background: rgba(34,197,94,0.1); }
.icon-badge-sale { background: rgba(240,56,56,0.1); }
.icon-badge-circle { border-radius: 50%; }

/* -- SVG Icons -- */
svg.icon { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* 7. NAVBAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,221,213,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-logo img { height: 5rem; width: auto; display: block; }
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--foreground); }
.nav-cta { display: none; }
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--background);
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .nav-mobile-cta {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-cta    { display: inline-flex; }
  .nav-hamburger { display: none; }
}

/* 8. HERO SECTION (Landing)
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}
@media (min-width: 768px) { .hero { min-height: 100vh; } }

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,245,0.92) 0%, rgba(250,248,245,0.65) 55%, rgba(250,248,245,0.1) 100%);
}
.hero-content {
  position: relative;
  max-width: 36rem;
  padding: 3rem 0;
}
.hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.08;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* 9. PROBLEM SECTION
   ============================================================ */
.section-py { padding: 3.5rem 0; }
@media (min-width: 768px) { .section-py { padding: 5rem 0; } }

.problem-card {
  background: var(--background);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.problem-icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.problem-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.625rem; }
.problem-card p  { font-size: 0.875rem; line-height: 1.7; }

/* 10. SOLUTION SECTION
   ============================================================ */
.solution-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; } }
.solution-img { border-radius: 0.5rem; width: 100%; aspect-ratio: 1; object-fit: cover; }
.solution-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.solution-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
.solution-desc  { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.solution-bullets { display: flex; flex-direction: column; gap: 0.875rem; }
.solution-bullet { display: flex; align-items: flex-start; gap: 0.75rem; }
.bullet-dot-wrap {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: rgba(196,147,63,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.125rem;
}
.bullet-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold); }
.solution-bullet span { font-size: 0.875rem; color: var(--foreground); }

/* 11. FEATURES SECTION
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--background);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.25s;
}
.feature-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.feature-icon { color: var(--gold); width: 1.75rem; height: 1.75rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* 12. RV SECTION
   ============================================================ */
.rv-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .rv-grid { grid-template-columns: 1fr 1fr; } }
.rv-img { border-radius: 0.5rem; width: 100%; aspect-ratio: 4/5; object-fit: cover; order: -1; }
@media (min-width: 1024px) { .rv-img { order: 1; } }
.rv-img-tags { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.rv-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--background); padding: 0.625rem 1.25rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.rv-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.rv-benefit  { display: flex; align-items: flex-start; gap: 1rem; }
.rv-benefit-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: rgba(196,147,63,0.14);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem;
}
.rv-benefit-icon svg { color: var(--gold); }
.rv-benefit h4 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.rv-benefit p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* 13. HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 300;
  color: rgba(196,147,63,0.28);
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.625rem; }
.step p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* 14. REVIEWS / SOCIAL PROOF
   ============================================================ */
.reviews-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card { background: var(--background); border-radius: 0.5rem; padding: 1.5rem; }
.review-stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.review-star  { width: 1rem; height: 1rem; fill: var(--gold); color: var(--gold); }
.review-text  { font-size: 0.875rem; color: var(--foreground); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-name  { font-size: 0.875rem; font-weight: 500; }
.review-loc   { font-size: 0.75rem; color: var(--muted-foreground); }

.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.trust-badge  { display: flex; align-items: center; gap: 0.625rem; color: var(--muted-foreground); }
.trust-badge svg { color: var(--gold); width: 1.25rem; height: 1.25rem; }
.trust-badge span { font-size: 0.875rem; font-weight: 500; }

/* 15. COMPARISON TABLE
   ============================================================ */
.comparison-table {
  max-width: 42rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}
.comparison-head div, .comparison-row > div {
  padding: 1rem;
}
.comparison-head .col-center, .comparison-row .col-center { text-align: center; }
.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  font-size: 0.875rem;
}
.comparison-row:nth-child(even) { background: var(--background); }
.comparison-row:nth-child(odd)  { background: var(--secondary); }
.comparison-row .col-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.check-icon { color: var(--gold); width: 1.25rem; height: 1.25rem; }
.cross-icon { color: hsl(0,60%,65%); width: 1.25rem; height: 1.25rem; }

/* 16. OFFER SECTION
   ============================================================ */
.offer-grid { display: grid; gap: 2.5rem; align-items: center; max-width: 80rem; margin: 0 auto; }
@media (min-width: 1024px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
.offer-img { border-radius: 0.5rem; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.offer-prices { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .offer-prices { flex-direction: row; } }
.offer-price-card {
  background: var(--background);
  border-radius: 0.5rem;
  padding: 1.5rem;
  flex: 1;
  text-align: center;
}
.offer-price-card.featured { border: 2px solid var(--gold); }
.offer-price-label  { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.offer-price-label.gold { color: var(--gold); font-weight: 600; }
.offer-price-amount { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; }
.offer-price-sub    { font-size: 0.75rem; color: var(--muted-foreground); }
.offer-code { font-weight: 600; color: var(--foreground); }

/* 17. FAQ SECTION
   ============================================================ */
.faq-list { max-width: 42rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { background: var(--secondary); border-radius: 0.5rem; overflow: hidden; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--gold); }
.faq-chevron { flex-shrink: 0; width: 1.125rem; height: 1.125rem; transition: transform 0.25s; color: var(--muted-foreground); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.5rem;
}
.faq-item.is-open .faq-answer {
  max-height: 20rem;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }

/* 18. FINAL CTA
   ============================================================ */
.final-cta { padding: 3.5rem 0; background: var(--primary); text-align: center; }
@media (min-width: 768px) { .final-cta { padding: 5rem 0; } }
.final-cta h2 { color: var(--primary-foreground); font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
.final-cta p  { color: rgba(250,248,245,0.7); font-size: 1.125rem; margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary-inverse {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.5rem; padding: 0 3rem;
  background: var(--primary-foreground); color: var(--primary);
  font-size: 1rem; font-weight: 500;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.final-cta .btn-primary-inverse:hover { opacity: 0.9; }

/* 19. FOOTER
   ============================================================ */
.site-footer {
  padding: 2.5rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.875rem; line-height: 1.7; max-width: 22rem;
  color: var(--muted-foreground);
}
.footer-col h4 {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--foreground); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem; color: var(--muted-foreground);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--foreground); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom p { font-size: 0.75rem; color: var(--muted-foreground); margin: 0; }

/* 20. SHOP HERO
   ============================================================ */
.shop-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}
@media (min-width: 768px) { .shop-hero { min-height: 80vh; } }
.shop-hero-bg { position: absolute; inset: 0; }
.shop-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.shop-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(42,36,32,0.86) 0%, rgba(42,36,32,0.62) 55%, rgba(42,36,32,0.2) 100%);
}
.shop-hero-content { position: relative; max-width: 36rem; }
.urgency-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sale); color: var(--sale-foreground);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 1rem; border-radius: 9999px; margin-bottom: 1rem;
}
.shop-hero h1 {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.shop-hero-desc {
  font-size: 1.125rem;
  color: rgba(250,248,245,0.76);
  margin-bottom: 0.75rem;
  line-height: 1.65;
  max-width: 30rem;
}
.shop-hero-social {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.shop-hero-social .stars { }
.shop-hero-social span { font-size: 0.875rem; color: rgba(250,248,245,0.7); }
.shop-hero-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .shop-hero-actions { flex-direction: row; } }
.shop-hero-micro {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; color: rgba(250,248,245,0.6);
}
.shop-hero-micro span { display: flex; align-items: center; gap: 0.25rem; }
.shop-hero-micro .dot { color: rgba(250,248,245,0.3); }

/* 21. SHOP PROBLEM/SOLUTION
   ============================================================ */
.ps-grid { display: grid; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .ps-grid { grid-template-columns: 1fr 1fr; } }
.ps-card { background: var(--background); border-radius: 0.75rem; padding: 1.5rem; }
.ps-card.success-border { border: 2px solid rgba(34,197,94,0.3); }
.ps-card-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.ps-card-header .icon-wrap {
  width: 2rem; height: 2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ps-card-header h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.ps-list { display: flex; flex-direction: column; gap: 1rem; }
.ps-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ps-item-icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem;
}
.ps-item span { font-size: 0.875rem; line-height: 1.65; }

/* 22. SHOP HOW IT WORKS
   ============================================================ */
.shop-steps-grid { display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .shop-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.shop-step { text-align: center; }
.shop-step-icon-wrap {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.2s;
}
.shop-step:hover .shop-step-icon-wrap { background: rgba(196,147,63,0.14); }
.shop-step-num { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(196,147,63,0.5); display: block; margin-bottom: 0.5rem; }
.shop-step h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.shop-step p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* 23. SHOP BENEFITS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 80rem; margin: 0 auto;
}
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(5, 1fr); } }
.benefit-card { background: var(--background); border-radius: 0.75rem; padding: 1.5rem; text-align: center; }
.benefit-icon-wrap {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: rgba(196,147,63,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.65; }

/* 24. SHOP REVIEWS (4-col)
   ============================================================ */
.shop-reviews-grid {
  display: grid; gap: 1.5rem; max-width: 80rem; margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .shop-reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .shop-reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.shop-review-card { background: var(--secondary); border-radius: 0.75rem; padding: 1.5rem; }
.shop-review-card .quote-icon { color: rgba(196,147,63,0.3); width: 1.5rem; height: 1.5rem; margin-bottom: 0.75rem; }
.shop-review-card h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.shop-review-card p  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.shop-review-meta { display: flex; justify-content: space-between; align-items: center; }
.shop-review-meta .name { font-size: 0.875rem; font-weight: 500; }
.shop-review-meta .date { font-size: 0.75rem; color: var(--muted-foreground); }

/* 25. SHOP VARIANTS (Product Selector)
   ============================================================ */
.shop-variants-section { padding: 3rem 0 4rem; scroll-margin-top: 5rem; }
.shop-variants-grid { display: grid; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .shop-variants-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* Image Gallery */
.gallery-main { position: relative; border-radius: 0.75rem; overflow: hidden; margin-bottom: 0.75rem; }
.gallery-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; }
.gallery-thumb {
  width: 4rem; height: 4rem; border-radius: 0.375rem; overflow: hidden;
  flex-shrink: 0; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--gold); }

/* Buy Box */
.buy-box { background: var(--background); border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); }
.buy-box-title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; margin-bottom: 0.25rem; }
.buy-box-subtitle { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.buy-box-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.buy-box-rating .stars { }
.buy-box-rating span { font-size: 0.75rem; color: var(--muted-foreground); }

.buy-box-price { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.25rem; }
.price-current { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--foreground); }
.price-original { font-size: 1.125rem; color: var(--muted-foreground); text-decoration: line-through; }
.price-badge {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  background: rgba(240,56,56,0.14); color: var(--sale);
  padding: 0.25rem 0.5rem; border-radius: 0.375rem;
}
.buy-box-offer {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; font-weight: 500; color: var(--success);
  margin-bottom: 1rem;
}

/* Color picker */
.buy-box-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.5rem; }
.buy-box-label span { font-weight: 400; color: var(--muted-foreground); }
.color-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.color-swatch {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.color-swatch:hover { transform: scale(1.07); }
.color-swatch.selected { border-color: var(--gold); box-shadow: 0 0 0 3px var(--background), 0 0 0 5px var(--gold); transform: scale(1.1); }

/* Size selector */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .size-grid { grid-template-columns: repeat(4, 1fr); } }
.size-btn {
  position: relative;
  padding: 0.625rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1.5px solid var(--border);
  color: var(--muted-foreground);
  background: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  text-align: center;
}
.size-btn:hover { border-color: rgba(196,147,63,0.5); color: var(--foreground); }
.size-btn.selected { border-color: var(--gold); background: rgba(196,147,63,0.1); color: var(--foreground); }
.size-popular-badge {
  position: absolute;
  top: -0.625rem; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  background: var(--gold); color: var(--foreground);
  padding: 0.125rem 0.375rem; border-radius: 0.25rem; white-space: nowrap;
}

/* Quantity */
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 0.5rem; width: fit-content; margin-bottom: 1rem; }
.qty-btn { padding: 0.625rem 1rem; color: var(--muted-foreground); background: none; border: none; cursor: pointer; transition: color 0.2s; font-size: 1.25rem; line-height: 1; }
.qty-btn:hover { color: var(--foreground); }
.qty-value { padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; min-width: 2.5rem; text-align: center; }

/* CTAs */
.buy-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.btn-buy-now {
  width: 100%; height: 3.5rem;
  background: var(--sale); color: var(--sale-foreground);
  font-weight: 700; font-size: 1rem;
  border-radius: 0.5rem; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(240,56,56,0.25);
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-buy-now:hover { opacity: 0.9; }
.btn-add-cart {
  width: 100%; height: 3rem;
  background: var(--primary); color: var(--primary-foreground);
  font-weight: 500; font-size: 0.875rem;
  border-radius: 0.5rem; border: none; cursor: pointer;
  transition: opacity 0.2s;
}
.btn-add-cart:hover { opacity: 0.9; }
.buy-micro { text-align: center; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 1.25rem; }

/* Trust badges */
.trust-row {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.375rem; text-align: center; }
.trust-item svg { color: var(--success); width: 1.25rem; height: 1.25rem; }
.trust-item span { font-size: 0.625rem; color: var(--muted-foreground); line-height: 1.3; }

/* Bundle */
.bundle-card {
  margin-top: 1.5rem; background: var(--background);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  border: 2px solid rgba(196,147,63,0.3);
}
.bundle-badges { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.badge-gold {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  background: rgba(196,147,63,0.14); color: var(--gold);
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.badge-sale {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  background: rgba(240,56,56,0.14); color: var(--sale);
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.bundle-inner { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .bundle-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.bundle-card h4 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.bundle-card p  { font-size: 0.875rem; color: var(--muted-foreground); }
.bundle-price { text-align: right; }
.bundle-price .amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: block; }
.bundle-price .original { font-size: 0.75rem; color: var(--muted-foreground); text-decoration: line-through; }
.bundle-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* 26. SHOP OFFER (Guarantees)
   ============================================================ */
.guarantees-grid { display: grid; gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 640px)  { .guarantees-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .guarantees-grid { grid-template-columns: repeat(4, 1fr); } }
.guarantee-card { background: var(--secondary); border-radius: 0.75rem; padding: 1.5rem; text-align: center; }
.guarantee-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.guarantee-icon svg { color: var(--success); width: 1.25rem; height: 1.25rem; }
.guarantee-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.guarantee-card p  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.65; }

/* 27. STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}
@media (max-width: 767px) { .sticky-mobile-cta { display: block; } }
.sticky-mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; height: 3rem;
  background: var(--sale); color: var(--sale-foreground);
  font-weight: 700; font-size: 0.875rem;
  border-radius: 0.5rem; box-shadow: 0 4px 12px rgba(240,56,56,0.22);
  text-decoration: none;
}
.sticky-mobile-cta p {
  text-align: center; font-size: 0.625rem;
  color: var(--muted-foreground); margin-top: 0.375rem; margin-bottom: 0;
}

/* Add padding to shop page on mobile for sticky CTA */
@media (max-width: 767px) { .has-sticky-cta { padding-bottom: 5rem; } }

/* 28. SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.is-visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 29. RATING AGGREGATE (shop page)
   ============================================================ */
.rating-agg { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.rating-agg .stars svg { width: 1.25rem; height: 1.25rem; }
.rating-agg .meta { font-size: 0.875rem; color: var(--muted-foreground); }

/* 30. RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 640px) {
  .hero-content { padding: 1.5rem 0; }
  .shop-hero-content { padding: 1rem 0; }
  .buy-box { padding: 1rem; }
  .bundle-card { padding: 1rem; }
}
