/* Footer-specific styles for Szinter */
.footer-heading {
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
  color: #e5e7eb;
}

.footer-heading-small {
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
  color: #e5e7eb;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
  margin-bottom: var(--space-4);
}

.footer-links {
  align-items: flex-start;
}

.footer-bottom {
  align-items: center;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: var(--space-3) var(--space-4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(11, 27, 51, 0.98));
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.6);
}

.cookie-banner.is-visible {
  display: block;
  animation: cookie-slide-up 280ms ease-out forwards;
}

.cookie-banner.is-hiding {
  animation: cookie-slide-down 220ms ease-in forwards;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  color: #e5e7eb;
}

.cookie-banner__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: rgba(209, 213, 219, 0.92);
  margin-bottom: var(--space-1);
}

.cookie-banner__link {
  font-size: 0.8rem;
  color: #bfdbfe;
  text-decoration: underline;
}

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

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__btn {
  font-size: 0.75rem;
  padding-inline: 1.3rem;
}

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

  .cookie-banner__content {
    max-width: 650px;
  }
}

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

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