/* ============================================================
   Z & D Event V4 — Design System
   Palette : #f7f2ea · #201a16 · #b89252
   Fonts   : Cormorant Garamond (titres) + Inter (corps)
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --bg:        #f7f2ea;
  --bg-soft:   #fbf8f3;
  --bg-warm:   #f4ede3;
  --panel:     rgba(255,255,255,0.82);
  --panel-sm:  rgba(255,255,255,0.60);
  --text:      #201a16;
  --muted:     #6c6257;
  --subtle:    #9e9088;
  --line:      rgba(77,57,34,0.12);
  --line-sm:   rgba(77,57,34,0.07);
  --gold:      #b89252;
  --gold-dark: #9a773c;
  --gold-pale: rgba(184,146,82,0.12);
  --gold-glow: rgba(184,146,82,0.28);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:    72px;
  --max-w:    1220px;

  --r-xl:   30px;
  --r-lg:   22px;
  --r-md:   16px;
  --r-sm:   10px;
  --r-pill: 999px;

  --shadow:    0 18px 50px rgba(58,38,18,0.12);
  --shadow-sm: 0 10px 22px rgba(46,29,15,0.07);
  --shadow-xs: 0 4px 12px rgba(46,29,15,0.06);
  --shadow-gold: 0 14px 30px rgba(167,124,60,0.26);

  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --t:    all 0.28s var(--ease);
  --t-fast: all 0.18s var(--ease);

  --animate-duration: 0.7s;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; }

html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184,146,82,0.15), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(184,146,82,0.12), transparent 20%),
    linear-gradient(180deg, #f8f4ee 0%, #f5efe7 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--max-w) !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: .95;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

h1 { font-size: clamp(52px,6vw,84px); }
h2 { font-size: clamp(38px,4.2vw,60px); }
h3 { font-size: clamp(24px,2.8vw,34px); }
h4 { font-family:var(--sans); font-size:1rem; font-weight:600; letter-spacing:0; }

p { max-width:70ch; line-height:1.7; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; transition:var(--t-fast); }
ul { list-style:none; padding:0; margin:0; }
button { cursor:pointer; font-family:var(--sans); border:none; background:none; }
input,select,textarea { font-family:var(--sans); }

/* ============================================================
   3. SCROLL ANIMATIONS
   ============================================================ */
[data-anim] { opacity:0; }
[data-anim].visible,
[data-anim].animate__animated { opacity:1; }

/* ============================================================
   4. EYEBROW LABEL
   ============================================================ */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow::before,
.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(184,146,82,0.55);
  flex-shrink: 0;
}

/* ============================================================
   5. SECTION LAYOUT
   ============================================================ */
.section { padding: 72px 0; }
.section--sm  { padding: 48px 0; }
.section--xs  { padding: 32px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.75;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(38px,4.2vw,60px);
  font-weight: 600;
  color: var(--text);
  line-height: .95;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.section-header {
  margin-bottom: 48px;
}
.section-header .section-label { margin-bottom:12px; }
.section-cta { text-align:center; margin-top:44px; }

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary, .btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .btn-gold:hover {
  box-shadow: 0 18px 38px rgba(167,124,60,0.34);
  color: #fff;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.70);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}

.btn-outline, .btn-outline-gold {
  color: var(--gold-dark);
  background: transparent;
  border-color: rgba(184,146,82,0.40);
}
.btn-outline:hover, .btn-outline-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-dark:hover {
  background: #100c09;
  color: #fff;
  box-shadow: 0 14px 32px rgba(32,26,22,0.25);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1eb356;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
}

.btn-sm  { padding: 10px 18px; font-size: 12px; }
.btn-lg  { padding: 16px 28px; font-size: 15px; }
.btn-xl  { padding: 18px 36px; font-size: 15px; }
.btn-icon { width:44px; height:44px; padding:0; border-radius:50%; }

/* ============================================================
   7. INFO BAR (topbar)
   ============================================================ */
.info-bar {
  border-bottom: 1px solid rgba(77,57,34,0.08);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 50;
}
.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  gap: 20px;
  font-size: 12.5px;
  color: var(--muted);
  flex-wrap: wrap;
}
.info-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.info-bar-inner a {
  color: var(--text);
  font-weight: 500;
}
.info-bar-inner a:hover { color: var(--gold-dark); }
.info-bar-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gold-dark) !important;
  font-weight: 600 !important;
}
.info-bar-wa:hover { opacity: .8; }
.info-bar-hours { color: var(--muted); }
.info-bar-wa-wrap { margin-left: auto; }

