/* ── BOUTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: .95rem;
  font-weight: 600;
  padding: .8rem 1.6rem;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 48px;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 85%, #000);
  border-color: color-mix(in srgb, var(--accent) 85%, #000);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}

.btn-wa:hover {
  background: color-mix(in srgb, var(--wa-green) 85%, #000);
  border-color: color-mix(in srgb, var(--wa-green) 85%, #000);
  color: #fff;
}

/* ── BADGE NOTE GOOGLE ── */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.90);
  color: var(--text);
  padding: .4rem .9rem;
  border-radius: 50px;
  font-family: var(--ff-ui);
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  width: fit-content;
}

.hero-rating-badge:hover { text-decoration: none; background: rgba(255,255,255,.98); }

.hero-rating-badge strong {
  font-weight: 700;
  color: var(--text);
}

.hero-rating-badge .stars { display: flex; gap: 2px; }
.hero-rating-badge .stars svg { width: 14px; height: 14px; }

/* ── SECTION HEADING ── */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  display: block;
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--text);
  letter-spacing: -.02em;
}

.section-heading p {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  max-width: 56ch;
  margin: 16px auto 0;
  line-height: 1.65;
}

/* ── CARD PLAIN (LAY-2 card=plain) ── */
.card-plain {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.card-plain:hover {
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 12%, transparent);
  transform: translateY(-3px);
}

/* ── ÉTOILES AVIS ── */
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star-row svg {
  width: 16px;
  height: 16px;
  color: #f5a623;
}

/* ── BADGE GOOGLE ── */
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-mute);
  font-family: var(--ff-ui);
}

.badge-google svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── STATUS OUVERT/FERMÉ ── */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--ff-ui);
}

.open-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #ccc;
}

.open-status.is-open { color: #1a7a40; }
.open-status.is-open::before { background: #1a7a40; }
.open-status.is-closed { color: #c0392b; }
.open-status.is-closed::before { background: #c0392b; }

/* ── LIGHTBOX ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lb-image {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background .2s;
  cursor: pointer;
  border: 0;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { background: rgba(255,255,255,.25); }

.lb-close { top: 16px; right: 16px; }
.lb-prev  { left: 12px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 12px; top: 50%; transform: translateY(-50%); }

/* ── ACCORDÉON FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}

.faq-trigger:hover { color: var(--accent); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
  font-size: .85rem;
  color: var(--accent-2);
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease-out);
}

.faq-answer.is-open {
  max-height: 400px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── HORAIRES TABLE ── */
.horaires-table {
  width: 100%;
  font-size: .9rem;
  border-collapse: collapse;
}

.horaires-table tr {
  border-bottom: 1px solid var(--border);
}

.horaires-table td {
  padding: 8px 0;
  color: var(--text-2);
}

.horaires-table td:last-child { text-align: right; color: var(--text); }

.horaires-table tr.today td {
  color: var(--accent);
  font-weight: 600;
}
