/* Bannière de cookies — habillage aux couleurs Le Café des Platanes */
#cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(20px);
  width: calc(100% - 32px);
  max-width: 860px;
  background: #3B2620;
  color: #FBF3EC;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  padding: 22px 26px;
  z-index: 400;
  display: none;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
#cookie-banner.show { display: block; opacity: 1; transform: translateX(-50%) translateY(0); }
#cookie-banner .cb-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
#cookie-banner .cb-text { flex: 1; min-width: 240px; font-size: 12.5px; line-height: 1.65; color: rgba(251,243,236,.82); }
#cookie-banner .cb-text strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; margin-bottom: 4px; color: #FBF3EC; }
#cookie-banner .cb-text a { color: #E8A93C; text-decoration: underline; text-underline-offset: 2px; }
#cookie-banner .cb-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
#cookie-banner button {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 12px 20px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.cb-accept { background: #E8A93C; color: #3B2620; border-color: #E8A93C; }
.cb-accept:hover { background: #f0b856; }
.cb-refuse { background: transparent; color: rgba(251,243,236,.85); border-color: rgba(251,243,236,.4); }
.cb-refuse:hover { border-color: #FBF3EC; color: #FBF3EC; }
@media (max-width: 600px) {
  #cookie-banner .cb-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  #cookie-banner .cb-actions button { flex: 1; }
}