/* ============================================================
   8. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,242,234,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(77,57,34,0.07);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar-scrolled {
  background: rgba(247,242,234,0.96);
  box-shadow: 0 4px 20px rgba(58,38,18,0.10);
}
.navbar-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: left;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-dark); }
.nav-link.active { color: var(--gold-dark); font-weight: 600; }
.nav-cta {
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.nav-cta::after { display:none; }
.nav-cta:hover { opacity:.9; color:#fff !important; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.60);
  color: var(--text);
  transition: var(--t-fast);
}
.cart-btn:hover {
  background: rgba(255,255,255,0.90);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.cart-count.has-items { opacity:1; transform:scale(1); }
@keyframes cartBounce {
  0%,100% { transform:scale(1); }
  40%      { transform:scale(1.35); }
}
.cart-count.bounce { animation: cartBounce 0.4s var(--ease); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.60);
  cursor: pointer;
  padding: 10px;
  transition: var(--t-fast);
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.navbar-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(251,248,243,0.97);
  backdrop-filter: blur(16px);
  padding: 20px 24px 32px;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 39;
}
.navbar-nav.open .nav-link {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 16px;
}
.navbar-nav.open .nav-link:hover { background: var(--gold-pale); }
.navbar-nav.open .nav-cta { text-align:center; margin-top:8px; }

/* ============================================================
   9. CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,26,22,0.45);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--ease);
}
.cart-drawer-overlay.open { opacity:1; pointer-events:all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(58,38,18,0.14);
  display: flex;
  flex-direction: column;
  z-index: 901;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
}
.cart-drawer-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t-fast);
}
.cart-drawer-close:hover { color:var(--text); background:rgba(255,255,255,0.95); }
.cart-drawer-body { flex:1; overflow-y:auto; padding:20px 24px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 16px;
  color: var(--muted);
}
.cart-empty svg { opacity:.35; }
.cart-empty p { font-size:14px; line-height:1.65; max-width:none; }
.cart-empty a { color:var(--gold-dark); font-weight:600; }
.cart-items { display:flex; flex-direction:column; gap:14px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: var(--bg-warm);
}
.cart-item-info { flex:1; min-width:0; }
.cart-item-name { font-size:13px; font-weight:600; color:var(--text); margin-bottom:3px; line-height:1.35; }
.cart-item-price { font-size:13px; color:var(--gold-dark); font-weight:600; }
.cart-item-controls { display:flex; flex-direction:column; align-items:flex-end; gap:8px; flex-shrink:0; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  transition: var(--t-fast);
}
.cart-qty-btn:hover { background:var(--gold-pale); color:var(--gold-dark); }
.cart-item-qty span { font-size:13px; font-weight:600; padding:0 6px; min-width:22px; text-align:center; color:var(--text); }
.cart-item-remove {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  color: var(--subtle);
  transition: var(--t-fast);
}
.cart-item-remove:hover { color:#c0392b; background:rgba(192,57,43,0.08); }
.cart-drawer-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.70);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.cart-total-amount {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
}
.hero-left { display:flex; flex-direction:column; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px,6vw,84px);
  font-weight: 600;
  color: var(--text);
  line-height: .95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 11ch;
}
.hero-title em { font-style:italic; color:var(--gold-dark); }
.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--line);
  min-width: 160px;
  box-shadow: var(--shadow-xs);
}
.trust-item strong { display:block; font-size:17px; font-weight:700; color:var(--text); margin-bottom:2px; }
.trust-item span { color:var(--muted); font-size:12px; line-height:1.4; }

/* Hero visual — floating cards */
.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  background: var(--bg-warm);
  border: 1px solid rgba(255,255,255,0.60);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card.large {
  inset: 0 110px 110px 0;
}
.hero-card.medium {
  width: 230px;
  height: 290px;
  right: 0;
  top: 50px;
}
.hero-card.small {
  width: 250px;
  height: 190px;
  right: 30px;
  bottom: 0;
}
.floating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  padding: 16px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  max-width: 230px;
  border: 1px solid rgba(255,255,255,0.80);
}
.floating-badge strong { display:block; font-size:13.5px; font-weight:700; color:var(--text); margin-bottom:4px; line-height:1.35; }
.floating-badge span { color:var(--muted); font-size:12.5px; line-height:1.5; }

/* Legacy hero support (dark hero bg for inner pages) */
.hero-bg { display:none; }
.hero-overlay { display:none; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-badge::before {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(184,146,82,0.55);
}
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 24px;
}
.hero-trust span { display:inline-flex; align-items:center; gap:5px; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-scroll { display:none; }

/* ============================================================
   11. TRUST BAR
   ============================================================ */
.trust-bar {
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--line-sm);
  border-bottom: 1px solid var(--line-sm);
  backdrop-filter: blur(8px);
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar .trust-item {
  border: none;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  min-width: auto;
}
.trust-bar .trust-item svg { color: var(--gold-dark); flex-shrink:0; }
.trust-bar .trust-item:last-child { border-right:none; }
.trust-bar .trust-item strong { display:inline; font-size:inherit; }
.trust-bar .trust-item span { font-size:inherit; color:inherit; }

/* ============================================================
   12. STATS STRIP
   ============================================================ */
.stats-strip {
  background: rgba(255,255,255,0.42);
  border-top: 1px solid var(--line-sm);
  border-bottom: 1px solid var(--line-sm);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,48px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   13. HERO SEARCH BAR
   ============================================================ */
.hero-search-bar {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 28px;
}
.hero-search-inner {
  display: flex;
  align-items: stretch;
  height: 72px;
}
.hero-search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  border-right: 1px solid var(--line);
}
.hero-search-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 2px;
}
.hero-search-input {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  width: 100%;
  padding: 0;
}
.hero-search-input::placeholder { color: var(--subtle); }
select.hero-search-input { cursor:pointer; appearance:none; }
.hero-search-btn {
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.hero-search-btn:hover { opacity:.9; }

/* ============================================================
   14. EVENT TYPES SECTION
   ============================================================ */
.event-types-section { background: transparent; }
.event-types-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.event-type-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  background-image: var(--et-bg,none);
  background-size: cover;
  background-position: center;
}
.event-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.event-type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.62) 100%);
}
.event-type-content {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: #fff;
}
.event-type-icon { font-size: 28px; display:block; margin-bottom:8px; }
.event-type-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.event-type-count {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
  margin-bottom: 10px;
  display:block;
}
.event-type-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding-bottom: 3px;
  display: inline-block;
}

/* ============================================================
   15. CATEGORY CARDS
   ============================================================ */
