/* Footer-specific refinements for Cesloria */

.site-footer {
  position: relative;
  z-index: 10;
}

.site-footer__brand p {
  max-width: 34rem;
}

.site-footer__nav-link:hover {
  color: var(--color-accent-blue);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  margin: 0 auto var(--space-4);
  max-width: var(--container-max-width);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-6) var(--container-padding-x);
  background: radial-gradient(circle at 0 0, rgba(255, 138, 214, 0.25), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(93, 208, 255, 0.25), transparent 55%),
              rgba(6, 0, 30, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.cookie-banner__description {
  font-size: var(--font-size-sm);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cookie-banner__button {
  min-width: 140px;
}

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

  .cookie-banner__text {
    max-width: 44rem;
  }
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}