/* ============================================================
   5V Digital v2 — footer.css   v2.0.2
   ============================================================ */

/* ── Root ─────────────────────────────────────────────────── */
.fvd-footer {
  background: #f8fafc !important;
  color: #334155;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: auto;
}

/* ── Container (shared util) ──────────────────────────────── */
.fvd-footer .fvd-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Main area ────────────────────────────────────────────── */
.fvd-footer__main {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

/* ── 5-column grid ────────────────────────────────────────── */
.fvd-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .fvd-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .fvd-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .fvd-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .fvd-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .fvd-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Brand column ─────────────────────────────────────────── */
.fvd-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fvd-footer__logo {
  display: inline-block;
  text-decoration: none;
}

.fvd-footer__logo-img {
  height: 24px;
  max-width: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}

.fvd-footer__logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.fvd-footer__tagline {
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}

/* ── Social icons ─────────────────────────────────────────── */
.fvd-footer__social {
  display: flex;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.fvd-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #334155;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.fvd-footer__social-link:hover {
  background: #0284c7;
  color: #0f172a;
}

/* ── Column headings ──────────────────────────────────────── */
.fvd-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0f172a;
  margin: 0 0 1rem;
}

/* ── Link lists ───────────────────────────────────────────── */
.fvd-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.fvd-footer__links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.fvd-footer__links a:hover {
  color: #0284c7;
}

/* ── Contact column extras ────────────────────────────────── */
.fvd-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.fvd-footer__contact svg {
  flex-shrink: 0;
  color: #64748b;
}

.fvd-footer__contact a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s;
}

.fvd-footer__contact a:hover {
  color: #0284c7;
}

/* ── Bottom bar ───────────────────────────────────────────── */
.fvd-footer__bottom {
  padding: 0.875rem 0;
}

.fvd-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fvd-footer__copy {
  margin: 0;
  color: #64748b;
  font-size: 0.8125rem;
}

/* ── Payment icons ────────────────────────────────────────── */
.fvd-footer__payment-icons {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}

.fvd-footer__payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #334155;
  background: #f1f5f9;
}

/* ── Language switcher ────────────────────────────────────── */
.fvd-footer__lang {
  display: flex;
  gap: 0.75rem;
}

.fvd-footer__lang a {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}

.fvd-footer__lang a:hover {
  color: #0284c7;
}

/* ── Astra overrides ──────────────────────────────────────── */
#page .site-content { padding-bottom: 0 !important; }
.fvd-footer .woocommerce-breadcrumb { display: none; }
