/* ============================================
   Racines & Papilles — Complete Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/* --- Variables --- */
:root {
  --white: #ffffff;
  --off-white: #faf8f5;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd2;
  --green-50: #f0f7ef;
  --green-100: #dceeda;
  --green-200: #b5d9b0;
  --green-500: #3d8b37;
  --green-600: #2d6e28;
  --green-700: #1f5a1b;
  --green-800: #154513;
  --gold: #d4a012;
  --gold-light: #f0d060;
  --gold-dark: #a67c00;
  --brown-50: #faf6f1;
  --brown-100: #efe6d8;
  --brown-200: #d9c7ab;
  --brown-400: #a68b5b;
  --brown-600: #6b4f2d;
  --brown-800: #3d2b14;
  --brown-900: #2a1c0d;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #e5e0d8;
  --border-light: #f0ece5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10);
  --shadow-xl: 0 20px 48px rgba(0,0,0,.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; border: none; outline: none; }

/* Focus visible — accessibilité */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(45,110,40,.2);
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -.02em; }
ul { list-style: none; }

/* ============================================
   TOP BAR (horaires)
   ============================================ */

.topbar {
  background: var(--green-700);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
  max-height: 40px;
}

.topbar.closed {
  max-height: 0;
  opacity: 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

.topbar.open-now .topbar-dot { background: #6ddb70; }
.topbar.closed-now .topbar-dot { background: #ef4444; }
.topbar.closed-now { background: var(--brown-800); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-banner {
  height: 72px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}

.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-brand-text em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}

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

.nav-links a {
  position: relative;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .25s ease, background .25s ease, transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, letter-spacing .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  border-radius: 2px;
  transition: width .3s cubic-bezier(.34,1.56,.64,1), left .3s cubic-bezier(.34,1.56,.64,1);
}

.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-100);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(31, 90, 27, .15);
  letter-spacing: .3px;
}

.nav-links a:hover::after {
  width: 70%;
  left: 15%;
}

.nav-links a:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(31, 90, 27, .1);
}

.nav-links a.nav-cta {
  background: var(--green-600);
  color: white;
  font-weight: 600;
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.nav-links a.nav-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(31, 90, 27, .35);
}

.nav-links a.nav-cta:hover::before {
  left: 100%;
}

.nav-links a.nav-cta:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 2px 6px rgba(31, 90, 27, .2);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-admin-link {
  display: none;
}

.nav-admin-link:hover {
  color: var(--green-700);
  border-color: var(--green-200);
  background: var(--green-50);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,28,20,.7) 0%, rgba(20,16,10,.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 44px;
  width: 100%;
  animation: heroFadeIn 1s ease-out .2s both;
}

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

.hero-bg {
  will-change: transform;
  transition: transform .1s linear;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ddb70;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: white;
  max-width: 680px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-desc {
  max-width: 520px;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease;
  border: none;
}

.btn-primary {
  background: var(--green-600);
  color: white;
  box-shadow: 0 2px 8px rgba(45,110,40,.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s ease;
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(45,110,40,.4);
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 2px 6px rgba(45,110,40,.2);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-secondary:hover::before {
  left: 100%;
}
.btn-secondary:active {
  transform: translateY(0) scale(.97);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: var(--green-600);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .4s ease, height .4s ease;
  z-index: -1;
}
.btn-outline:hover {
  background: var(--green-600);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45,110,40,.3);
}
.btn-outline:hover::before {
  width: 300px;
  height: 300px;
}
.btn-outline:active {
  transform: translateY(0);
}

.btn-white {
  background: white;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transform: translateY(-3px) scale(1.03);
}
.btn-white:active {
  transform: translateY(0) scale(.97);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 8px 16px;
  font-size: .85rem;
  border-radius: var(--radius-sm);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-600);
  border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text);
  max-width: 600px;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 540px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   ENGAGEMENTS / BENEFITS
   ============================================ */

.benefits-section {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.benefits-header {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-header .section-label::before { display: none; }
.benefits-header .section-title { margin-left: auto; margin-right: auto; }
.benefits-header .section-desc { margin-left: auto; margin-right: auto; text-align: center; }

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

.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  border-color: var(--green-200);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-5deg);
}

.benefit-icon {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-icon.green { background: var(--green-50); }
.benefit-icon.gold { background: #fef9eb; }
.benefit-icon.brown { background: var(--brown-50); }
.benefit-icon.cream { background: #faf5ed; }

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.benefit-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PROMOTIONS
   ============================================ */

.promos-section {
  background: white;
}

.promos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

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

.promo-grid.one-item {
  grid-template-columns: minmax(280px, 480px);
  justify-content: center;
}

.promo-grid.two-items {
  grid-template-columns: repeat(2, 1fr);
}

.promo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,.15);
}

.promo-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}

.promo-card:hover .promo-card-img img {
  transform: scale(1.08);
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.85) 100%);
}

