/* BOUTONS ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 50px;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(94,107,59,0.45);
}
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 88%, black); box-shadow: 0 10px 20px -8px rgba(94,107,59,0.55); }

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(37,211,102,0.45);
}
.btn-wa:hover { background: var(--wa-green-dark); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.34);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

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

/* CARDS ------------------------------------------------------------------ */
.c-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
}
.c-row__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, var(--bg));
  color: var(--accent);
  flex-shrink: 0;
}
.c-row__icon svg { width: 22px; height: 22px; }
.c-row__title { font-family: var(--ff-display); font-size: 1.18rem; margin: 0 0 4px; }
.c-row__text { color: var(--text-2); font-size: 0.95rem; margin: 0; }

/* CHIPS ------------------------------------------------------------------ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  font-weight: 600;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
}
.chip--solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.chip--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

/* META LINES ------------------------------------------------------------ */
.meta-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--text-2);
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
.dot--pulse {
  background: #2DA85B;
  box-shadow: 0 0 0 0 rgba(45,168,91,0.6);
  animation: dot-pulse 2.2s ease-out infinite;
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,168,91,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(45,168,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,168,91,0); }
}
@media (prefers-reduced-motion: reduce) { .dot--pulse { animation: none; } }

/* 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, 19, 14, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ml-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 30px 26px 26px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.34);
}
.ml-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  cursor: pointer; color: var(--text);
}
.ml-close:hover { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin: 0 0 16px;
}
.ml-box h3 {
  font-family: var(--ff-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin: 18px 0 6px;
  color: var(--accent);
  font-weight: 700;
}
.ml-box p {
  font-size: 0.92rem;
  color: var(--text-2);
  margin: 0 0 10px;
}

/* LIGHTBOX -------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(14, 14, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lb-image {
  max-width: min(94vw, 1200px);
  max-height: 90vh;
  width: auto; height: auto;
  border-radius: var(--r-md);
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: var(--ff-ui);
  transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 18px; right: 18px; font-size: 1.4rem; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 12px; right: 12px; }
}

/* FORM ------------------------------------------------------------------ */
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 600px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }   /* PIEGE PROD #10b */
.field label {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.field input,
.field select,
.field textarea {
  width: 100%; min-width: 0;
  font-family: var(--ff-ui);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.form-submit { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
@media (min-width: 500px) {
  .form-submit { flex-direction: row; }
  .form-submit .btn { flex: 1; }
}

/* RATING / SOCIAL --------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; color: var(--star-gold); fill: currentColor; }

.badge-google {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-ui); font-size: 0.78rem; font-weight: 600;
  color: var(--text-2);
}
.badge-google svg { width: 14px; height: 14px; }
