/* ============================================================
   ROYAL THÉ — Feuille de style partagée
   Utilisée par index.html et toutes les pages produits
   ============================================================ */

:root {
  --sage: #7C8B6F;
  --sage-light: #9DAE8E;
  --sage-dark: #5E6B54;
  --sage-pale: #E8EDE3;
  --cream: #F5F1EB;
  --cream-warm: #EDE8E0;
  --white: #FFFFFF;
  --text-dark: #2C3328;
  --text-muted: #6B7566;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo img { height: 40px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.4s;
}
.navbar.scrolled .logo-text { color: var(--sage-dark); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--white);
  font-weight: 500; font-size: 0.85rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--sage);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.mobile-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}
.navbar.scrolled .mobile-menu-btn span { background: var(--text-dark); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Pages internes (produits) : navbar toujours solide */
body.inner .navbar {
  background: rgba(245, 241, 235, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
body.inner .navbar .logo-text { color: var(--sage-dark); }
body.inner .navbar .nav-links a { color: var(--text-dark); }
body.inner .navbar .mobile-menu-btn span { background: var(--text-dark); }

/* ---------- HERO (accueil) ---------- */
.hero {
  position: relative; width: 100%; min-height: 100vh;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero.jpg') center/cover no-repeat;
  background-image: -webkit-image-set(url('hero.webp') type('image/webp'), url('hero.jpg') type('image/jpeg'));
  background-image: image-set(url('hero.webp') type('image/webp'), url('hero.jpg') type('image/jpeg'));
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(44,51,40,0.35) 0%,
    rgba(44,51,40,0.12) 30%,
    rgba(44,51,40,0.38) 58%,
    rgba(44,51,40,0.55) 82%,
    rgba(245,241,235,0.98) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  color: var(--white); max-width: 800px;
  margin: 0 auto; padding: 0 1.5rem 8rem;
}
.hero-tag {
  font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; opacity: 0.95;
  margin-bottom: 1.2rem; font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  opacity: 0.95; max-width: 500px;
  margin: 0 auto 2rem; line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--sage); color: var(--white);
  text-decoration: none; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  font-size: 0.8rem; border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--sage); cursor: pointer;
}
.btn-primary:hover {
  background: transparent; color: var(--white);
  border-color: var(--white); transform: translateY(-2px);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  max-width: 1400px; margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 4rem); }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark); margin-bottom: 0.8rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}

/* ---------- GRILLE PRODUITS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.product-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
  text-decoration: none; color: inherit; display: block;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.product-image {
  position: relative; height: clamp(320px, 45vw, 450px);
  overflow: hidden; background: var(--cream-warm);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(44,51,40,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-order {
  padding: 0.8rem 2rem; background: var(--white);
  color: var(--sage-dark); text-decoration: none;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 0.75rem;
  border-radius: 50px; transform: translateY(10px);
  transition: all 0.3s ease; border: none; cursor: pointer;
}
.product-card:hover .btn-order { transform: translateY(0); }
.btn-order:hover { background: var(--sage); color: var(--white); }
.product-info { padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2vw, 2rem); }
.product-tag {
  display: inline-block; padding: 0.3rem 0.8rem;
  background: var(--cream-warm); color: var(--sage-dark);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 20px; margin-bottom: 0.8rem;
}
.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 0.5rem; color: var(--text-dark);
}
.product-info .indication {
  color: var(--text-muted);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  line-height: 1.6; margin-bottom: 0.8rem;
}
.product-price { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; color: var(--sage-dark); }
.product-price span {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 400; text-decoration: line-through; margin-left: 0.5rem;
}
.product-meta { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }
.product-meta .badge {
  display: inline-flex; align-items: center; gap: 0.2rem;
  font-size: 0.7rem; color: var(--sage); font-weight: 500;
}

/* ============================================================
   PAGE PRODUIT DÉDIÉE
   ============================================================ */