.promo-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brown-900);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.promo-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.promo-card-title {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.promo-card-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.promo-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.promo-card-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.promo-card-price .currency {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.promo-card-price .unit {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.promo-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.promo-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================
   TRUST BADGES STRIP
   ============================================ */

/* ============================================
   GOOGLE REVIEW CTA
   ============================================ */

.google-review-section {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}

.review-cta-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.review-cta-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.review-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 10px;
}

.review-cta-card p {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-cta-card .btn {
  background: linear-gradient(135deg, #4285f4, #34a853);
  box-shadow: 0 3px 10px rgba(66,133,244,.3);
  font-size: 1rem;
  padding: 16px 32px;
  letter-spacing: .3px;
}
.review-cta-card .btn:hover {
  background: linear-gradient(135deg, #3367d6, #2d9249);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 30px rgba(66,133,244,.4);
}
.review-cta-card .btn:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 2px 6px rgba(66,133,244,.2);
}

/* ============================================
   PROMO COUNTER
   ============================================ */

.promo-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.promo-counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-600);
}


/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 300px;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown-800);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  font-size: 1.2rem;
  line-height: 1;
  border: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--green-700);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* ============================================
   BOUTIQUE SECTION
   ============================================ */

.boutique-section {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
}

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

.boutique-text .section-label { margin-bottom: 12px; }
.boutique-text .section-title { margin-bottom: 16px; }

.boutique-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.boutique-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.boutique-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.boutique-feature-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.boutique-feature-text p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.boutique-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.boutique-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.boutique-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-photo.tall {
  grid-row: span 2;
}

.boutique-photo.tall img {
  min-height: 400px;
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: white;
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
  max-width: 500px;
}

.cta-band p {
  margin-top: 8px;
  color: rgba(255,255,255,.7);
  max-width: 460px;
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--brown-900);
  color: white;
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  width: 240px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.7;
  transition: color var(--transition);
}

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

.footer-col .footer-link {
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 0;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,.7);
}

/* ============================================
   MOBILE QUICK BAR
   ============================================ */

.mobile-quickbar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  background: var(--green-700);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  overflow: hidden;
}

.mobile-quickbar a {
  flex: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  font-weight: 600;
  font-size: .85rem;
  border-right: 1px solid rgba(255,255,255,.15);
}

.mobile-quickbar a:last-child { border-right: none; }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .boutique-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-admin-link { display: none; }
  .nav-logo-banner { height: 50px; }
  .nav-inner { height: 66px; }

  .hero { min-height: 440px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .promo-grid,
  .promo-grid.two-items {
    grid-template-columns: 1fr;
  }

  .promos-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .boutique-photos {
    grid-template-columns: 1fr 1fr;
  }
  .boutique-photo.tall { grid-row: span 1; }
  .boutique-photo.tall img { min-height: 220px; }

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

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mobile-quickbar { display: flex; }
  .site-footer { padding-bottom: 80px; }

  .section { padding: 48px 16px; }


  .whatsapp-fab { bottom: 76px; right: 16px; }
  .back-to-top { bottom: 140px; left: 16px; }

  .topbar { font-size: .75rem; }
  .topbar-inner { padding: 6px 12px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; height: 60px; }
  .nav-logo-banner { height: 42px; }
  .nav-brand-text { font-size: 1.1rem; }
  .hero-content { padding: 60px 16px 40px; }
  .hero-stat-value { font-size: 1.4rem; }
  .hero-stats { gap: 20px; }
  .btn { padding: 12px 20px; font-size: .9rem; }
}

/* ============================================
   ADMIN LOGIN
   ============================================ */

.login-screen {
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--brown-900) 100%) !important;
  padding: 24px;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.login-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.login-logo {
  height: 56px;
  margin: 0 auto 24px;
  display: block;
}

.login-card h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text);
}

.login-card > p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 28px;
}

.login-card .form-group {
  text-align: left;
  margin-bottom: 16px;
}

.login-card .form-input {
  width: 100%;
}

.login-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

.login-error {
  color: #dc2626;
  font-size: .85rem;
  min-height: 20px;
  margin-bottom: 4px;
}

.login-back {
  display: inline-block;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: .85rem;
  transition: color .2s;
}

.login-back:hover {
  color: var(--green-600);
}

/* ============================================
   ADMIN PANEL
   ============================================ */

.admin-body {
  min-height: 100vh;
  background: #f7f5f2;
}

/* Admin nav */
.admin-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.admin-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.admin-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.admin-nav-title {
  font-weight: 600;
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-left: 1px solid var(--border);
}

/* Admin content */
.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-page-header {
  margin-bottom: 32px;
}

.admin-page-header h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 4px;
}

.admin-page-header p {
  color: var(--text-secondary);
  font-size: .95rem;
}

