/* BOUTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.96rem;
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  text-align: center;
  min-height: 48px;
  border: 1px solid transparent;
  white-space: normal;
  line-height: 1.2;
}
.btn:active{ transform: translateY(1px); }
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }

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

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

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

.btn-ghost{
  background: transparent;
  color: var(--accent);
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 0;
  min-height: auto;
  padding-bottom: 4px;
}
.btn-ghost:hover{ border-bottom-color: var(--accent); }

/* CARD = line (LAY-1) */
.c-line{
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  background: transparent;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  height: 100%;
}
.c-line:hover{
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -20px rgba(46, 91, 62, 0.35);
}

/* CHIPS / badges */
.chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 100px;
  background: color-mix(in srgb, var(--accent) 9%, var(--bg));
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
.chip svg{ width: 13px; height: 13px; }

/* RATING BADGE (hero, COPY-4) */
.hero-rating-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 22px;
  transition: background var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(4px);
}
.hero-rating-badge:hover{
  background: #fff;
  transform: translateY(-1px);
}
.hero-rating-badge strong{ font-weight: 600; color: var(--text); }
.hero-rating-badge .stars{
  display: inline-flex;
  gap: 2px;
  color: #f5a623;
}
.hero-rating-badge .stars svg{ width: 14px; height: 14px; fill: currentColor; }
.hero-rating-badge .dot-sep{ color: var(--text-mute); }

/* OPEN STATUS BADGE (header / horaires) */
.open-status{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border: 1px solid var(--border);
}
.open-status .open-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #b1b1b1;
}
.open-status.is-open .open-dot{
  background: #22c55e;
  box-shadow: 0 0 0 4px color-mix(in srgb, #22c55e 22%, transparent);
}
.open-status.is-closed .open-dot{
  background: #ef4444;
  box-shadow: 0 0 0 4px color-mix(in srgb, #ef4444 18%, transparent);
}

/* 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, 27, 22, 0.6);
  backdrop-filter: blur(3px);
}
.ml-box{
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--r-lg);
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px 26px 28px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.ml-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background var(--t-fast);
}
.ml-close:hover{ background: var(--bg-alt); }
.ml-box h2{
  font-size: 1.5rem;
  margin-bottom: 18px;
  padding-right: 36px;
}
.ml-box h3{
  font-size: 1rem;
  font-family: var(--ff-ui);
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.ml-box p{
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-2);
  font-family: var(--ff-ui);
}

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 13, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-image{
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next{
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  transition: background var(--t-fast);
}
.lb-close{ top: 18px; right: 18px; }
.lb-prev{ left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next{ right: 12px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover{ background: rgba(255, 255, 255, 0.22); }
