/* ========================================================================
   COOKIE CONSENT BANNER — Google Consent Mode v2
   ======================================================================== */

.cc-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.25rem clamp(1.25rem, 3vw, 2.5rem);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.cc-banner.is-visible {
  display: flex;
  transform: translateY(0);
}

.cc-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 640px;
  flex: 1;
  min-width: 240px;
}

.cc-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cc-btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cc-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.18);
}

.cc-btn--reject:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.cc-btn--accept {
  background: var(--grad-gold);
  color: var(--dark);
}

.cc-btn--accept:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cc-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .cc-actions {
    width: 100%;
  }
  .cc-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }
}
