﻿.cookie-banner {
  position: fixed;
  left: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 150;
  max-width: 54rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(23, 21, 19, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 18px 52px rgba(23, 21, 19, 0.16);
  backdrop-filter: blur(16px);
}

.cookie-banner__copy {
  display: grid;
  gap: 0.25rem;
}

.cookie-banner__copy strong {
  color: #171513;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  max-width: 34rem;
  color: #464039;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.6rem;
}

.cookie-banner .btn--secondary {
  border-color: rgba(23, 21, 19, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: #27221d;
}

.cookie-banner .btn--secondary:hover {
  border-color: rgba(23, 73, 85, 0.22);
  background: #ffffff;
  color: #171513;
}

