/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .005em;
  text-align: center;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: 1.5px solid transparent;
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover { background: #2D3A32; color: var(--surface); transform: translateY(-1px); }
.btn-wa {
  background: var(--wa-green);
  color: #FFF;
}
.btn-wa:hover { background: #1FBA59; color: #FFF; transform: translateY(-1px); }
.btn-outline {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { background: var(--text); color: var(--surface); }
.btn-ghost {
  color: var(--accent);
  background: transparent;
  padding: 12px 0;
  min-height: auto;
  text-decoration: underline;
  text-decoration-color: rgba(58,74,64,0.3);
  text-underline-offset: 4px;
}
.btn-ghost:hover { text-decoration-color: var(--accent); }

/* Cards radius-asym (LAY-6) */
.c-asym {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.c-asym:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,42,38,0.08); }
.c-asym--lead {
  background: var(--accent);
  color: var(--surface);
  border-color: var(--accent);
  border-radius: 22px 4px 22px 4px;
}
/* PIEGE PROD #10 : carte fond fonce -> tous les textes en clair */
.c-asym--lead,
.c-asym--lead :where(h1, h2, h3, h4, p, li, span, a, small) {
  color: #F3EFE7;
}

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  color: var(--accent);
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
.chip svg { width: 14px; height: 14px; }

/* Hero rating badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: .9rem;
  margin-bottom: 22px;
  transition: transform var(--t-fast);
}
.hero-rating-badge:hover { transform: translateY(-1px); }
.hero-rating-badge strong { font-weight: 600; }
.hero-rating-badge .stars { display: inline-flex; gap: 2px; color: #C9A24B; }
.hero-rating-badge .stars svg { width: 14px; height: 14px; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { min-width: 0; display: flex; flex-direction: column; }
.field label {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--t-fast);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Modal mentions legales */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.55);
  backdrop-filter: blur(2px);
}
.ml-box {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.ml-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
}
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.ml-box h3 {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  color: var(--accent);
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}
.ml-box p { font-size: .9rem; line-height: 1.6; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(20, 18, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb-image {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #FFF;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* Badge open-now */
.open-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(58, 74, 64, 0.08);
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
.open-now .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6B8068;
  box-shadow: 0 0 0 3px rgba(107, 128, 104, 0.18);
}
.open-now.is-closed .dot { background: #B4564B; box-shadow: 0 0 0 3px rgba(180, 86, 75, 0.18); }
