/* ─── Cookie Consent — Liuteria Fontana ─────────────────────────────────── */

#cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 10, 7, 0.82);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

#cookie-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

#cookie-banner {
  width: 100%;
  max-width: 720px;
  background: #15100b;
  border: 1px solid #2a1f15;
  border-top: 2px solid #b8924a;
  padding: 32px 36px;
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
}

#cookie-banner .cb-eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #b8924a;
  margin-bottom: 10px;
}

#cookie-banner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ece4d3;
  margin-bottom: 12px;
  line-height: 1.3;
}

#cookie-banner p {
  font-size: .82rem;
  color: #b0a38f;
  line-height: 1.7;
  margin-bottom: 24px;
}

#cookie-banner p a {
  color: #b8924a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cb-btn {
  font-family: "Inter", system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid #b8924a;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
  line-height: 1;
}

.cb-btn-accept {
  background: #b8924a;
  color: #0e0a07;
}

.cb-btn-accept:hover {
  background: #d8b676;
  border-color: #d8b676;
}

.cb-btn-reject {
  background: transparent;
  color: #b0a38f;
  border-color: #2a1f15;
}

.cb-btn-reject:hover {
  color: #ece4d3;
  border-color: #b0a38f;
}

/* ─── Mappa bloccata ─────────────────────────────────────────────── */

.map-blocked {
  position: relative;
  min-height: 300px;
}

.map-blocked iframe,
.map-blocked .map-inner {
  pointer-events: none;
  filter: blur(6px);
  opacity: .35;
}

.map-blocked-notice {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  font-family: "Inter", system-ui, sans-serif;
}

.map-blocked-notice i {
  font-size: 2rem;
  color: #b8924a;
}

.map-blocked-notice p {
  font-size: .82rem;
  color: #b0a38f;
  max-width: 320px;
  line-height: 1.6;
  margin: 0;
}

.map-blocked-notice button {
  font-family: "Inter", system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: #b8924a;
  color: #0e0a07;
  border: none;
  cursor: pointer;
  transition: background .22s ease;
}

.map-blocked-notice button:hover {
  background: #d8b676;
}

@media (max-width: 600px) {
  #cookie-banner {
    padding: 24px 20px;
  }

  #cookie-banner h2 {
    font-size: 1.25rem;
  }

  .cb-actions {
    flex-direction: column;
  }

  .cb-btn {
    text-align: center;
  }
}