.budavento-footer {
  position: relative;
}

.footer-text {
  font-size: var(--font-size-sm);
  color: #d1d5db;
}

.footer-social .footer-link {
  display: inline-flex;
  gap: 0.35rem;
}

.footer-social i {
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(55, 65, 81, 0.7);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-copy {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-links .footer-link {
  font-size: 0.8rem;
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 0.75rem var(--space-4) var(--space-4);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.92));
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(209, 168, 91, 0.6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner-text h2 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-serif);
  font-size: var(--font-size-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9fafb;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #e5e7eb;
}

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

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  animation: cookie-slide-up 260ms var(--transition-base) forwards;
}

.cookie-banner.is-hiding {
  animation: cookie-slide-down 220ms var(--transition-base) forwards;
}

@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; }
}

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

  .cookie-banner-text {
    max-width: 46rem;
  }
}
