﻿#cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 960px);
  min-height: 160px;
  background: linear-gradient(135deg, #0f1624, #111b35);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(4, 4, 12, 0.45);
  font-family: "Source Sans Pro", "Montserrat", sans-serif;
  z-index: 99999;
}

.cookie-banner__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #7eeefe;
  margin: 0;
}

.cookie-banner__title {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  color: #f5f5f5;
}

.cookie-banner__text {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  border-radius: 0.85rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__actions .btn--primary {
  background: linear-gradient(135deg, #f9a826, #ff5f6d);
  color: #0b0b0b;
  box-shadow: 0 10px 25px rgba(255, 122, 87, 0.35);
}

.cookie-banner__actions .btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #f5f5f5;
}

.cookie-banner__actions .btn:focus-visible {
  outline: 2px solid rgba(126, 238, 254, 0.8);
  outline-offset: 2px;
}

.cookie-banner__actions .btn:hover {
  transform: translateY(-1px);
}

@media (min-width: 600px) {
  .cookie-banner__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner__text {
    max-width: 540px;
  }
}
  
