/* Shared light footer for the shop, product archives, and product details. */
.luma-commerce-footer-part {
  width: 100%;
  margin: 0;
  border-top: 1px solid #d5d5d0;
  background: #f2f2ef;
  color: #0a0a0a;
  font-family: "Montserrat", Arial, sans-serif;
}

.luma-commerce-footer-part > footer {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(56px, 6vw, 80px) clamp(20px, 6vw, 96px) 40px;
  background: transparent;
}

.luma-commerce-footer-part .footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(36px, 4vw, 60px);
  margin-bottom: 60px;
}

.luma-commerce-footer-part .footer-brand {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1;
}

.luma-commerce-footer-part .footer-tagline {
  max-width: 240px;
  margin: 0;
  color: #676762;
  font-size: .68rem;
  letter-spacing: .1em;
  line-height: 1.9;
}

.luma-commerce-footer-part .footer-tagline span {
  display: block;
}

.luma-commerce-footer-part .footer-col-title {
  margin-bottom: 22px;
  color: #676762;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .32em;
  line-height: 1.4;
  text-transform: uppercase;
}

.luma-commerce-footer-part .footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.luma-commerce-footer-part .footer-links li:has(> a[href="#"]),
.luma-commerce-footer-part .footer-socials a[href="#"] {
  display: none;
}

.luma-commerce-footer-part .footer-links a {
  color: #2f2f2c;
  font-size: .72rem;
  letter-spacing: .06em;
  line-height: 1.55;
  text-decoration: none;
  text-underline-offset: .3em;
  transition: color 180ms ease;
}

.luma-commerce-footer-part .footer-links a:hover {
  color: #0a0a0a;
  text-decoration: underline;
}

.luma-commerce-footer-part :where(a):focus-visible {
  outline: 2px solid #0a0a0a;
  outline-offset: 3px;
}

.luma-commerce-footer-part .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #d5d5d0;
}

.luma-commerce-footer-part .footer-copy {
  color: #676762;
  font-size: .62rem;
  letter-spacing: .1em;
  line-height: 1.5;
}

.luma-commerce-footer-part .footer-socials {
  display: flex;
  gap: 22px;
}

.luma-commerce-footer-part .footer-socials:not(:has(a:not([href="#"]))) {
  display: none;
}

.luma-commerce-footer-part .footer-socials a {
  color: #676762;
  font-size: .6rem;
  letter-spacing: .22em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 781px) {
  .luma-commerce-footer-part > footer {
    padding: 48px 20px 28px;
  }

  .luma-commerce-footer-part .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }

  .luma-commerce-footer-part .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .luma-commerce-footer-part .footer-top {
    column-gap: 24px;
  }
}

@media (pointer: coarse) {
  .luma-commerce-footer-part .footer-links {
    gap: 0;
  }

  .luma-commerce-footer-part .footer-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .luma-commerce-footer-part .footer-links a {
    transition-duration: .01ms;
  }
}
