/* BERNINI Suites — Cookie Consent Modal */
#cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 16, 16, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#cookie-consent-overlay.ccb-visible {
  opacity: 1;
  pointer-events: auto;
}

#cookie-consent-card {
  background: #1a1918;
  border: 1px solid #b8944d;
  padding: 32px 28px 28px;
  max-width: 420px;
  width: 100%;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

#cookie-consent-overlay.ccb-visible #cookie-consent-card {
  transform: translateY(0) scale(1);
}

.ccb-icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

.ccb-title {
  color: #b8944d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.ccb-desc {
  color: #8a7d70;
  font-size: 12px;
  line-height: 1.7;
  margin: 0 0 24px 0;
}

.ccb-link {
  color: #b8944d;
  text-decoration: none;
}

.ccb-link:hover {
  text-decoration: underline;
}

.ccb-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ccb-btn {
  width: 100%;
  padding: 11px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ccb-btn-primary {
  background: #b8944d;
  color: #111010;
}

.ccb-btn-primary:hover {
  background: #d4af37;
}

.ccb-btn-secondary {
  background: transparent;
  color: #8a7d70;
  border: 1px solid #2e2a27;
}

.ccb-btn-secondary:hover {
  color: #faf9f6;
  border-color: #8a7d70;
}

@media (max-width: 480px) {
  #cookie-consent-card {
    padding: 24px 20px 20px;
  }
}
