/* Len Service footer redesign — 2026-08-25 */
.site-footer.len-footer {
  --len-footer-bg: #0b1726;
  --len-footer-bg-deep: #081321;
  --len-footer-line: rgba(255, 255, 255, 0.1);
  --len-footer-text: rgba(255, 255, 255, 0.68);
  --len-footer-text-soft: rgba(255, 255, 255, 0.52);
  --len-footer-heading: #f7fafc;
  --len-footer-accent: #09a66d;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 12%, rgba(20, 71, 102, 0.17), transparent 30%),
    linear-gradient(145deg, var(--len-footer-bg) 0%, #0d1b2c 58%, var(--len-footer-bg-deep) 100%);
  color: var(--len-footer-text);
}

/* The global .container stops at 1200px; the footer needs the full viewport. */
.len-footer .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1.25rem, 3vw, 4.5rem);
}

.len-footer a,
.len-footer button {
  -webkit-tap-highlight-color: transparent;
}

.len-footer a:focus-visible,
.len-footer button:focus-visible {
  outline: 2px solid var(--len-footer-accent);
  outline-offset: 3px;
}

.len-footer__main {
  padding-block: clamp(2.5rem, 4vw, 4.25rem) clamp(2rem, 3vw, 3rem);
}

.len-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(120px, 1fr)) minmax(170px, 0.95fr);
  gap: clamp(1.5rem, 2.4vw, 2.75rem);
  align-items: start;
}

.len-footer__brand {
  padding-right: clamp(0.5rem, 1.4vw, 1.5rem);
  border-right: 1px solid var(--len-footer-line);
}

.len-footer__logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}

.len-footer__logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
}

.len-footer__description {
  max-width: 29ch;
  margin: 0 0 1.25rem;
  color: var(--len-footer-text);
  font-size: 0.79rem;
  line-height: 1.7;
}

.len-footer__contact {
  display: grid;
  gap: 0.62rem;
  margin-bottom: 1.15rem;
  font-style: normal;
}

.len-footer__contact-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  color: var(--len-footer-text);
  font-size: 0.75rem;
  line-height: 1.5;
}

.len-footer__contact-row svg {
  width: 15px;
  height: 15px;
  margin-top: 0.12rem;
  color: var(--len-footer-accent);
  flex: none;
}

.len-footer__contact-row a {
  color: inherit;
  overflow-wrap: anywhere;
  transition: color 160ms ease;
}

.len-footer__contact-row a:hover {
  color: #fff;
}

.len-footer__quote {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.len-footer__quote svg {
  width: 15px;
  height: 15px;
  color: var(--len-footer-accent);
}

.len-footer__quote:hover {
  border-color: var(--len-footer-accent);
  background: rgba(9, 166, 109, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.len-footer__column {
  min-width: 0;
}

.len-footer__title {
  position: relative;
  margin: 0 0 1.15rem;
  padding-bottom: 0.7rem;
  color: var(--len-footer-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
}

.len-footer__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--len-footer-accent);
  content: "";
}

.len-footer__links {
  display: grid;
  gap: 0.68rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.len-footer__links li {
  margin: 0;
  padding: 0;
}

.len-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--len-footer-text);
  font-size: 0.75rem;
  line-height: 1.45;
  transition: color 150ms ease, transform 150ms ease;
}

.len-footer__link-icon {
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 1.65rem;
  color: var(--len-footer-accent);
  stroke-width: 1.55;
}

.len-footer__links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.len-footer__links--products a::after {
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  opacity: 0.7;
}

.len-footer__links .len-footer__all-products {
  color: var(--len-footer-accent);
  font-weight: 600;
}

.len-footer__social-copy {
  margin: 0 0 0.95rem;
  color: var(--len-footer-text);
  font-size: 0.75rem;
  line-height: 1.55;
}

.len-footer__socials {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  padding: 0 0 1.2rem;
  border-bottom: 1px solid var(--len-footer-line);
  list-style: none;
}

.len-footer__socials li {
  margin: 0;
}

.len-footer__socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.len-footer__socials a:hover {
  border-color: var(--len-footer-accent);
  background: var(--len-footer-accent);
  color: #fff;
}

.len-footer__socials svg {
  width: 16px;
  height: 16px;
}

.len-footer__trust-label {
  margin: 0 0 0.55rem;
  color: var(--len-footer-heading);
  font-size: 0.72rem;
  font-weight: 700;
}

.len-footer__trustbox {
  width: 100%;
  min-height: 52px;
  overflow: hidden;
}

.len-footer__trustbox .trustpilot-widget {
  min-height: 52px;
}

.len-footer__service-bands {
  margin-top: clamp(2rem, 3.2vw, 3.25rem);
  border-top: 1px solid var(--len-footer-line);
}

.len-footer__service-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
  min-height: 84px;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--len-footer-line);
}

