/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.cookie-banner-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.cookie-banner-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.6em 1.2em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.cookie-btn:active {
  transform: scale(0.97);
}

.cookie-btn-accept {
  background: var(--color-accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--color-accent-hover);
}

.cookie-btn-essential {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-essential:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