/* Admin layout */
.admin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Admin card */
.admin-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

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

/* Form styles */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(61,139,55,.12);
  background: white;
}

.form-input select,
select.form-input {
  cursor: pointer;
  appearance: auto;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.auto-desc-btn {
  padding: 5px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.auto-desc-btn:hover {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(61,139,55,.3);
}

.auto-desc-btn:active {
  transform: translateY(0);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #fef9eb;
  border: 1px solid #f0d060;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown-600);
}

.form-file-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  background: var(--off-white);
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-secondary);
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.form-actions .btn {
  flex: 1;
}

/* Preview box */
.preview-box {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--off-white);
}

.preview-box-label {
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--border-light);
}

.preview-box img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Message */
.admin-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  display: none;
}

.admin-message.show {
  display: block;
}

.admin-message.success {
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
}

.admin-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Admin promo list */
.admin-promo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-promo-item {
  display: grid;
  grid-template-columns: 28px 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: white;
  transition: border-color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.admin-promo-item.dragging {
  opacity: 0.4;
}

.drag-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 40px;
  cursor: grab;
  color: var(--text-muted);
  font-size: 1.3rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.drag-handle:hover {
  color: var(--green-600);
  background: var(--green-50);
}

.drag-handle:active {
  cursor: grabbing;
}

.drag-placeholder {
  border: 2px dashed var(--green-500);
  border-radius: var(--radius-md);
  background: var(--green-50);
  min-height: 60px;
  margin: 6px 0;
  transition: height var(--transition);
}

.admin-promo-item:hover {
  border-color: var(--border);
}

.admin-promo-item.is-featured {
  border-color: var(--gold);
  background: #fffdf5;
}

.admin-promo-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.admin-promo-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.admin-promo-info p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.admin-promo-info .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--green-700);
}

.admin-promo-info .featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fef9eb;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-promo-actions {
  display: flex;
  gap: 6px;
}

.admin-btn {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.admin-btn:hover {
  background: var(--cream);
  border-color: var(--border);
}

.admin-btn.edit {
  color: var(--green-700);
  border-color: var(--green-200);
  background: var(--green-50);
}
.admin-btn.edit:hover {
  background: var(--green-100);
}

.admin-btn.star {
  color: var(--gold-dark);
  border-color: var(--gold-light);
  background: #fef9eb;
}
.admin-btn.star:hover {
  background: #fdf0c8;
}

.admin-btn.delete {
  color: #b91c1c;
  border-color: #fecaca;
  background: #fef2f2;
}
.admin-btn.delete:hover {
  background: #fee2e2;
}

/* Editing indicator */
.editing-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  margin-bottom: 18px;
}

.editing-indicator.active {
  display: flex;
}

.editing-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse-dot 1.5s ease infinite;
}

.editing-indicator span {
  font-size: .85rem;
  font-weight: 600;
  color: #1e40af;
}

/* Admin responsive */
@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-container { padding: 20px 12px; }
  .admin-nav-logo { height: 34px; }
  .admin-nav-title { font-size: .72rem; padding: 3px 8px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-promo-item {
    grid-template-columns: 24px 60px 1fr;
  }
  .admin-promo-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .drag-handle {
    width: 24px;
    font-size: 1.1rem;
  }
  .admin-page-header h1 { font-size: 1.6rem; }

  /* Touch-friendly inputs */
  .form-input,
  .form-textarea,
  select.form-input,
  .form-input[type="text"],
  .form-input[type="number"] {
    font-size: 16px !important;
    padding: 14px 16px;
    min-height: 48px;
  }

  .form-file-input {
    padding: 14px 16px;
    min-height: 48px;
    font-size: 16px !important;
  }

  /* Bigger action buttons on mobile */
  .admin-btn {
    padding: 10px 16px;
    font-size: .85rem;
    min-height: 44px;
  }

  .btn-danger,
  .btn-warning {
    padding: 12px 20px;
    font-size: .88rem;
    min-height: 44px;
    width: 100%;
  }

  .danger-zone-item {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .form-actions .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    min-height: 48px;
  }

  .form-check {
    padding: 14px 16px;
    min-height: 48px;
  }

  .auto-desc-btn {
    padding: 8px 16px;
    font-size: .82rem;
  }
}

/* Admin empty state */
.admin-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.admin-empty p {
  font-size: .95rem;
}

/* Danger zone */
.danger-zone {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px dashed #fecaca;
  background: #fef2f2;
}

.danger-zone-header {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.btn-danger {
  background: #dc2626;
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-danger:hover {
  background: #b91c1c;
}

.btn-warning {
  background: #f59e0b;
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-warning:hover {
  background: #d97706;
}

.danger-zone-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.danger-zone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.danger-zone-item p {
  font-size: .82rem;
  color: #991b1b;
  margin: 0;
}
