/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy, #1a2744);
  border-top: 2px solid var(--gold, #c5985e);
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.85);
  display: none;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-consent-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cookie-consent-text {
  line-height: 1.5;
}

.cookie-consent-text a {
  color: var(--gold, #c5985e);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 152, 94, 0.4);
  transition: border-color 0.2s;
}

.cookie-consent-text a:hover {
  border-bottom-color: var(--gold, #c5985e);
}

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

.cookie-consent-btn {
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-consent-btn-accept {
  background: var(--gold, #c5985e);
  color: var(--navy, #1a2744);
  border: 1.5px solid var(--gold, #c5985e);
}

.cookie-consent-btn-accept:hover {
  background: #b38a52;
  border-color: #b38a52;
}

.cookie-consent-btn-decline {
  background: transparent;
  color: rgba(245, 240, 232, 0.85);
  border: 1.5px solid rgba(245, 240, 232, 0.3);
}

.cookie-consent-btn-decline:hover {
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--cream, #faf8f4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cookie-consent-banner.show {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .cookie-consent-content {
    width: 100%;
  }

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

  .cookie-consent-buttons {
    width: 100%;
    gap: 10px;
  }

  .cookie-consent-btn {
    flex: 1;
    padding: 9px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner.show {
    padding: 12px 12px;
  }

  .cookie-consent-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .cookie-consent-btn {
    padding: 8px 14px;
    font-size: 11px;
  }
}
