/* ========================================================================
   VAPE LAB — Footer: brand sign-off, not a sitemap.
   Promise + WhatsApp, one utility line, legal.
   ======================================================================== */

.vl-footer {
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  overflow: hidden;
}

.vl-footer__outer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 20px 0;
}

/* ── Sign-off row ── */
.vl-footer__signoff {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.vl-footer__tagline {
  font-family: var(--font-h);
  font-size: clamp(1.375rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.vl-footer__tagline span {
  color: var(--accent-on-dark);
}

.vl-footer__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.vl-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-action);
  color: #fff;
  font-family: var(--font-b);
  font-size: var(--fs-btn);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background 0.15s ease;
}

.vl-footer__wa:hover {
  background: var(--accent-hover, #b82f35);
}

.vl-footer__wa svg {
  width: 1.25rem;
  height: 1.25rem;
}

.vl-footer__hours {
  font-size: var(--fs-small);
  color: var(--muted);
  margin: 0;
}

/* ── Footer link row (wp_nav_menu) ── */
.vl-footer__links {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vl-footer__links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Separator dot between items */
.vl-footer__links-list li + li::before {
  content: "·";
  color: rgba(255, 255, 255, 0.15);
  font-size: var(--fs-small);
  margin-right: 1rem;
  user-select: none;
}

.vl-footer__links a {
  font-size: var(--fs-small);
  color: var(--muted);
  text-decoration: none;
  padding-block: 0.375rem;
}

.vl-footer__links a:hover {
  color: #fff;
}

/* ── Legal ── */
.vl-footer__legal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  flex-wrap: wrap;
  padding: 0.25rem 0 1.5rem;
}

.vl-footer__legal p {
  margin: 0;
  font-size: var(--fs-small);
}

.vl-footer__legal-notice {
  color: var(--accent-on-dark);
  font-weight: 500;
}

.vl-footer__copyright {
  color: var(--muted);
}

.vl-footer__copyright a {
  color: inherit;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vl-footer__signoff {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .vl-footer__action {
    align-items: center;
  }

  .vl-footer__legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vl-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* ── Floating WhatsApp button ── */
.vl-wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: var(--ink);
  text-decoration: none;
  border-radius: 2.5rem;
  font-family: var(--font-b, 'Work Sans', sans-serif);
  font-size: var(--fs-small, 0.875rem);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform .2s, box-shadow .2s;
}

.vl-wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.vl-wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  color: var(--ink);
}

@media (max-width: 31.25em) {
  .vl-wa-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
  }
  .vl-wa-float span {
    display: none;
  }
  .vl-wa-float svg {
    width: 26px;
    height: 26px;
  }
}