.product-page {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.breadcrumb a { color: var(--sage-dark); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Galerie */
.product-gallery { position: sticky; top: 6rem; }
.gallery-main {
  background: var(--cream-warm); border-radius: 20px;
  overflow: hidden; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 0.7rem; margin-top: 1rem; flex-wrap: wrap; }
.gallery-thumbs img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.3s ease;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active {
  border-color: var(--sage);
}
/* Placeholder image (en attente du lien Cloudinary) */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem;
  background: repeating-linear-gradient(45deg, var(--cream-warm), var(--cream-warm) 20px, var(--sage-pale) 20px, var(--sage-pale) 40px);
  color: var(--sage-dark); text-align: center; padding: 2rem;
}
.img-placeholder .ph-emoji { font-size: 3rem; }
.img-placeholder .ph-text { font-weight: 700; letter-spacing: 1px; }
.img-placeholder .ph-hint { font-size: 0.8rem; color: var(--text-muted); max-width: 220px; }

/* Résumé produit */
.product-summary { padding-top: 0.5rem; }
.summary-tag {
  display: inline-block; padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 20px; width: fit-content; margin-bottom: 1rem;
}
.product-summary h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--text-dark); line-height: 1.15; margin-bottom: 1rem;
}
.summary-price { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.summary-price .current { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: var(--sage-dark); }
.summary-price .old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.summary-price .discount { background: #E74C3C; color: white; padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.short-desc { color: var(--text-muted); line-height: 1.7; font-size: 1rem; margin-bottom: 1.5rem; }

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; background: #25D366; color: white;
  text-decoration: none; font-weight: 700; letter-spacing: 1px;
  border-radius: 50px; transition: all 0.3s; font-size: 0.85rem;
  border: none; cursor: pointer;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
.btn-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2rem; background: var(--cream-warm); color: var(--text-dark);
  text-decoration: none; font-weight: 700; letter-spacing: 1px;
  border-radius: 50px; transition: all 0.3s; font-size: 0.85rem;
  border: 2px solid var(--cream-warm);
}
.btn-phone:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

.meta-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.meta-badge {
  padding: 0.4rem 0.8rem; background: var(--cream-warm);
  border-radius: 20px; font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
}
.meta-badge.warning { background: #FEF3C7; color: #92400E; }

/* Contenu long (sous le résumé) */
.product-content {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 820px;
}
.content-card {
  background: var(--white); border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: 0 6px 30px rgba(0,0,0,0.05);
}
.content-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-dark); margin-bottom: 1rem;
}
.long-text { color: var(--text-muted); line-height: 1.8; font-size: 0.98rem; text-align: justify; }
.long-text p { margin-bottom: 1rem; }
.long-text p:last-child { margin-bottom: 0; }
.long-text strong { color: var(--sage-dark); }

.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.benefits-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--text-dark); font-size: 0.95rem; }
.benefits-list .check {
  width: 24px; height: 24px; background: var(--sage); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.posologie-box {
  background: var(--sage-pale); padding: 1.4rem;
  border-radius: 14px; border-left: 4px solid var(--sage);
}
.posologie-box h2 { margin-bottom: 0.6rem; }
.posologie-box p { color: var(--sage-dark); line-height: 1.7; }
.posologie-box strong { color: var(--sage-dark); }

/* Bandeau retour boutique */
.back-shop {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); text-align: center;
}
.back-shop a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--sage-dark); text-decoration: none; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; font-size: 0.8rem;
  padding: 0.9rem 2rem; border: 2px solid var(--sage); border-radius: 50px;
  transition: all 0.3s;
}
.back-shop a:hover { background: var(--sage); color: var(--white); }

/* ---------- PAGE À PROPOS ---------- */
.about-hero { max-width: 820px; margin: 0 auto clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.about-hero .summary-tag { margin: 0 auto 1rem; }
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark); line-height: 1.15; margin-bottom: 1rem;
}
.about-lead { color: var(--text-muted); line-height: 1.8; font-size: clamp(1rem, 1.6vw, 1.1rem); }
.product-content { margin-left: auto; margin-right: auto; }

