/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.97rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(46, 91, 62, 0.28);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 22%, transparent);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.88rem;
  min-height: 40px;
}

/* CHIPS / BADGES */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent-dark);
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
}
.chip svg { width: 14px; height: 14px; }

/* RATING BADGE hero */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(46, 40, 32, 0.05);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.rating-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 40, 32, 0.08);
}
.rating-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--star);
}
.rating-stars svg { width: 15px; height: 15px; }
.rating-badge strong { font-weight: 600; }
.rating-badge .dot { color: var(--text-mute); }

/* CARD : LAY-1 = card "line" (bord seul) */
.c-line {
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.c-line:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  box-shadow: 0 12px 28px rgba(46, 40, 32, 0.08);
}

/* 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(31, 36, 24, 0.6);
  backdrop-filter: blur(2px);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  max-width: 520px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.ml-box h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-family: var(--ff-display);
}
.ml-box h3 {
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 18px;
  margin-bottom: 6px;
  font-family: var(--ff-ui);
  font-weight: 600;
}
.ml-box p { font-size: 0.92rem; line-height: 1.65; }
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
}
.ml-close:hover { background: var(--bg-alt); }
.ml-close svg { width: 20px; height: 20px; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-image {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 22px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 28px; line-height: 0; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
