.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: block;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.96);
  color: #f5f1e8;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(8px);
  padding: 22px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 auto;
}

.cookie-banner__text h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4af37;
}

.cookie-banner__text p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.88);
  max-width: 760px;
}

.cookie-banner__text a {
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__text a:hover {
  color: #f0cc5a;
  border-color: rgba(240, 204, 90, 0.6);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  background: #d4af37;
  color: #111111;
}

.cookie-btn--primary:hover {
  background: #e2bf4b;
}

.cookie-btn--secondary {
  background: transparent;
  color: #f5f1e8;
  border: 1px solid rgba(212, 175, 55, 0.38);
}

.cookie-btn--secondary:hover {
  border-color: rgba(212, 175, 55, 0.65);
  color: #ffffff;
}

@media (max-width: 820px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .cookie-banner__text h3 {
    font-size: 1.25rem;
  }

  .cookie-banner__text p {
    font-size: 0.94rem;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}