.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #181112;
  border-top: 1px solid rgba(201, 164, 92, 0.35);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
  animation: cookie-slide-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cookie-slide-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner--hidden {
  animation: cookie-slide-out 0.35s ease forwards;
}

@keyframes cookie-slide-out {
  to { transform: translateY(110%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-banner--hidden {
    animation: none;
  }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1320px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem;
}

@media (min-width: 640px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
  }
}

@media (min-width: 1200px) {
  .cookie-banner__inner {
    padding: 1.25rem 3rem;
  }
}

.cookie-banner__text {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.875rem;
  color: #cfc6b8;
  line-height: 1.7;
  max-width: 72ch;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #c9a45c;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.cookie-banner__link:hover {
  color: #e2c783;
}

.cookie-banner__link:focus-visible {
  outline: 2px solid #c9a45c;
  outline-offset: 3px;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: 9rem;
  padding: 0.75rem 1.75rem;
  background: #e72b41;
  color: #ffffff;
  border: 2px solid #e72b41;
  border-radius: 2px;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cookie-banner__btn:hover {
  background: #9f1729;
  border-color: #9f1729;
  box-shadow: 0 4px 20px rgba(231, 43, 65, 0.4);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid #c9a45c;
  outline-offset: 3px;
}
