/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 150, 110, 0.2);
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.cookie-banner-text a:hover {
  color: var(--gold-dark);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 11px;
}

.cookie-btn-essential {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn-essential:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: row;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 20px 0;
  }

  .cookie-banner-text h3 {
    font-size: 18px;
  }

  .cookie-banner-text p {
    font-size: 13px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }
}
