/* ============================================
  COOKIE CONSENT BANNER - Nocturne Theme
  ============================================ */

.cookie-consent-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
  border-top: 2px solid #D4AF37;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent-banner.show {
  bottom: 0;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-title {
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.cookie-consent-text p {
  color: #E0E0E0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #D4AF37;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-consent-text a:hover {
  color: #FFD700;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-btn-accept {
  background: #D4AF37;
  color: #121212;
}

.cookie-btn-accept:hover {
  background: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: #E0E0E0;
  border: 2px solid #666;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #999;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent-title {
    font-size: 1.1rem;
  }

  .cookie-consent-text p {
    font-size: 0.9rem;
  }
}
