/* Footer styles for VESTO CLUB */

.vc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--space-10);
  background: radial-gradient(circle at top, rgba(255, 41, 102, 0.12), transparent 55%), var(--color-bg-elevated);
}

.vc-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: var(--space-8);
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}

.vc-footer__brand {
  max-width: 420px;
}

.vc-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.vc-footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 45% 55% 50% 50%;
  background: radial-gradient(circle at 15% 0, #ff7a3c, transparent 60%),
              radial-gradient(circle at 80% 100%, #ff2966, transparent 65%),
              var(--color-bg-elevated);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.vc-footer__logo-text {
  display: flex;
  flex-direction: column;
}

.vc-footer__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.vc-footer__logo-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.vc-footer__description {
  font-size: 0.86rem;
}

.vc-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.vc-footer__heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-3);
}

.vc-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vc-footer__list a {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.vc-footer__list a:hover,
.vc-footer__list a:focus-visible {
  color: #ffffff;
}

/* Bottom bar */
.vc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-3) 0;
}

.vc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.vc-footer__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.vc-footer__meta-dot {
  opacity: 0.7;
}

/* Cookie banner */
.vc-cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: var(--space-3) var(--space-4);
}

.vc-cookie--visible {
  display: block;
}

.vc-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: radial-gradient(circle at top left, rgba(255, 41, 102, 0.16), transparent 55%),
              var(--color-surface);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.vc-cookie--visible .vc-cookie__inner {
  transform: translateY(0);
  opacity: 1;
}

.vc-cookie__content {
  max-width: 680px;
}

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

.vc-cookie__text {
  font-size: 0.86rem;
  margin-bottom: var(--space-2);
}

.vc-cookie__link {
  font-size: 0.8rem;
  text-decoration: underline;
}

.vc-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
}

.vc-cookie__btn {
  font-size: 0.8rem;
  padding-inline: 1.2rem;
}

@media (max-width: 960px) {
  .vc-footer__inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-6);
  }

  .vc-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .vc-footer__links {
    grid-template-columns: 1fr;
  }

  .vc-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-cookie {
    padding-inline: var(--space-3);
  }

  .vc-cookie__inner {
    padding: var(--space-3);
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-cookie__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .vc-cookie__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vc-cookie__title {
    font-size: 0.95rem;
  }

  .vc-cookie__text {
    font-size: 0.8rem;
  }
}
