/* Storefront 4-column footer */
.frs-footer--grid {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 32px 16px 20px;
  color: #334155;
  font-size: 14px;
}

.frs-footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 24px 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .frs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .frs-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.frs-footer-heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
}

.frs-footer-logo {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.frs-footer-tagline {
  margin: 0 0 12px;
  line-height: 1.5;
  color: #64748b;
}

.frs-footer-phone {
  display: inline-block;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.frs-footer-links,
.frs-footer-social,
.frs-footer-trust {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frs-footer-links li,
.frs-footer-social li,
.frs-footer-trust li {
  margin-bottom: 8px;
}

.frs-footer-links a,
.frs-footer-social a {
  color: #334155;
  text-decoration: none;
}

.frs-footer-links a:hover,
.frs-footer-social a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.frs-footer-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.frs-trust-icon {
  display: inline-flex;
  color: var(--brand-success, #16a34a);
  flex-shrink: 0;
}

.frs-footer-copyline {
  max-width: 1120px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

/* Checkout stepper states */
.frs-step.is-locked,
.fpr-step-link.is-locked {
  opacity: 0.45;
  pointer-events: none;
}

.frs-step.is-active,
.fpr-step-link.fpr-step--on {
  font-weight: 700;
}

.frs-step.is-complete,
.fpr-step-link.is-complete {
  color: var(--brand-success, #16a34a);
}

.fpr-step-link.is-complete .fpr-step-num {
  background: var(--brand-success, #16a34a);
}