.categories-section { background: transparent; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  text-decoration: none;
  padding: 28px;
}
.cat-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: rgba(184,146,82,0.30);
}
.cat-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.cat-card-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.cat-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}
/* Category cards with image (event-type style) */
.cat-card.with-image {
  color: #fff;
  min-height: 290px;
  padding: 0;
}
.cat-card.with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.58) 100%);
}
.cat-card.with-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform .5s var(--ease);
}
.cat-card.with-image:hover img { transform:scale(1.06); }
.cat-card.with-image .cat-card-inner {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
}
.cat-card.with-image .cat-card-name { color:#fff; margin-bottom:8px; }
.cat-card.with-image .cat-card-desc { color:rgba(255,255,255,0.84); margin-bottom:14px; }
.cat-link { color:#fff; font-weight:600; font-size:14px; border-bottom:1px solid rgba(255,255,255,0.60); padding-bottom:3px; }

/* ============================================================
   16. PRODUCT CARDS
   ============================================================ */
.products-section { background: transparent; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.product-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}
.product-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  border-color: rgba(184,146,82,0.25);
}
.product-card-img-wrap,
.product-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--bg-warm);
}
.product-card-img-wrap img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-card-img-wrap img,
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge,
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* Quick-add overlay */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32,26,22,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.product-card-img-wrap:hover .product-card-overlay { opacity:1; }
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: none;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t-fast);
  transform: translateY(6px);
  transition: transform .25s var(--ease), background .2s, color .2s;
}
.product-card-img-wrap:hover .btn-add-cart { transform: translateY(0); }
.btn-add-cart:hover, .btn-add-cart.added {
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff;
}

.product-card-body,
.product-body {
  padding: 18px;
}
.product-cat {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.product-name,
.product-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-name a { color:inherit; text-decoration:none; }
.product-name a:hover { color:var(--gold-dark); }
.product-desc,
.product-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: none;
  min-height: 42px;
}
.product-footer,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.product-price,
.price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price small { font-size:13px; color:var(--muted); font-weight:500; }
.product-actions {
  display: flex;
  gap: 8px;
}
.product-actions .btn {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
}

/* ============================================================
   17. PACKS SECTION
   ============================================================ */
.packs-section { background: transparent; }
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.pack-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--t);
}
.pack-card:hover { box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.pack-featured {
  border-color: var(--gold);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 20px 44px rgba(184,146,82,0.18);
}
.pack-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pack-header { display:flex; flex-direction:column; gap:8px; }
.pack-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pack-desc { font-size:14px; color:var(--muted); line-height:1.65; margin:0; max-width:none; }
.pack-price { display:flex; align-items:baseline; gap:6px; margin-top:4px; }
.pack-price-from { font-size:12px; color:var(--muted); font-weight:500; }
.pack-price-amount { font-family:var(--serif); font-size:36px; font-weight:700; color:var(--gold-dark); letter-spacing:-0.03em; line-height:1; }
.pack-items { display:flex; flex-direction:column; gap:8px; flex:1; }
.pack-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-sm);
}
.pack-items li:last-child { border-bottom:none; }
.pack-items li svg { color:var(--gold); flex-shrink:0; margin-top:2px; }
.pack-cta { margin-top: auto; }

/* ============================================================
   18. GALLERY SECTION (dark bg — inspiration)
   ============================================================ */
.gallery-section {
  background: var(--text);
  padding: 80px 0;
}
.gallery-section .section-label,
.gallery-section .eyebrow { color:rgba(184,146,82,0.90); }
.gallery-section .section-label::before,
.gallery-section .eyebrow::before { background:rgba(184,146,82,0.45); }
.gallery-section .section-title { color:#fff; }
.gallery-section .section-sub { color:rgba(255,255,255,0.60); }
.gallery-section .section-head p { color:rgba(255,255,255,0.60); }
.gallery-section .btn-gold,
.gallery-section .btn-primary {
  background: linear-gradient(135deg, #c9a15d 0%, #a77c3c 100%);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: zoom-in;
  background: rgba(255,255,255,0.06);
}
.gallery-item:first-child { grid-column:span 2; aspect-ratio:16/9; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); display:block; }
.gallery-item:hover img { transform:scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .28s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay span { color:#fff; font-size:13px; font-weight:600; }

/* ============================================================
   19. SIM TEASER
   ============================================================ */
.sim-teaser-section { background: transparent; }
.sim-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  box-shadow: var(--shadow-sm);
}
.sim-teaser-content .section-title { font-size:clamp(32px,3.5vw,50px); margin-bottom:14px; }
.sim-teaser-content .section-sub   { margin-bottom:28px; }
.sim-teaser-card {
  background: linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sim-teaser-steps { display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.sim-teaser-step {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--muted);
  background: rgba(255,255,255,0.50);
  border: 1px solid var(--line-sm);
  font-weight: 500;
}
.sim-teaser-step.active {
  background: var(--gold-pale);
  border-color: rgba(184,146,82,0.30);
  color: var(--gold-dark);
  font-weight: 700;
}
.sim-teaser-result {
  background: rgba(32,26,22,0.06);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   20. WHY / REASSURANCE SECTION
   ============================================================ */
.why-section { background: transparent; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.why-item {
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}
.why-item:hover { box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,82,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.why-item h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.3;
}
.why-item p { font-size:14px; color:var(--muted); line-height:1.7; margin:0; max-width:none; }

/* ============================================================
   21. TESTIMONIALS
   ============================================================ */
.testi-section { background: transparent; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.testi-card {
  background: linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--t);
}
.testi-card:hover { box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.testi-stars { color:var(--gold); font-size:15px; letter-spacing:2px; }
.testi-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
  max-width: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-sm);
  padding-top: 14px;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,82,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.testi-author strong { font-size:14px; font-weight:700; color:var(--text); display:block; }
.testi-author span { font-size:12px; color:var(--muted); }

/* Client logos */
.client-logos { margin-top: 56px; }
.client-logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--subtle);
  margin-bottom: 22px;
}
.client-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.client-logo-item {
  padding: 12px 20px;
  background: rgba(255,255,255,0.60);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   22. FAQ
   ============================================================ */
.faq-section { background: transparent; }
.faq-list { max-width: 760px; margin: 0 auto; display:flex; flex-direction:column; gap:0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { color:var(--gold); flex-shrink:0; transition:transform .3s var(--ease); }
.faq-item.open .faq-icon { transform:rotate(180deg); }
.faq-answer { overflow: hidden; }
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: none;
}

/* ============================================================
   23. DEVIS FORM
   ============================================================ */
.devis-section { background: transparent; }
.devis-form-card,
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.75) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  max-width: 820px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.form-group label span { color:var(--gold-dark); }
.form-group input,
.form-group select,
.form-group textarea,
.field,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.field:focus { border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-pale); }
textarea { min-height: 120px; resize: vertical; }
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}
.form-note { font-size:12px; color:var(--subtle); font-weight:500; }
.form-card .btn { margin-top:14px; width:100%; }

/* ============================================================
   24. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--text);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(28px,3.5vw,48px);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-band-sub { font-size:15px; color:rgba(255,255,255,0.60); line-height:1.65; margin:0; max-width:none; }
.cta-band-actions { display:flex; gap:12px; flex-wrap:wrap; align-items:center; flex-shrink:0; }

/* ============================================================
   25. PROOF / SOCIAL PROOF SECTION
   ============================================================ */
.proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.proof-card,
.quote-wall,
.contact-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.proof-card { padding: 36px 32px; }
.proof-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
  margin-top: 26px;
}
.proof-item {
  padding: 18px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line-sm);
}
.proof-item strong { display:block; margin-bottom:5px; font-size:15px; font-weight:700; color:var(--text); }
.proof-item span { color:var(--muted); font-size:13px; line-height:1.55; }

