/* Cookie Consent Banner, Pass 19u */
.cc-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 480px;
  width: calc(100% - 48px);
  background: #0F0C15;
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 16px;
  padding: 28px 24px 20px;
  font-family: 'DM Sans', sans-serif;
  color: #BFB5CE;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 480ms cubic-bezier(0.16,1,0.3,1), opacity 480ms cubic-bezier(0.16,1,0.3,1);
}
.cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
}
.cc-banner.cc-hiding {
  transform: translateY(20px);
  opacity: 0;
}
.cc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #FAF7F1;
  margin-bottom: 10px;
}
.cc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #BFB5CE;
  margin-bottom: 18px;
}
.cc-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.cc-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-toggle-label {
  font-size: 13px;
  font-weight: 400;
  color: #FAF7F1;
}
.cc-toggle-label span {
  font-size: 11px;
  color: var(--muted, #898096);
  margin-left: 6px;
}
.cc-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-slider {
  position: absolute;
  inset: 0;
  background: #1E1929;
  border-radius: 11px;
  cursor: pointer;
  transition: background 200ms;
}
.cc-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #7A7088;
  border-radius: 50%;
  transition: transform 280ms cubic-bezier(0.16,1,0.3,1), background 200ms;
}
.cc-switch input:checked + .cc-slider {
  background: #3D1A5C;
}
.cc-switch input:checked + .cc-slider::before {
  transform: translateX(18px);
  background: #C9A96E;
}
.cc-switch input:disabled + .cc-slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cc-switch input:disabled:checked + .cc-slider::before {
  background: #C9A96E;
}
.cc-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cc-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.16,1,0.3,1), transform 100ms, box-shadow 200ms;
}
.cc-btn:active {
  transform: scale(0.97);
}
.cc-btn--accept {
  background: #C9A96E;
  color: #07050A;
}
.cc-btn--accept:hover {
  background: #E2C99A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}
.cc-btn--save {
  background: #1E1929;
  color: #FAF7F1;
  border: 1px solid rgba(201,169,110,0.2);
}
.cc-btn--save:hover {
  background: #2A2335;
}
.cc-btn--reject {
  background: transparent;
  color: #A89BB8;
  border: 1px solid rgba(168,155,184,0.35);
}
.cc-btn--reject:hover {
  color: #BFB5CE;
  border-color: rgba(122,112,136,0.5);
}

@media (max-width: 767px) {
  .cc-banner {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .cc-title {
    display: none;
  }
  .cc-desc {
    flex: 1 1 100%;
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 0;
    min-width: 0;
  }
  .cc-toggles {
    display: none;
  }
  .cc-buttons {
    flex-direction: row;
    gap: 6px;
    flex-shrink: 0;
  }
  .cc-btn {
    min-width: unset;
    padding: 8px 14px;
    font-size: 11px;
  }
  .cc-btn--save {
    display: none;
  }
}
