/* Footer-specific styles for Choix Sorties */

.footer-heading {
  font-size: 1.05rem;
  margin-bottom: var(--space-3);
  color: white;
}

.footer-text {
  color: rgba(243, 244, 246, 0.9);
  margin-bottom: var(--space-2);
}

.footer-text--small {
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
}

.footer-copy,
.footer-made {
  margin: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  padding: var(--space-3) var(--space-4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96) 0, rgba(15, 23, 42, 0.98) 60%);
  color: #f9fafb;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.65);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--duration-slow) var(--easing-soft), opacity var(--duration-base) var(--easing-standard);
}

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

.cookie-banner__inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

.cookie-banner__description {
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.96);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-start;
}

.cookie-btn {
  min-width: 8rem;
}

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

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}