.quote-wall {
  padding: 24px;
  display: grid;
  gap: 14px;
}
.quote-big,
.quote-small {
  padding: 22px;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #fffdfb 0%, #f8f3ec 100%);
  border: 1px solid var(--line-sm);
}
.quote-big p,
.quote-small p { margin:0 0 12px; font-size:15px; color:var(--text); line-height:1.7; font-style:italic; max-width:none; }
.quote-name { font-weight:700; font-size:14px; color:var(--text); }
.quote-role { color:var(--muted); font-size:13px; }

/* ============================================================
   26. CONTACT / DEVIS LAYOUT (2-col)
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}
.contact-card { padding: 32px; }
.contact-panel { display:flex; flex-direction:column; gap:14px; margin-top:20px; }
.contact-panel .info {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line-sm);
}
.contact-panel strong { display:block; margin-bottom:5px; font-size:14px; font-weight:700; color:var(--text); }
.contact-panel span { color:var(--muted); font-size:13.5px; }

/* ============================================================
   27. FOOTER
   ============================================================ */
.site-footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--gold-pale);
  background: rgba(255,255,255,0.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line-sm);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.footer-tagline { font-size:14px; color:var(--muted); line-height:1.75; max-width:none; margin-bottom:20px; }
.footer-contact { display:flex; flex-direction:column; gap:8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s;
}
.footer-contact-item:hover { color:var(--gold-dark); }
.footer-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-links { display:flex; flex-direction:column; gap:9px; }
.footer-links li a {
  font-size: 14px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links li a:hover { color:var(--gold-dark); }
.footer-text { font-size:13.5px; color:var(--muted); line-height:1.75; margin-bottom:14px; max-width:none; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,82,0.24);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(32,26,22,0.04);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--subtle);
  flex-wrap: wrap;
}
.footer-bottom a { color:inherit; }
.footer-bottom a:hover { color:var(--gold-dark); }
.footer-box {
  padding: 22px 26px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.58);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   28. STICKY BAR (mobile)
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 80;
  background: rgba(251,248,243,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(58,38,18,0.10);
}
.sticky-bar.show { display:flex; }
.sticky-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: var(--t-fast);
}
.sticky-bar-btn:last-child { border-right:none; }
.sticky-bar-btn:hover { color:var(--gold-dark); background:var(--gold-pale); }
.sticky-devis { color: var(--gold-dark) !important; font-weight:700; }
.sticky-wa svg { color: #25D366; }

/* ============================================================
   29. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(32,26,22,0.88);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}
.lightbox.open { opacity:1; pointer-events:all; }
.lightbox-content { position:relative; max-width:900px; width:100%; }
.lightbox-content img { border-radius:var(--r-lg); max-height:80vh; object-fit:contain; width:100%; }
.lightbox-caption { color:rgba(255,255,255,0.70); font-size:13px; text-align:center; margin-top:12px; max-width:none; }
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items:center; justify-content:center;
  transition: background .2s;
}
.lightbox-close:hover { background:rgba(255,255,255,0.22); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex; align-items:center; justify-content:center;
  transition: background .2s;
  line-height: 1;
}
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-prev:hover,
.lightbox-next:hover { background:rgba(255,255,255,0.22); }

/* ============================================================
   30. FLASH MESSAGES
   ============================================================ */
.flash-msg {
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
  cursor: pointer;
  border: 1px solid;
  max-width: none;
}
.flash-success { background:rgba(37,160,90,0.10); border-color:rgba(37,160,90,0.30); color:#1a7d45; }
.flash-error   { background:rgba(192,57,43,0.10); border-color:rgba(192,57,43,0.25); color:#c0392b; }
.flash-msg.fade-out { opacity:0; transition:opacity .5s; }

/* ============================================================
   31. PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: rgba(255,255,255,0.52);
  border-bottom: 1px solid var(--line);
  padding: 52px 0 44px;
  backdrop-filter: blur(8px);
}
.page-banner-title {
  font-family: var(--serif);
  font-size: clamp(32px,4.5vw,56px);
  font-weight: 600;
  color: var(--text);
  line-height: .95;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-banner-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 60ch;
}

/* ============================================================
   32. CATALOGUE PAGE
   ============================================================ */
.catalogue-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 52px 0 80px;
  align-items: start;
}
.cat-sidebar { position:sticky; top:calc(var(--nav-h) + 20px); }
.cat-sidebar-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 14px;
}
.cat-sidebar-list { display:flex; flex-direction:column; gap:2px; }
.cat-sidebar-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--t-fast);
  background: transparent;
}
.cat-sidebar-list li a:hover { background:var(--gold-pale); color:var(--gold-dark); }
.cat-sidebar-list li a.active { background:var(--gold-pale); color:var(--gold-dark); font-weight:700; border-left:2px solid var(--gold); padding-left:12px; }
.cat-sidebar-list li a span { font-size:11px; background:rgba(184,146,82,0.14); color:var(--gold-dark); border-radius:var(--r-pill); padding:2px 8px; font-weight:600; }
.catalogue-main { }
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.search-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.80);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color:var(--gold); }
.search-btn { padding:13px 22px; border-radius:var(--r-md); }
.catalogue-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.empty-state {
  text-align: center;
  padding: 56px 24px;
  color: var(--muted);
  background: rgba(255,255,255,0.50);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.empty-state p { font-size:15px; margin:0 auto 20px; }
.pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.page-btn {
  padding: 9px 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  transition: var(--t-fast);
}
.page-btn:hover { background:var(--gold-pale); color:var(--gold-dark); border-color:rgba(184,146,82,0.35); }
.page-btn.active { background:linear-gradient(135deg,#c9a15d,#a77c3c); color:#fff; border-color:transparent; }

/* ============================================================
   33. SIMULATEUR PAGE
   ============================================================ */
.sim-page { padding: 52px 0 80px; }
.sim-container { max-width: 760px; margin: 0 auto; }
.sim-progress { display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:48px; }
.sim-progress-dot { width:10px; height:10px; border-radius:50%; background:var(--line); transition:background .3s, transform .3s; }
.sim-progress-dot.active { background:var(--gold); transform:scale(1.3); }
.sim-progress-dot.done { background:var(--gold-dark); }
.sim-progress-line { width:44px; height:1px; background:var(--line); }
.sim-card {
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 52px;
  box-shadow: var(--shadow-sm);
}
.sim-step { display:none; }
.sim-step.active { display:block; }
.sim-step-num { font-size:10px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:10px; display:block; }
.sim-step-title { font-family:var(--serif); font-size:clamp(26px,3.5vw,38px); color:var(--text); margin-bottom:8px; line-height:1.05; }
.sim-step-sub { font-size:14px; color:var(--muted); line-height:1.75; margin-bottom:30px; max-width:none; }
.sim-choices { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; }
.sim-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 22px 16px;
  background: rgba(255,255,255,0.60);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: var(--t-fast);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}
.sim-choice:hover { border-color:var(--gold); background:rgba(255,255,255,0.90); box-shadow:var(--shadow-xs); transform:translateY(-2px); }
.sim-choice.selected { border-color:var(--gold); background:var(--gold-pale); color:var(--gold-dark); font-weight:700; }
.sim-choice-icon { font-size:1.8rem; line-height:1; }
.sim-range-wrap {
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 40px;
}
.sim-range { display:flex; flex-direction:column; gap:20px; }
.sim-range-display { text-align:center; }
.sim-range-val { font-family:var(--serif); font-size:52px; font-weight:700; color:var(--gold-dark); line-height:1; display:block; letter-spacing:-0.03em; }
.sim-range-unit { font-size:11px; color:var(--muted); font-weight:700; letter-spacing:0.14em; text-transform:uppercase; display:block; margin-top:6px; }
.sim-range input[type=range] { width:100%; height:4px; border-radius:var(--r-pill); accent-color:var(--gold-dark); cursor:pointer; }
.sim-range-labels { display:flex; justify-content:space-between; font-size:11px; color:var(--muted); font-weight:600; }
.sim-contact-form { display:flex; flex-direction:column; gap:14px; margin-top:8px; }
.sim-footer-trust { display:flex; align-items:center; justify-content:center; gap:22px; flex-wrap:wrap; margin-top:44px; padding-top:28px; border-top:1px solid var(--line); font-size:13px; color:var(--muted); font-weight:500; }
.sim-footer-trust span { display:inline-flex; align-items:center; gap:6px; }
.sim-footer-trust svg { color:var(--gold); }

/* ============================================================
   34. CONFIGURATEUR PAGE
   ============================================================ */
.config-layout { display:grid; grid-template-columns:1fr 300px; gap:24px; align-items:start; padding:48px 0 80px; }
.config-items-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(185px,1fr)); gap:14px; margin-top:14px; }
.config-item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.72);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t-fast);
  position: relative;
}
.config-item:hover { border-color:var(--gold); box-shadow:var(--shadow-xs); transform:translateY(-2px); }
.config-item.selected { border-color:var(--gold); background:var(--gold-pale); }
.config-item-img { width:100%; aspect-ratio:4/3; overflow:hidden; background:var(--bg-warm); }
.config-item-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.config-item:hover .config-item-img img { transform:scale(1.05); }
.config-item-info { padding:14px; }
.config-item-name { display:block; font-size:13.5px; font-weight:600; color:var(--text); margin-bottom:4px; line-height:1.35; }
.config-item-price { display:block; font-family:var(--serif); font-size:17px; color:var(--gold-dark); font-weight:700; }
.config-item-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c9a15d,#a77c3c);
  display: flex; align-items:center; justify-content:center;
  opacity: 0;
  transition: opacity .2s;
  color: #fff;
  font-size: 12px;
}
.config-item.selected .config-item-check { opacity:1; }
.config-summary-card {
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  box-shadow: var(--shadow-sm);
}
.config-summary-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.config-summary-count { font-size:11px; font-weight:700; color:var(--muted); letter-spacing:0.06em; text-transform:uppercase; }
.config-summary-total { font-family:var(--serif); font-size:22px; font-weight:700; color:var(--gold-dark); }
.config-summary-list { display:flex; flex-direction:column; gap:7px; min-height:70px; margin-bottom:18px; }
.config-summary-empty { font-size:13px; color:var(--subtle); font-style:italic; padding:14px 0; text-align:center; }
.config-summary-list li { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; font-size:12.5px; color:var(--text); padding:5px 0; border-bottom:1px solid var(--line-sm); }
.config-summary-list li:last-child { border-bottom:none; }
.config-summary-note { font-size:11.5px; color:var(--subtle); line-height:1.6; font-style:italic; margin-top:14px; padding-top:10px; border-top:1px solid var(--line); }

