/* Melien Ador footer — dark ink panel closing the page.
   Hairlines use rgba(cream) rather than a palette token because they are
   translucent overlays on the ink background, not solid borders. */

.cc_xuUMlpuJCr_footer .kombos-footer {
  width: 100%;
  background: var(--kombos-cream);
  color: var(--kombos-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cc_xuUMlpuJCr_footer .kombos-footer__wrapper {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ===== Top section ===== */

.cc_xuUMlpuJCr_footer .kombos-footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Brand */

.cc_xuUMlpuJCr_footer .kombos-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cc_xuUMlpuJCr_footer .kombos-footer__logo-wrap {
  width: 9rem;
  height: 3rem;
  overflow: hidden;
}

.cc_xuUMlpuJCr_footer .kombos-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.cc_xuUMlpuJCr_footer .kombos-footer__desc {
  margin: 0;
  color: var(--kombos-ink);
  max-width: 20rem;
  opacity: 0.6;
}

/* Socials */

.cc_xuUMlpuJCr_footer .kombos-footer__socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 1.25rem;
  color: var(--kombos-ink);
  opacity: 0.72;
}

/* Link columns */

.cc_xuUMlpuJCr_footer .kombos-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.cc_xuUMlpuJCr_footer .kombos-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
}

/* 0.66rem is below the smallest scale step, so the size lives here. */
.cc_xuUMlpuJCr_footer .kombos-footer__col-title {
  margin: 0;
  color: var(--kombos-taupe);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.cc_xuUMlpuJCr_footer .kombos-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cc_xuUMlpuJCr_footer .kombos-footer__col-link {
  color: var(--footer-link-color, var(--kombos-ink));
  opacity: 0.72;
  padding: 0.28rem 0;
  text-decoration: none;
  transition:
    transform 0.3s var(--kombos-ease-brand),
    opacity 0.3s var(--kombos-ease-brand);
  width: fit-content;
}

.cc_xuUMlpuJCr_footer .kombos-footer__col-link:hover {
  color: var(--footer-link-hover-color, var(--kombos-ink));
  opacity: 1;
  transform: translateX(0.25rem);
}

/* ===== Bottom bar ===== */

.cc_xuUMlpuJCr_footer .kombos-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cc_xuUMlpuJCr_footer .kombos-footer__copyright {
  margin: 0;
  color: var(--kombos-ink);
  opacity: 0.55;
}

.cc_xuUMlpuJCr_footer .kombos-footer__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  width: fit-content;
  opacity: 0.55;
}

.cc_xuUMlpuJCr_footer .kombos-footer__badge-logo {
  width: 42px;
  height: auto;
  color: var(--kombos-ink);
}

.cc_xuUMlpuJCr_footer .kombos-footer__badge-text {
  color: var(--kombos-ink);
  white-space: nowrap;
}

/* ===== 2 columns (660px+) ===== */

@media (min-width: 660px) {
  .cc_xuUMlpuJCr_footer .kombos-footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Tablet (768px+) ===== */

@media (min-width: 768px) {
  .cc_xuUMlpuJCr_footer .kombos-footer__wrapper {
    padding-top: 4.5rem;
  }
}

/* ===== Desktop (1024px+) ===== */

@media (min-width: 1024px) {
  .cc_xuUMlpuJCr_footer .kombos-footer__wrapper {
    padding-top: 5.5rem;
    padding-bottom: 0;
  }

  .cc_xuUMlpuJCr_footer .kombos-footer__top {
    flex-direction: row;
    gap: 3rem;
    padding-bottom: 1rem;
  }

  .cc_xuUMlpuJCr_footer .kombos-footer__brand {
    flex: 1.6;
    flex-shrink: 0;
  }

  .cc_xuUMlpuJCr_footer .kombos-footer__columns {
    flex: 3;
    /* auto-fit (not a fixed 3) so the tracks follow how many link columns the
       merchant actually configured — a fixed count leaves a dead track when
       there are fewer. */
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 3rem;
  }

  .cc_xuUMlpuJCr_footer .kombos-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
  }
}
