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

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 6px 16px rgba(94, 107, 59, 0.20);
}
.btn-primary:hover { background: #4F5B30; box-shadow: 0 10px 22px rgba(94, 107, 59, 0.28); }

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

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

.btn-ghost-inverse {
  background: transparent;
  color: #F4F0E4;
  border: 1.5px solid rgba(244, 240, 228, 0.34);
}
.btn-ghost-inverse:hover { background: rgba(244, 240, 228, 0.10); border-color: rgba(244, 240, 228, 0.7); }

.btn-block { width: 100%; }

/* CARD = line (LAY-1 impose) */
.c-line {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  background: var(--surface);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.c-line:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(44, 42, 32, 0.06);
}
@media (prefers-reduced-motion: reduce) {
  .c-line { transition: none; }
  .c-line:hover { transform: none; }
}

/* CHIP */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(94, 107, 59, 0.22);
}
.chip--solid { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* BADGE press (Maison Deco) */
.press-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  color: var(--text-2);
}
.press-badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.press-badge strong { color: var(--text); font-weight: 500; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 19, 12, 0.92);
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: background var(--t-fast);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.18); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
}

/* MODAL mentions legales */
.modal {
  position: fixed; inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 19, 12, 0.55);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  max-width: 540px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 30px 80px rgba(20, 19, 12, 0.35);
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  border-radius: 50%;
  font-size: 22px;
}
.modal-close:hover { background: var(--accent-soft); color: var(--accent); }
.modal-box h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--text);
}
.modal-box h3 {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 20px 0 8px;
  font-family: var(--ff-ui);
  font-weight: 600;
}
.modal-box p { font-size: 0.94rem; line-height: 1.65; }

/* PRESS LINK */
.press-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-2);
}
.press-link:hover { color: var(--text); }