/* ============================================================
   35. PRODUCT DETAIL
   ============================================================ */
.product-detail { padding: 52px 0 80px; }
.product-detail-layout { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.product-images { display:flex; flex-direction:column; gap:12px; }
.product-main-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-warm);
  border: 1px solid var(--line);
}
.product-main-img img { width:100%; height:100%; object-fit:cover; }
.product-thumbs { display:flex; gap:10px; flex-wrap:wrap; }
.product-thumb {
  width: 68px; height: 68px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: border-color .2s;
  background: var(--bg-warm);
}
.product-thumb img { width:100%; height:100%; object-fit:cover; }
.product-thumb.active,.product-thumb:hover { border-color:var(--gold); }
.product-info { display:flex; flex-direction:column; }
.product-detail-title { font-family:var(--serif); font-size:clamp(28px,3.5vw,44px); font-weight:600; color:var(--text); margin-bottom:10px; line-height:1.05; letter-spacing:-0.02em; }
.product-detail-price { font-family:var(--serif); font-size:36px; font-weight:700; color:var(--gold-dark); margin-bottom:4px; line-height:1; letter-spacing:-0.03em; }
.price-note { font-size:12px; color:var(--muted); display:block; margin-bottom:22px; font-weight:500; }
.product-short-desc { font-size:14.5px; color:var(--text); line-height:1.8; margin-bottom:22px; padding-bottom:22px; border-bottom:1px solid var(--line); max-width:none; }
.product-features { margin-bottom:26px; }
.product-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text); padding:8px 0; border-bottom:1px solid var(--line-sm); line-height:1.55; }
.product-features li:last-child { border-bottom:none; }
.product-features li::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:8px; }
.product-long-desc { font-size:13.5px; color:var(--muted); line-height:1.85; margin-bottom:26px; max-width:none; }
.product-actions { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.product-trust { display:flex; align-items:center; gap:14px; flex-wrap:wrap; font-size:12px; color:var(--muted); font-weight:600; padding-top:14px; border-top:1px solid var(--line); }
.product-trust span { display:flex; align-items:center; gap:5px; }
.product-trust svg { color:var(--gold); }
.related-section { padding:70px 0; background:rgba(255,255,255,0.40); border-top:1px solid var(--line); }
.breadcrumb { margin-bottom:18px; }
.breadcrumb-list { display:flex; align-items:center; gap:6px; flex-wrap:wrap; font-size:12px; color:var(--muted); font-weight:500; }
.breadcrumb-list a { color:var(--gold-dark); }
.breadcrumb-list a:hover { color:var(--gold); }
.breadcrumb-list span { color:var(--subtle); }

/* ============================================================
   36. MERCI & LÉGALES
   ============================================================ */
.merci-section { min-height:70vh; display:flex; align-items:center; padding:80px 0; }
.merci-container { max-width:540px; margin:0 auto; text-align:center; }
.merci-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(37,160,90,0.10);
  border: 2px solid rgba(37,160,90,0.28);
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 24px;
  color: #1a7d45;
}
.merci-title { font-family:var(--serif); font-size:clamp(28px,4vw,44px); color:var(--text); margin-bottom:14px; letter-spacing:-0.02em; }
.merci-subtitle { font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:10px; max-width:none; }
.merci-ref { font-size:12.5px; color:var(--subtle); margin-bottom:36px; font-weight:600; }
.merci-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  text-align: left;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.merci-step { display:flex; align-items:flex-start; gap:14px; font-size:13.5px; color:var(--text); line-height:1.6; }
.merci-step-num { width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,#c9a15d,#a77c3c); color:#fff; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; flex-shrink:0; }
.merci-actions { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:22px; }
.merci-urgent { font-size:13px; color:var(--muted); text-align:center; font-weight:500; max-width:none; }
.merci-urgent a { color:var(--gold-dark); }
.legal-layout { display:grid; grid-template-columns:200px 1fr; gap:44px; padding:52px 0 80px; align-items:start; }
.legal-nav { background:rgba(255,255,255,0.72); border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; position:sticky; top:calc(var(--nav-h) + 20px); }
.legal-nav-title { font-size:10px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold-dark); margin-bottom:12px; }
.legal-nav a { display:block; padding:8px 10px; font-size:13px; color:var(--muted); border-radius:var(--r-sm); transition:var(--t-fast); }
.legal-nav a:hover { background:var(--gold-pale); color:var(--gold-dark); }
.legal-section { margin-bottom:48px; padding-bottom:48px; border-bottom:1px solid var(--line); }
.legal-section:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.legal-section h2 { font-family:var(--serif); font-size:28px; color:var(--text); margin-bottom:14px; letter-spacing:-0.02em; }
.legal-section p,.legal-section li { font-size:14px; color:var(--muted); line-height:1.85; max-width:72ch; }
.legal-section li { margin-bottom:5px; }
.legal-section ul { padding-left:18px; list-style:disc; }
.legal-contact-box { background:var(--gold-pale); border:1px solid rgba(184,146,82,0.22); border-radius:var(--r-md); padding:22px 26px; display:flex; flex-direction:column; gap:8px; margin-top:18px; }
.legal-contact-box a { color:var(--gold-dark); font-weight:600; }

