/* Footer-specific styles for Velmoorio */

.vel-footer__top {
  row-gap: var(--space-8);
}

.vel-footer__brand {
  max-width: 340px;
}

.vel-footer__logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vel-footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #facc6b, #c89a3c 45%, #1f7a63 80%);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.4);
}

.vel-footer__brand-text {
  font-family: var(--font-family-serif);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}

.vel-footer__tagline {
  font-size: var(--font-size-sm);
  color: rgba(248, 250, 252, 0.8);
}

.vel-footer__column {
  min-width: 0;
}

.vel-footer__heading {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(248, 250, 252, 0.9);
}

.vel-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vel-footer__links li + li {
  margin-top: 0.4rem;
}

.vel-footer__links a {
  font-size: var(--font-size-sm);
  color: rgba(248, 250, 252, 0.8);
}

.vel-footer__links a:hover,
.vel-footer__links a:focus-visible {
  color: #facc6b;
}

.vel-footer__contact-meta {
  margin-top: 1.25rem;
  font-size: var(--font-size-sm);
  color: rgba(248, 250, 252, 0.7);
}

.vel-footer__contact-meta a {
  color: inherit;
}

.vel-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vel-footer__notice {
  font-size: var(--font-size-xs);
  color: rgba(248, 250, 252, 0.7);
}

.vel-footer__copyright {
  font-size: var(--font-size-xs);
  color: rgba(148, 163, 184, 0.9);
}

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

  .vel-footer__notice {
    max-width: 640px;
  }
}

/* Cookie banner ------------------------------------------------------ */

.vel-cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.vel-cookie-banner__inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 var(--space-4) var(--space-4);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.vel-cookie-banner__content {
  flex: 1;
}

.vel-cookie-banner__title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.vel-cookie-banner__text {
  font-size: var(--font-size-xs);
  color: rgba(249, 250, 251, 0.9);
}

.vel-cookie-banner__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: #facc6b;
}

.vel-cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.vel-cookie-banner__btn {
  font-size: var(--font-size-xs);
  white-space: nowrap;
}

.vel-cookie-banner__btn--reject {
  color: rgba(249, 250, 251, 0.9);
}

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

.vel-cookie-banner--visible {
  animation: velCookieFadeIn 220ms ease-out;
}

.vel-cookie-banner--closing {
  animation: velCookieFadeOut 200ms ease-in forwards;
}

@keyframes velCookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes velCookieFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (max-width: 639.98px) {
  .vel-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem 0.9rem 0.8rem;
  }

  .vel-cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
