/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-consent-text h4 {
  color: var(--gold);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.cookie-consent-text p {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-consent-text a:hover {
  color: var(--gold-light);
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
}

.cookie-consent-buttons .btn-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: var(--dark);
  border: none;
}

.cookie-consent-buttons .btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cookie-consent-buttons .btn-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.cookie-consent-buttons .btn-decline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.cookie-consent-buttons .btn-settings {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  font-size: 0.9rem;
  padding: 8px 16px;
}

.cookie-consent-buttons .btn-settings:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold);
}

/* Cookie icon */
.cookie-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-right: 8px;
}

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

  .cookie-consent-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-consent-buttons .btn {
    flex: 1;
  }

  .cookie-consent-text {
    min-width: 100%;
  }
}