/* ============================================================
   37. ADMIN (dark sidebar — kept separate)
   ============================================================ */
.admin-body { background:#f4f4f0; font-family:var(--sans); color:var(--text); }
.admin-sidebar { width:252px; min-height:100vh; background:#201a16; position:fixed; top:0; left:0; z-index:100; display:flex; flex-direction:column; }
.sidebar-logo { padding:26px 22px 18px; font-family:var(--serif); font-size:1.25rem; color:#fff; border-bottom:1px solid rgba(255,255,255,0.07); }
.sidebar-logo span { color:var(--gold); }
.sidebar-nav { flex:1; padding:10px 0; overflow-y:auto; }
.sidebar-section-title { padding:16px 18px 5px; font-size:9px; font-weight:700; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.20); }
.sidebar-nav a { display:flex; align-items:center; gap:11px; padding:10px 18px; font-size:13px; font-weight:500; color:rgba(255,255,255,0.45); transition:color .2s,background .2s; text-decoration:none; }
.sidebar-nav a:hover { color:rgba(255,255,255,0.88); background:rgba(255,255,255,0.05); }
.sidebar-nav a.active { color:var(--gold); background:rgba(184,146,82,0.10); }
.sidebar-nav a svg { width:14px; height:14px; flex-shrink:0; }
.admin-main { margin-left:252px; min-height:100vh; display:flex; flex-direction:column; }
.admin-topbar { height:56px; background:#fff; border-bottom:1px solid #e8e4df; display:flex; align-items:center; justify-content:space-between; padding:0 24px; position:sticky; top:0; z-index:50; }
.admin-topbar h1 { font-family:var(--serif); font-size:1.15rem; font-weight:600; color:var(--text); }
.admin-content { padding:24px 28px; flex:1; }
.admin-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.admin-stat-card { background:#fff; border:1px solid #e8e4df; border-radius:var(--r-md); padding:20px 22px; }
.admin-stat-num { font-family:var(--serif); font-size:1.8rem; color:var(--gold-dark); margin-bottom:4px; line-height:1; }
.admin-stat-label { font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); }
.admin-table-wrap { background:#fff; border:1px solid #e8e4df; border-radius:var(--r-md); overflow:hidden; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th { padding:11px 16px; font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); background:#f8f6f3; border-bottom:1px solid #e8e4df; text-align:left; }
.admin-table td { padding:13px 16px; font-size:13.5px; border-bottom:1px solid #f2ede8; color:var(--text); }
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:#faf7f4; }
.admin-form-card { background:#fff; border:1px solid #e8e4df; border-radius:var(--r-md); padding:28px; }
.admin-form-card h2 { font-family:var(--serif); font-size:1.2rem; margin-bottom:22px; padding-bottom:14px; border-bottom:1px solid #e8e4df; }

/* ============================================================
   38. UTILITIES
   ============================================================ */
.text-center { text-align:center; }
.text-gold   { color:var(--gold-dark); }
.text-muted  { color:var(--muted); }
.text-serif  { font-family:var(--serif); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold  { background:var(--gold-pale); color:var(--gold-dark); border:1px solid rgba(184,146,82,0.22); }
.badge-dark  { background:var(--text); color:#fff; }
.badge-green { background:rgba(37,160,90,0.10); color:#1a7d45; }
.badge-red   { background:rgba(192,57,43,0.10); color:#c0392b; }
.page-hero { background:rgba(255,255,255,0.50); padding:60px 0; border-bottom:1px solid var(--line); }
.page-hero h1 { margin-bottom:10px; }
.page-hero p  { color:var(--muted); font-size:15px; }

/* ============================================================
   39. SCROLLBAR & FOCUS
   ============================================================ */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg-soft); }
::-webkit-scrollbar-thumb { background:rgba(184,146,82,0.30); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(184,146,82,0.55); }
:focus-visible { outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }
::selection { background:var(--gold-pale); color:var(--text); }

/* ============================================================
   40. KEYFRAMES
   ============================================================ */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes fadeIn     { from{opacity:0} to{opacity:1} }
@keyframes cartBounce { 0%,100%{transform:scale(1)} 40%{transform:scale(1.38)} }

/* ============================================================
   41. RESPONSIVE
   ============================================================ */
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .hero-visual { min-height:500px; }
  .hero-card.large { right:80px; }
  .hero-card.medium { width:190px; height:250px; }
  .hero-card.small  { width:200px; height:160px; right:20px; }
  .products-grid { grid-template-columns:repeat(3,1fr); }
  .event-types-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .proof { grid-template-columns:1fr; }
  .contact-wrap { grid-template-columns:1fr; }
  .admin-stats { grid-template-columns:repeat(2,1fr); }
  .sim-teaser { grid-template-columns:1fr; padding:40px 44px; }
  .sim-teaser-visual { display:none; }
}

@media (max-width: 900px) {
  .cat-grid       { grid-template-columns:repeat(2,1fr); }
  .packs-grid     { grid-template-columns:repeat(2,1fr); }
  .testi-grid     { grid-template-columns:repeat(2,1fr); }
  .why-grid       { grid-template-columns:repeat(2,1fr); }
  .gallery-grid   { grid-template-columns:repeat(2,1fr); }
  .gallery-item:first-child { grid-column:auto; aspect-ratio:4/3; }
  .legal-layout   { grid-template-columns:1fr; }
  .legal-nav      { position:static; }
  .config-layout  { grid-template-columns:1fr 280px; }
}

@media (max-width: 768px) {
  :root { --nav-h:62px; }
  .container,.container-fluid { padding-left:18px !important; padding-right:18px !important; }

  /* Info bar */
  .info-bar-inner { justify-content:flex-start; overflow-x:auto; padding:10px 0; gap:16px; }
  .info-bar-inner span { flex-shrink:0; }
  .info-bar-hours { display:none; }
  .info-bar-wa-wrap { margin-left:0; }

  /* Navbar */
  .navbar-nav { display:none; }
  .cart-btn { display:none; }
  .nav-toggle { display:flex; }

  /* Hero */
  .hero { padding: 32px 0 28px; }
  .hero-grid { grid-template-columns:1fr; gap:28px; }
  .hero-title { max-width: none; }
  .hero-visual { min-height:380px; margin-top:8px; }
  .hero-card.large  { inset:0 50px 68px 0; }
  .hero-card.medium { width:150px; height:200px; top:28px; }
  .hero-card.small  { width:170px; height:130px; right:8px; }
  .floating-badge   { left:12px; right:12px; bottom:12px; max-width:none; }
  .trust-row { display:none; }

  /* Search bar */
  .hero-search-inner { flex-wrap:wrap; height:auto; padding:14px 16px; gap:0; }
  .hero-search-field { flex:none; width:100%; padding:12px 0; border-right:none; border-bottom:1px solid var(--line); }
  .hero-search-field:last-of-type { border-bottom:none; }
  .hero-search-btn { width:100%; margin-top:14px; justify-content:center; border-radius:var(--r-md); padding:14px; }

  /* Sections */
  .section { padding:52px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:10px; }
  .section-header { margin-bottom:36px; }

  /* Grids */
  .stats-grid     { grid-template-columns:repeat(2,1fr); }
  .stat-item      { border-right:none; border-bottom:1px solid var(--line); }
  .stat-item:nth-child(odd) { border-right:1px solid var(--line); }
  .stat-item:last-child,.stat-item:nth-last-child(2) { border-bottom:none; }
  .event-types-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .cat-grid       { grid-template-columns:repeat(2,1fr); gap:12px; }
  .products-grid  { grid-template-columns:repeat(2,1fr); }
  .packs-grid     { grid-template-columns:1fr; }
  .testi-grid     { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .why-grid       { grid-template-columns:1fr; }
  .gallery-grid   { grid-template-columns:1fr; }
  .form-row,.form-grid { grid-template-columns:1fr; }
  .devis-form-card,.form-card { padding:28px 18px; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr; gap:26px; }
  .footer-bottom-inner { flex-direction:column; align-items:flex-start; gap:6px; }

  /* Sticky bar */
  .sticky-bar.show { display:flex; }

  /* Catalogue */
  .catalogue-layout { grid-template-columns:1fr; }
  .cat-sidebar { position:static; }

  /* Config & sim */
  .config-layout { grid-template-columns:1fr; }
  .config-summary-card { position:static; }
  .sim-choices { grid-template-columns:repeat(2,1fr); }
  .sim-range-wrap { padding:22px 18px; }
  .sim-card { padding:32px 22px; }

  /* Cart */
  .cart-drawer { width:100%; }

  /* Other */
  .cta-band { padding:56px 0; }
  .cta-band-inner { flex-direction:column; align-items:flex-start; }
  .product-detail-layout { grid-template-columns:1fr; }
  .sim-teaser { padding:28px 22px; }
  .admin-sidebar { display:none; }
  .admin-main { margin-left:0; }
  .admin-stats { grid-template-columns:1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: clamp(40px,11vw,54px); }
  .products-grid { grid-template-columns:1fr; }
  .event-types-grid { grid-template-columns:1fr 1fr; }
  .cat-grid { grid-template-columns:1fr 1fr; gap:10px; }
  .admin-stats { grid-template-columns:1fr; }
  .devis-form-card,.form-card { padding:22px 14px; }
  .merci-steps { padding:20px; }
  .proof-list { grid-template-columns:1fr; }
}

@media print {
  .navbar,.site-footer,.admin-sidebar,
  .trust-bar,.sticky-bar,.info-bar,
  .cart-drawer,.cart-drawer-overlay { display:none !important; }
  body { background:white; color:black; }
  .admin-main { margin-left:0; }
}