/* ---------- BANNIÈRE WHATSAPP ---------- */
.whatsapp-banner {
  background: var(--sage-dark);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem);
  position: relative; overflow: hidden;
}
.whatsapp-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 30px 30px;
}
.whatsapp-content {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2rem); position: relative;
  z-index: 2; max-width: 1400px; margin: 0 auto; flex-wrap: wrap;
}
.whatsapp-icon {
  width: clamp(50px, 8vw, 60px); height: clamp(50px, 8vw, 60px);
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.whatsapp-icon svg { width: clamp(26px, 4vw, 32px); height: clamp(26px, 4vw, 32px); fill: white; }
.whatsapp-text { text-align: left; }
.whatsapp-text h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.3rem; }
.whatsapp-text p { color: rgba(255,255,255,0.8); font-size: clamp(0.85rem, 1.5vw, 0.95rem); }
.whatsapp-btn {
  padding: 0.9rem 2rem; background: #25D366; color: white;
  text-decoration: none; font-weight: 700; letter-spacing: 1px;
  border-radius: 50px; transition: all 0.3s;
  white-space: nowrap; font-size: clamp(0.75rem, 1.5vw, 0.85rem);
}
.whatsapp-btn:hover { background: #128C7E; transform: translateY(-2px); }

/* ---------- GALERIE BIEN-ÊTRE ---------- */
.wellness-gallery-section { padding: clamp(3rem, 5vw, 5rem) 0; background: var(--cream-warm); overflow: hidden; }
.wellness-gallery-header { text-align: center; margin-bottom: clamp(2rem, 3vw, 3rem); padding: 0 1.5rem; }
.wellness-gallery-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text-dark); }
.wellness-gallery-header p { color: var(--text-muted); margin-top: 0.5rem; font-size: clamp(0.85rem, 1.5vw, 1rem); }
.wellness-scroll-wrapper { overflow: hidden; width: 100%; }
.wellness-scroll-container {
  display: flex; gap: clamp(1rem, 2vw, 2rem);
  padding: 1rem clamp(1rem, 4vw, 4rem);
  animation: scroll 35s linear infinite; width: max-content;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.wellness-card {
  flex-shrink: 0; width: clamp(220px, 28vw, 300px);
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.wellness-card:hover { transform: translateY(-6px); }
.wellness-card img { width: 100%; height: clamp(160px, 22vw, 200px); object-fit: cover; }
.wellness-card-caption { padding: 1rem 1.2rem 1.2rem; text-align: center; }
.wellness-card-caption h4 { font-family: 'Playfair Display', serif; font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: var(--text-dark); margin-bottom: 0.3rem; }
.wellness-card-caption p { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- BÉNÉFICES ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.5rem, 3vw, 3rem); text-align: center;
}
.benefit-item { padding: clamp(1rem, 2vw, 2rem); }
.benefit-icon {
  width: clamp(55px, 8vw, 70px); height: clamp(55px, 8vw, 70px);
  background: var(--cream-warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: clamp(1.4rem, 3vw, 1.8rem);
}
.benefit-item h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 0.6rem; }
.benefit-item p { color: var(--text-muted); font-size: clamp(0.85rem, 1.5vw, 0.95rem); line-height: 1.6; }

/* ---------- FOOTER ---------- */
.footer { background: var(--text-dark); color: var(--cream); padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem); text-align: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.8rem; letter-spacing: 3px; }
.footer > p:first-of-type { opacity: 0.7; font-size: clamp(0.85rem, 1.5vw, 0.9rem); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--cream); text-decoration: none; opacity: 0.7; transition: opacity 0.3s; font-size: clamp(0.75rem, 1.2vw, 0.85rem); letter-spacing: 1px; text-transform: uppercase; }
.footer-links a:hover { opacity: 1; }
.footer-phones { margin: 1rem 0; font-size: clamp(0.85rem, 1.5vw, 0.95rem); opacity: 0.8; }
.footer-phones a { color: var(--cream); text-decoration: none; margin: 0 0.5rem; }
.copyright { opacity: 0.5; font-size: clamp(0.75rem, 1.2vw, 0.8rem); margin-top: 1rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .gallery-main { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(245, 241, 235, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center; align-items: center;
    gap: 2rem; z-index: 999;
  }
  .nav-links.mobile-open a { color: var(--text-dark); font-size: 1.2rem; }
  .hero-content { padding-bottom: 5rem; }
  .whatsapp-content { flex-direction: column; text-align: center; }
  .whatsapp-text { text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .btn-whatsapp, .btn-phone { width: 100%; justify-content: center; }
  .wellness-scroll-container { animation-duration: 25s; }
}
@media (max-width: 480px) {
  .navbar { padding: 1rem; }
  .navbar.scrolled { padding: 0.7rem 1rem; }
  .hero-content { padding-bottom: 4rem; }
  .btn-primary { padding: 0.8rem 1.8rem; font-size: 0.75rem; }
  .product-image { height: 380px; }
  .wellness-card { width: 200px; }
  .wellness-card img { height: 150px; }
}
