/* ══════════════════════════════════════════
   Cookie Consent Banner — The Hierarchy
   GDPR / ePrivacy compliant
   ══════════════════════════════════════════ */

#cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 0 16px 16px;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}
#cc-banner.cc-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cc-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(8, 6, 4, 0.97);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.cc-text { flex: 1; min-width: 0; }

.cc-title {
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(212, 175, 55, 0.45);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.cc-desc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(240, 232, 216, 0.55);
  line-height: 1.7;
  margin: 0;
}
.cc-desc a {
  color: rgba(212, 175, 55, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cc-desc a:hover { color: #d4af37; }

.cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-btn {
  padding: 10px 18px;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  line-height: 1;
}

.cc-reject {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.14);
  color: rgba(212, 175, 55, 0.4);
}
.cc-reject:hover {
  border-color: rgba(212, 175, 55, 0.35);
  color: rgba(212, 175, 55, 0.7);
}

.cc-accept {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
}
.cc-accept:hover {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.65);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  #cc-banner { padding: 0 10px 10px; }
  .cc-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
  .cc-actions {
    width: 100%;
    justify-content: center;
  }
  .cc-btn { padding: 10px 14px; font-size: 9px; }
}
