/* Rivora — site footer */

.rivora-footer {
  background: var(--rivora-ink-1);
  color: var(--rivora-footer-text);
  font-family: var(--rivora-font-body);
}

.rivora-footer__top {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 72px) clamp(20px, 4vw, 32px) 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.rivora-footer__col-title {
  color: var(--rivora-footer-heading);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Brand column */
.rivora-footer__logo-link {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 16px;
}

/*
 * ".rivora-footer " prefix is deliberate: see the matching comment in
 * header.css — Kadence's woocommerce.min.css has ".woocommerce img,
 * .woocommerce-page img { height:auto; max-width:100% }" which otherwise
 * beats a bare single-class ".rivora-footer__logo" selector on WooCommerce
 * pages (cart/shop/checkout/etc. all carry a woocommerce-page body class).
 */
.rivora-footer .rivora-footer__logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.rivora-footer__tagline {
  font-size: 14px;
  line-height: 1.9;
  color: var(--rivora-footer-muted);
  max-width: 280px;
  margin: 0;
}

/* Link columns */
.rivora-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rivora-footer-links a {
  color: var(--rivora-footer-muted);
  text-decoration: none;
  font-size: 14px;
}

.rivora-footer-links a:hover,
.rivora-footer-links a:focus {
  color: var(--rivora-gold-primary);
}

/* Contact column */
.rivora-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-style: normal;
  color: var(--rivora-footer-muted);
}

.rivora-footer__contact a {
  color: inherit;
  text-decoration: none;
}

.rivora-footer__contact a:hover,
.rivora-footer__contact a:focus {
  color: var(--rivora-gold-primary);
}

/* Bottom bar */
.rivora-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.rivora-footer__bottom-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.rivora-footer-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12.5px;
  color: var(--rivora-footer-faint);
}

.rivora-footer__copyright {
  font-size: 12.5px;
  color: var(--rivora-footer-faint);
}