.len-footer__service-heading {
  margin: 0 0 0.25rem;
  color: var(--len-footer-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.len-footer__service-text {
  margin: 0;
  color: var(--len-footer-text-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.len-footer__shipping-image,
.len-footer__payment-image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.len-footer__shipping-media {
  position: relative;
  display: block;
  width: min(330px, 100%);
  height: 52px;
  overflow: hidden;
}

.len-footer__shipping-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.len-footer__payment-image {
  height: 34px;
}

.len-footer__service-link,
.len-footer__secure-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--len-footer-text);
  font-size: 0.7rem;
  white-space: nowrap;
}

.len-footer__service-link {
  color: var(--len-footer-accent);
  font-weight: 600;
}

.len-footer__service-link:hover {
  color: #35c68f;
}

.len-footer__service-link svg,
.len-footer__secure-note svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.len-footer__bottom {
  padding-block: 1.15rem;
}

.len-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.len-footer__copyright {
  margin: 0;
  color: var(--len-footer-text-soft);
  font-size: 0.68rem;
  line-height: 1.5;
}

.len-footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.len-footer__legal-links li {
  display: flex;
  align-items: center;
  margin: 0;
}

.len-footer__legal-links li + li::before {
  width: 1px;
  height: 13px;
  margin-inline: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.len-footer__legal-links a,
.len-footer__legal-links button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--len-footer-text);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  line-height: 1.5;
  transition: color 150ms ease;
}

.len-footer__legal-links a:hover,
.len-footer__legal-links button:hover {
  color: #fff;
}

@media (max-width: 1180px) {
  .len-footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .len-footer__brand {
    grid-column: span 2;
  }

  .len-footer__social-column {
    border-left: 1px solid var(--len-footer-line);
    padding-left: 1.5rem;
  }
}

@media (max-width: 820px) {
  .len-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .len-footer__brand {
    grid-column: 1 / -1;
    padding: 0 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--len-footer-line);
  }

  .len-footer__description {
    max-width: 52ch;
  }

  .len-footer__social-column {
    border-left: 0;
    padding-left: 0;
  }

  .len-footer__service-row {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .len-footer__service-row > :last-child {
    grid-column: 2;
  }

  .len-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .len-footer__legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .len-footer__main {
    padding-top: 2.5rem;
  }

  .len-footer__top {
    grid-template-columns: 1fr;
  }

  .len-footer__brand,
  .len-footer__social-column {
    grid-column: auto;
  }

  .len-footer__column:not(.len-footer__social-column) {
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--len-footer-line);
  }

  .len-footer__links {
    gap: 0.72rem;
  }

  .len-footer__service-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-block: 1.35rem;
  }

  .len-footer__service-row > :last-child {
    grid-column: auto;
  }

  .len-footer__shipping-media {
    width: 100%;
    height: 58px;
  }

  .len-footer__payment-image {
    height: auto;
    max-height: 40px;
  }

  .len-footer__legal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 0.6rem 1.2rem;
  }

  .len-footer__legal-links li + li::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .len-footer *,
  .len-footer *::before,
  .len-footer *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
