/* Minimal cookie consent styles */
.cookie-banner {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 1200;
  background: #0f0f0f;
  color: #f2f2f2;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 16px;
  max-width: 420px;
  font-family: 'Inter', sans-serif;
}
.cookie-banner h4 {
  margin: 0 0 6px 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.3px;
}
.cookie-banner p { margin: 0 0 10px 0; color: #d7d7d7; font-size: 14px; line-height: 1.5; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-btn {
  border: 1px solid #b79a5b;
  border-radius: 999px;
  padding: 10px 14px;
  background: #b79a5b;
  color: #0f0f0f;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.cookie-btn:hover { background: #c8a86b; }
.cookie-btn.secondary {
  background: transparent;
  color: #f2f2f2;
}
.cookie-btn.secondary:hover { background: rgba(183,154,91,0.18); }

/* Modal */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1250;
  padding: 16px;
}
.cookie-backdrop.show { display: flex; }
.cookie-modal {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #0f0f0f;
  color: #f2f2f2;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: 20px;
}
.cookie-modal h3 {
  margin: 0 0 12px 0;
  font-family: 'Playfair Display', serif;
}
.cookie-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row p { margin: 4px 0 0; color: #d7d7d7; font-size: 14px; }
.cookie-toggle {
  min-width: 44px;
  height: 24px;
  position: relative;
}
.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.cookie-toggle span {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
  position: relative;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 6px 16px rgba(0,0,0,0.35);
  transition: background 0.28s ease, box-shadow 0.28s ease;
}
.cookie-toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f2f2f2;
  top: 3px;
  left: 3px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), box-shadow 0.28s ease;
}
.cookie-toggle input:checked + span {
  background: linear-gradient(135deg, #b79a5b, #c6ad73);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 8px 18px rgba(183,154,91,0.35);
}
.cookie-toggle input:checked + span::after {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + span {
  background: #444;
  opacity: 0.7;
}
.cookie-toggle input:active + span::after {
  transform: translateX(2px) scale(0.96);
}
.cookie-toggle input:active:checked + span::after {
  transform: translateX(20px) scale(0.96);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 600px){
  .cookie-banner { max-width: none; inset: auto 10px 10px 10px; }
  .cookie-row { flex-direction: column; align-items: flex-start; }
  .cookie-modal { padding: 16px; }
}
