.commerce-footer {
  color: #fffaf6;
  background: #281f1b;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: #281f1b;
  background: #fff;
  border-top: 1px solid #e6d5cc;
}

.footer-benefit {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: .75rem;
}

.footer-benefit svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-benefit strong,
.footer-benefit span { display: block; }
.footer-benefit strong { margin-bottom: .15rem; font: 800 .86rem "Manrope", sans-serif; }
.footer-benefit span { color: #75645c; font-size: .72rem; line-height: 1.4; }

.footer-payment-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem;
  color: #281f1b;
  background: #fff;
  border-top: 1px solid #e6d5cc;
}

.footer-social {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #fff;
  background: #1877f2;
  border-radius: 50%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.2rem rgba(24, 119, 242, .28);
}

.footer-social svg { width: 1.35rem; height: 1.35rem; fill: currentColor; }
.payment-divider { width: 1px; height: 2.5rem; background: #e6d5cc; }
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.9rem;
  height: 2.45rem;
  padding: .38rem .5rem;
  background: #fff;
  border: 1px solid #d8d2ce;
  border-radius: .45rem;
}

.payment-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.payment-logo.cb img { transform: scale(1.2); }
.payment-logo.mastercard img { transform: scale(.88); }

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 5vw, 5rem) 2rem;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 1rem;
  color: #fff;
  font: 700 1.35rem "Cormorant Garamond", Georgia, serif;
}

.footer-column p { margin: .45rem 0; color: #d9cbc4; font-size: .8rem; line-height: 1.6; }
.footer-column a { display: block; width: fit-content; margin: .55rem 0; color: #fffaf6; font-size: .8rem; text-decoration: none; }
.footer-column a:hover { text-decoration: underline; text-underline-offset: .2rem; }
.footer-brand { font-size: clamp(1.75rem, 4vw, 2.6rem) !important; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 clamp(1rem, 5vw, 5rem);
  padding: 1.25rem 0;
  color: #bbaaa1;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .7rem;
}

.footer-bottom a { color: #fff; }

@media (max-width: 850px) {
  .footer-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-benefits,
  .footer-main { grid-template-columns: 1fr; }
  .footer-benefit { grid-template-columns: 2.4rem 1fr; }
  .footer-payment-social { justify-content: flex-start; padding-inline: 1rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
