/*!****************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./src/scss/index.scss ***!
  \****************************************************************************************************************/
.lma-header-section {
  position: relative;
  z-index: 30;
}

.lma-header-wrapper {
  position: relative;
  width: 100%;
  color: var(--lma-header-color);
  background: var(--lma-header-background);
}
.lma-header-wrapper--transparent {
  background: transparent;
}

.lma-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--lma-header-height);
  color: inherit;
}
.lma-header a,
.lma-header summary,
.lma-header button {
  color: inherit;
}
.lma-header svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lma-header summary {
  list-style: none;
  cursor: pointer;
}
.lma-header summary::-webkit-details-marker {
  display: none;
}

.lma-header__logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin: 0;
  line-height: 0;
}

.lma-header__logo-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.lma-header__logo-image {
  display: block;
  width: min(var(--lma-header-logo-width), 100%);
  height: auto;
  max-height: calc(var(--lma-header-height) - 20px);
  object-fit: contain;
}

.lma-header__logo-text {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lma-header__desktop-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.lma-header__desktop-list,
.lma-header__desktop-submenu ul,
.lma-header__mobile-list,
.lma-header__mobile-submenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lma-header__desktop-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2.4rem, 3vw, 5.6rem);
}

.lma-header__desktop-item {
  position: relative;
}
.lma-header__desktop-item > a,
.lma-header__desktop-item > details > summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 0;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.lma-header__desktop-item > a::after,
.lma-header__desktop-item > details > summary::after {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}
.lma-header__desktop-item > a:hover::after,
.lma-header__desktop-item > a:focus-visible::after,
.lma-header__desktop-item > a.is-active::after,
.lma-header__desktop-item > details > summary:hover::after,
.lma-header__desktop-item > details > summary:focus-visible::after,
.lma-header__desktop-item > details > summary.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.lma-header__desktop-item--mega {
  position: static;
}

.lma-header__desktop-submenu > summary svg {
  position: static;
  flex: 0 0 auto;
  width: 1rem;
  height: 0.6rem;
  transition: transform 180ms ease;
}
.lma-header__desktop-submenu[open] > summary svg {
  transform: rotate(180deg);
}
.lma-header__desktop-submenu > ul {
  position: absolute;
  top: calc(100% - 0.4rem);
  left: 50%;
  z-index: 4;
  min-width: 20rem;
  padding: 1.2rem;
  color: var(--lma-header-drawer-color);
  background: var(--lma-header-drawer-background);
  border-radius: 0.4rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}
.lma-header__desktop-submenu > ul a {
  display: block;
  padding: 1rem 1.2rem;
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
}
.lma-header__desktop-submenu > ul a:hover, .lma-header__desktop-submenu > ul a:focus-visible, .lma-header__desktop-submenu > ul a[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.lma-header__mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 5;
  width: 100%;
  color: var(--lma-header-drawer-color);
  background: var(--lma-header-drawer-background);
  border-top: 1px solid rgba(128, 128, 128, 0.18);
  border-radius: 0 0 0.4rem 0.4rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}

.lma-header-wrapper--transparent .lma-header__mega-menu {
  border-radius: 0.4rem;
}

.lma-header__mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 2.28fr);
  gap: clamp(2.8rem, 4vw, 6rem);
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.lma-header__mega-heading {
  margin: 0;
  color: inherit;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.lma-header__mega-navigation {
  min-width: 0;
}
.lma-header__mega-navigation .lma-header__mega-heading::after {
  display: block;
  width: 14rem;
  max-width: 100%;
  height: 1px;
  margin-top: 2.4rem;
  background: currentColor;
  content: "";
}
.lma-header__mega-navigation ul {
  display: grid;
  gap: 0.2rem;
  padding: 1.8rem 0 0;
  margin: 0;
  list-style: none;
}
.lma-header__mega-navigation a {
  display: block;
  padding: 0.9rem 0;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.3;
  text-decoration: none;
}
.lma-header__mega-navigation a:hover, .lma-header__mega-navigation a:focus-visible, .lma-header__mega-navigation a[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.lma-header__mega-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 2.5vw, 3.2rem);
}
.lma-header__mega-cards--single {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.lma-header__mega-card {
  position: relative;
  display: flex;
  height: clamp(28rem, 20vw, 31rem);
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #2d2d2d;
  border-radius: 0.4rem;
}

.lma-header__mega-card-image,
.lma-header__mega-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lma-header__mega-card-image {
  object-fit: cover;
}

.lma-header__mega-card-shade {
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.lma-header__mega-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(1.6rem, 2vw, 2.4rem);
}
.lma-header__mega-card-content h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(2.6rem, 2.7vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 1px 0.8rem rgba(0, 0, 0, 0.24);
}
.lma-header__mega-card-content p {
  margin: 1.2rem 0 0;
  color: inherit;
  font-size: clamp(1.4rem, 1.25vw, 1.7rem);
  line-height: 1.35;
  text-shadow: 0 1px 0.6rem rgba(0, 0, 0, 0.28);
}

.lma-header__mega-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.2rem 1.6rem;
  margin-top: 2.4rem;
  color: #111 !important;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0.3rem;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}
.lma-header__mega-card-button:hover, .lma-header__mega-card-button:focus-visible {
  color: #fff !important;
  background: #111;
}

.lma-header__actions {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-items: center;
  justify-self: end;
  gap: 0.4rem;
}

.lma-header__action,
.lma-header__mobile-trigger,
.lma-header__desktop-action .header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  padding: 1rem;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: none;
}

.lma-header__desktop-action {
  color: inherit;
}
.lma-header__desktop-action .header__search,
.lma-header__desktop-action .header__icon {
  color: inherit;
}

.lma-header__icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}

.lma-header__cart {
  position: relative;
  flex: 0 0 4.4rem;
  padding: 0;
}
.lma-header__cart .lma-header__icon,
.lma-header__cart > .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 4.4rem;
  width: 4.4rem;
  height: 4.4rem;
}

.lma-header__cart-count,
.lma-header__cart .cart-count-bubble {
  position: absolute;
  top: 0.3rem;
  right: 0.1rem;
  bottom: auto;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  width: auto;
  height: 1.7rem;
  padding: 0 0.4rem;
  color: #fff;
  background: #000;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
}

.lma-header__drawer {
  display: none;
}

body.lma-menu-open {
  overflow: hidden;
}

@media screen and (max-width: 989px) {
  .lma-header {
    min-height: var(--lma-header-mobile-height);
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
  .lma-header__drawer {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .lma-header__mobile-trigger {
    padding-left: 0;
  }
  .lma-header__logo {
    grid-column: 2;
    justify-self: center;
  }
  .lma-header__logo-image {
    max-width: min(var(--lma-header-logo-width), 16rem);
    max-height: calc(var(--lma-header-mobile-height) - 18px);
  }
  .lma-header__logo-text {
    font-size: 2.4rem;
  }
  .lma-header__desktop-nav,
  .lma-header__desktop-action {
    display: none;
  }
  .lma-header__actions {
    gap: 0;
  }
  .lma-header__cart {
    padding: 0;
  }
  .lma-header__drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.48);
    border: 0;
  }
  .lma-header__drawer-panel {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 41;
    width: min(88vw, 38rem);
    padding: 2rem;
    overflow-y: auto;
    color: var(--lma-header-drawer-color);
    background: var(--lma-header-drawer-background);
    box-shadow: 1rem 0 3rem rgba(0, 0, 0, 0.16);
  }
  .lma-header__drawer:not([open]) .lma-header__drawer-panel,
  .lma-header__drawer:not([open]) .lma-header__drawer-overlay {
    display: none;
  }
  .lma-header__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid currentColor;
  }
  .lma-header__drawer-title {
    font-family: var(--font-heading-family);
    font-size: 2rem;
    font-weight: 600;
  }
  .lma-header__drawer-close {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .lma-header__drawer-close svg {
    width: 100%;
    height: 100%;
  }
  .lma-header__mobile-nav {
    padding-top: 1.6rem;
  }
  .lma-header__mobile-list > li > a,
  .lma-header__mobile-list .lma-header__mobile-submenu > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.4rem 0;
    color: inherit;
    font-size: 1.7rem;
    line-height: 1.3;
    text-decoration: none;
    border-bottom: 1px solid rgba(128, 128, 128, 0.24);
  }
  .lma-header__mobile-submenu > summary svg {
    width: 1.2rem;
    height: 0.7rem;
    transition: transform 180ms ease;
  }
  .lma-header__mobile-submenu[open] > summary svg {
    transform: rotate(180deg);
  }
  .lma-header__mobile-submenu ul {
    padding: 0.6rem 0 0.8rem 1.6rem;
  }
  .lma-header__mobile-submenu ul a {
    display: block;
    padding: 1rem 0;
    color: inherit;
    font-size: 1.5rem;
    text-decoration: none;
  }
  .lma-header__mobile-submenu--mega .lma-header__mobile-mega-content {
    padding: 1.6rem 0 1rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mobile-mega-cards {
    display: grid;
    gap: 1.4rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-card-content {
    padding: 1.8rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-card-content h3 {
    font-size: 2.8rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-card-content p {
    font-size: 1.4rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-card-button {
    min-height: 4.6rem;
    margin-top: 1.8rem;
    font-size: 1.5rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-heading {
    padding: 2.4rem 0 0;
    font-size: 1.7rem;
  }
  .lma-header__mobile-submenu--mega .lma-header__mega-heading::after {
    display: block;
    width: 14rem;
    max-width: 100%;
    height: 1px;
    margin: 1.6rem 0;
    background: currentColor;
    content: "";
  }
  .lma-header__mobile-submenu--mega .lma-header__mobile-mega-links {
    padding: 0;
  }
}
.lma-banner {
  position: relative;
  width: 100%;
}
.lma-banner--contained {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.lma-banner--contained .lma-banner__frame {
  max-width: var(--page-width);
  margin-right: auto;
  margin-left: auto;
}

.lma-banner__frame {
  position: relative;
  min-height: var(--lma-banner-desktop-height);
  overflow: hidden;
  background: #dadada;
  border-radius: var(--lma-banner-radius);
  isolation: isolate;
}

.lma-banner__media,
.lma-banner__media picture,
.lma-banner__frame .lma-banner__overlay,
.lma-banner__frame .lma-banner__vignette {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.lma-banner__image,
.lma-banner__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lma-banner__placeholder {
  background: #d5d5d5;
}

.lma-banner__overlay {
  z-index: 1;
  background: var(--lma-banner-overlay);
  opacity: var(--lma-banner-overlay-opacity);
  pointer-events: none;
}

.lma-banner__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  width: min(100%, var(--page-width));
  padding: var(--lma-banner-desktop-padding);
  margin: auto;
}
.lma-banner__inner--desktop-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.lma-banner__inner--desktop-top-center {
  align-items: flex-start;
  justify-content: center;
}
.lma-banner__inner--desktop-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.lma-banner__inner--desktop-middle-left {
  align-items: center;
  justify-content: flex-start;
}
.lma-banner__inner--desktop-middle-center {
  align-items: center;
  justify-content: center;
}
.lma-banner__inner--desktop-middle-right {
  align-items: center;
  justify-content: flex-end;
}
.lma-banner__inner--desktop-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.lma-banner__inner--desktop-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.lma-banner__inner--desktop-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.lma-banner__inner--align-left {
  text-align: left;
}
.lma-banner__inner--align-center {
  text-align: center;
}
.lma-banner__inner--align-right {
  text-align: right;
}

.lma-banner__content {
  width: min(100%, var(--lma-banner-content-width));
}

.lma-banner__trust {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lma-banner__stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
    color: #00b67a;
}

.lma-banner__stars span {
  display: grid;
  place-items: center;
  line-height: 1;
}

.lma-banner__stars svg {
  display: block;
    width: 11.8rem;
    height: 2.2rem;
}
.lma-banner__trust-text {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.6rem 1.2rem;
  color: var(--lma-trust-text-color);
  background: none;
}

.lma-banner__vignette {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%),
    linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 35%),
    linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 22%),
    linear-gradient(to left, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 22%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.lma-banner__title {
  margin: 0 0 1rem;
  color: var(--lma-title-color);
  font-family: var(--font-heading-family);
  font-size: var(--lma-title-size);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.lma-banner__subtitle {
  margin: 0 0 2.4rem;
  color: var(--lma-subtitle-color);
  font-size: var(--lma-subtitle-size);
  line-height: 1.45;
}

.lma-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  min-height: 4.8rem;
  padding: 1.2rem 2.8rem;
  color: var(--lma-button-color);
  background: var(--lma-button-background);
  border: 1px solid var(--lma-button-background);
  border-radius: var(--lma-button-radius);
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.lma-banner__button:hover, .lma-banner__button:focus-visible {
  color: var(--lma-button-hover-color);
  background: var(--lma-button-hover-background);
  border-color: var(--lma-button-hover-background);
}
.lma-banner__button[aria-disabled=true] {
  cursor: default;
}
.lma-banner__button + .lma-banner__button {
  margin-left: 1rem;
}

@media screen and (max-width: 749px) {
  .lma-banner--contained {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .lma-banner__frame {
    min-height: var(--lma-banner-mobile-height);
  }
  .lma-banner__inner {
    width: 100%;
    padding: var(--lma-banner-mobile-padding);
  }
  .lma-banner__inner--mobile-top-left {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .lma-banner__inner--mobile-top-center {
    align-items: flex-start;
    justify-content: center;
  }
  .lma-banner__inner--mobile-top-right {
    align-items: flex-start;
    justify-content: flex-end;
  }
  .lma-banner__inner--mobile-middle-left {
    align-items: center;
    justify-content: flex-start;
  }
  .lma-banner__inner--mobile-middle-center {
    align-items: center;
    justify-content: center;
  }
  .lma-banner__inner--mobile-middle-right {
    align-items: center;
    justify-content: flex-end;
  }
  .lma-banner__inner--mobile-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .lma-banner__inner--mobile-bottom-center {
    align-items: flex-end;
    justify-content: center;
  }
  .lma-banner__inner--mobile-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
  }
  .lma-banner__inner--mobile-align-left {
    text-align: left;
  }
  .lma-banner__inner--mobile-align-center {
    text-align: center;
  }
  .lma-banner__inner--mobile-align-right {
    text-align: right;
  }
  .lma-banner__trust {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .lma-banner__stars {
    padding: 0.3rem;
  }
  .lma-banner__stars span {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 1.35rem;
  }
  .lma-banner__trust-text {
    padding: 0.5rem 0.9rem;
  }
  .lma-banner__title {
    margin-bottom: 1.4rem;
    font-size: var(--lma-title-mobile-size);
    line-height: 1.08;
  }
  .lma-banner__subtitle {
    margin-bottom: 2.2rem;
    font-size: var(--lma-subtitle-mobile-size);
    line-height: 1.35;
  }
  .lma-banner__button {
    min-width: min(100%, 20rem);
    min-height: 4.8rem;
  }
  .lma-banner__button + .lma-banner__button {
    margin-top: 1rem;
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-header *,
  .lma-banner__button {
    transition-duration: 0.01ms !important;
  }
}
.lma-bestsellers {
  width: 100%;
  padding-top: var(--lma-bestsellers-padding-top);
  padding-bottom: var(--lma-bestsellers-padding-bottom);
  overflow: hidden;
  background: #fff;
  color: #111;
}

.lma-bestsellers__header {
  margin-bottom: 2.4rem;
}

.lma-bestsellers__title {
  margin: 0 0 0.7rem;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(2.8rem, 3vw, 4rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lma-bestsellers__subtitle {
  max-width: 72rem;
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.45;
}

.lma-bestsellers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.lma-bestsellers__card {
  min-width: 0;
}

.lma-bestsellers__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f1f2f2;
  border-radius: 0.5rem;
  aspect-ratio: 0.92;
}

.lma-bestsellers__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, transform 240ms ease;
}

.lma-bestsellers__media:hover .lma-bestsellers__image {
  transform: scale(1.015);
}

.lma-bestsellers__placeholder {
  background: #f1f2f2;
}

.lma-bestsellers__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.lma-bestsellers__swatch {
  position: relative;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  background: var(--lma-swatch);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.3rem;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.lma-bestsellers__swatch::after {
  position: absolute;
  inset: -0.4rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  content: "";
}
.lma-bestsellers__swatch:hover, .lma-bestsellers__swatch:focus-visible {
  transform: translateY(-1px);
}
.lma-bestsellers__swatch[aria-pressed=true]::after {
  border-color: #111;
}

.lma-bestsellers__product-title {
  margin: 1.1rem 0 0.6rem;
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.lma-bestsellers__product-title a {
  color: inherit;
  text-decoration: none;
}

.lma-bestsellers__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1.3;
}
.lma-bestsellers__price s {
  color: rgba(17, 17, 17, 0.55);
  font-size: 1.2rem;
}

.lma-bestsellers__empty {
  padding: 3rem;
  background: #f4f4f4;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-bestsellers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3.2rem;
  }
}
@media screen and (max-width: 749px) {
  .lma-bestsellers {
    padding-top: calc(var(--lma-bestsellers-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-bestsellers-padding-bottom) * 0.7);
  }
  .lma-bestsellers__inner {
    padding-right: 0;
  }
  .lma-bestsellers__header {
    padding-right: 1.5rem;
    margin-bottom: 2rem;
  }
  .lma-bestsellers__title {
    font-size: 2.8rem;
  }
  .lma-bestsellers__subtitle {
    font-size: 1.3rem;
  }
  .lma-bestsellers__slider {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }
  .lma-bestsellers__grid {
    display: flex;
    gap: 0;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
  }
  .lma-bestsellers__card {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }
  .lma-bestsellers__swatches {
    margin-top: 1rem;
  }
  .lma-bestsellers__swatch {
    width: 2.5rem;
    height: 2.5rem;
  }
  .lma-bestsellers__product-title {
    font-size: 1.5rem;
  }
  .lma-bestsellers__price {
    font-size: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-bestsellers__image,
  .lma-bestsellers__swatch {
    transition-duration: 0.01ms !important;
  }
}
.lma-picture-products {
  width: 100%;
  padding-top: var(--lma-picture-products-padding-top);
  padding-bottom: var(--lma-picture-products-padding-bottom);
  background: #fff;
  color: #111;
}

.lma-picture-products__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(36rem, 1fr);
  align-items: stretch;
  gap: clamp(3.2rem, 4vw, 6.4rem);
}

.lma-picture-products__main-media {
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 0.5rem;
  aspect-ratio: 1.24;
}

.lma-picture-products__main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lma-picture-products__placeholder {
  background: #f3f3f3;
}

.lma-picture-products__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lma-picture-products__title {
  margin: 0 0 clamp(2.8rem, 3vw, 5rem);
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3.4rem, 3.5vw, 5rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lma-picture-products__items {
  display: grid;
  flex: 1 1 auto;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 2.6vw, 4.4rem);
}

.lma-picture-products__item {
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr) 5.6rem;
  align-items: center;
  min-height: 12rem;
  padding: 1.6rem 2rem;
  color: inherit;
  background: #f3f3f3;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}
.lma-picture-products__item[href]:hover, .lma-picture-products__item[href]:focus-visible {
  background: #ebebeb;
  transform: translateY(-1px);
}
.lma-picture-products__item[aria-disabled=true] {
  cursor: default;
}

.lma-picture-products__item-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: 8.8rem;
}

.lma-picture-products__item-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 11rem;
  object-fit: contain;
  object-position: center;
}

.lma-picture-products__item-placeholder {
  color: #aaa;
}

.lma-picture-products__item-wording {
  padding: 0 1.6rem;
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.2;
  text-align: center;
}

.lma-picture-products__arrow {
  display: block;
  width: 100%;
  color: inherit;
  transition: transform 180ms ease;
}
.lma-picture-products__arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.lma-picture-products__item[href]:hover .lma-picture-products__arrow,
.lma-picture-products__item[href]:focus-visible .lma-picture-products__arrow {
  transform: translateX(0.4rem);
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-picture-products__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(30rem, 0.9fr);
    gap: 3rem;
  }
  .lma-picture-products__item {
    grid-template-columns: 10rem minmax(0, 1fr) 4rem;
    min-height: 10rem;
    padding: 1.2rem;
  }
  .lma-picture-products__item-wording {
    padding: 0 1rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 749px) {
  .lma-picture-products {
    padding-top: calc(var(--lma-picture-products-padding-top) * 0.65);
    padding-bottom: calc(var(--lma-picture-products-padding-bottom) * 0.65);
  }
  .lma-picture-products__inner {
    display: block;
  }
  .lma-picture-products__main-media {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .lma-picture-products__title {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  .lma-picture-products__items {
    display: grid;
    grid-template-rows: none;
    gap: 1.2rem;
    width: 100%;
  }
  .lma-picture-products__item {
    grid-template-columns: minmax(8rem, 28%) minmax(0, 1fr) 4.2rem;
    width: 100%;
    min-height: 10.4rem;
    padding: 1.2rem 1.4rem;
  }
  .lma-picture-products__item-media {
    min-height: 8rem;
  }
  .lma-picture-products__item-image {
    max-height: 9rem;
  }
  .lma-picture-products__item-wording {
    padding: 0 1rem;
    font-size: 1.9rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-picture-products__item,
  .lma-picture-products__arrow {
    transition-duration: 0.01ms !important;
  }
}
.lma-brand-collections {
  width: 100%;
  padding-top: var(--lma-brand-collections-padding-top);
  padding-bottom: var(--lma-brand-collections-padding-bottom);
  overflow: hidden;
  background: #fff;
  color: #111;
}

.lma-brand-collections__header {
  margin-bottom: 2.8rem;
}

.lma-brand-collections__title {
  margin: 0 0 0.8rem;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lma-brand-collections__subtitle {
  max-width: 72rem;
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.45;
}

.lma-brand-collections__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.lma-brand-collections__card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  background: #f2f3f4;
  border-radius: 0.5rem;
  aspect-ratio: 0.8;
  text-decoration: none;
  isolation: isolate;
}
.lma-brand-collections__card[aria-disabled=true] {
  cursor: default;
}

.lma-brand-collections__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lma-brand-collections__placeholder {
  background: #f2f3f4;
}

.lma-brand-collections__card[href]:hover .lma-brand-collections__image,
.lma-brand-collections__card[href]:focus-visible .lma-brand-collections__image {
  transform: scale(1.02);
}

.lma-brand-collections__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.6rem;
  padding: 1.6rem 2.4rem;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.lma-brand-collections__wording {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(1.5rem, 1.3vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lma-brand-collections__arrow {
  display: block;
  flex: 0 0 4rem;
  width: 4rem;
  margin-left: 1.6rem;
  transition: transform 180ms ease;
}
.lma-brand-collections__arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.lma-brand-collections__card[href]:hover .lma-brand-collections__arrow,
.lma-brand-collections__card[href]:focus-visible .lma-brand-collections__arrow {
  transform: translateX(0.4rem);
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-brand-collections__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .lma-brand-collections {
    padding-top: calc(var(--lma-brand-collections-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-brand-collections-padding-bottom) * 0.7);
  }
  .lma-brand-collections__inner {
    padding-right: 0;
  }
  .lma-brand-collections__header {
    padding-right: 1.5rem;
    margin-bottom: 2rem;
  }
  .lma-brand-collections__title {
    font-size: 3rem;
  }
  .lma-brand-collections__subtitle {
    font-size: 1.3rem;
  }
  .lma-brand-collections__slider {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }
  .lma-brand-collections__grid {
    display: flex;
    gap: 0;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
  }
  .lma-brand-collections__card {
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }
  .lma-brand-collections__label {
    min-height: 6rem;
    padding: 1.4rem 1.8rem;
  }
  .lma-brand-collections__wording {
    font-size: 1.6rem;
  }
  .lma-brand-collections__arrow {
    flex-basis: 3.8rem;
    width: 3.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-brand-collections__image,
  .lma-brand-collections__arrow {
    transition-duration: 0.01ms !important;
  }
}
.lma-press-slider {
  --lma-press-slider-gap: clamp(48px, 5vw, 80px);
  --lma-press-slider-item-width: clamp(130px, 11vw, 170px);
  overflow: hidden;
  padding-block: var(--lma-press-slider-padding-top) var(--lma-press-slider-padding-bottom);
  background: var(--lma-press-slider-background);
}
.lma-press-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.lma-press-slider__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: lma-press-slider-scroll var(--lma-press-slider-speed) linear infinite;
}
.lma-press-slider__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
  min-width: 100vw;
  gap: var(--lma-press-slider-gap);
  padding-inline-end: var(--lma-press-slider-gap);
}
.lma-press-slider__item {
  flex: 0 0 var(--lma-press-slider-item-width);
  width: var(--lma-press-slider-item-width);
}
.lma-press-slider__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  color: inherit;
  text-decoration: none;
}
.lma-press-slider__image {
  display: block;
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.lma-press-slider__placeholder {
  height: 72px;
  color: #b7b7b7;
  background: #f3f3f3;
}
.lma-press-slider__empty {
  margin: 0;
  padding-inline: 20px;
  text-align: center;
}

@keyframes lma-press-slider-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media screen and (max-width: 749px) {
  .lma-press-slider {
    --lma-press-slider-gap: 9vw;
    --lma-press-slider-item-width: 32vw;
  }
  .lma-press-slider__link {
    min-height: 52px;
  }
  .lma-press-slider__image, .lma-press-slider__placeholder {
    max-height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-press-slider__track {
    animation-play-state: paused;
  }
}
.lma-video-dots {
  width: 100%;
  padding-block: var(--lma-video-dots-padding-top) var(--lma-video-dots-padding-bottom);
  color: var(--lma-video-dots-color);
  background: var(--lma-video-dots-background);
}
.lma-video-dots__header {
  max-width: 1100px;
  margin-bottom: clamp(2.8rem, 3vw, 4rem);
}
.lma-video-dots__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1.35;
}
.lma-video-dots__title {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3.2rem, 3.7vw, 5.2rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.lma-video-dots__media {
  width: 100%;
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 0.5rem;
}
.lma-video-dots__video, .lma-video-dots__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 2.3/1;
  object-fit: cover;
}
.lma-video-dots__placeholder {
  color: #b7b7b7;
}
.lma-video-dots__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(3.2rem, 7vw, 9rem);
  margin-top: 2.4rem;
}
.lma-video-dots__item {
  min-width: 0;
}
.lma-video-dots__item-title {
  margin: 0 0 1.6rem;
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
}
.lma-video-dots__scale {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.lma-video-dots__line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--lma-video-dots-color) 0 var(--lma-video-dots-progress), var(--lma-video-dots-inactive) var(--lma-video-dots-progress) 100%);
  transform: translateY(-50%);
}
.lma-video-dots__dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--lma-video-dots-inactive);
  border-radius: 50%;
}
.lma-video-dots__dot--active {
  background: var(--lma-video-dots-color);
}

@media screen and (max-width: 749px) {
  .lma-video-dots {
    padding-block: calc(var(--lma-video-dots-padding-top) * 0.7) calc(var(--lma-video-dots-padding-bottom) * 0.7);
  }
  .lma-video-dots__header {
    margin-bottom: 2.4rem;
  }
  .lma-video-dots__eyebrow {
    font-size: 1.4rem;
  }
  .lma-video-dots__title {
    font-size: 3rem;
  }
  .lma-video-dots__video, .lma-video-dots__placeholder {
    aspect-ratio: 1.25/1;
  }
  .lma-video-dots__items {
    grid-template-columns: 100%;
    gap: 3.2rem;
    margin-top: 2.8rem;
  }
  .lma-video-dots__item {
    width: 100%;
  }
  .lma-video-dots__item-title {
    margin-bottom: 1.3rem;
    font-size: 1.7rem;
  }
}
.lma-looks {
  width: 100%;
  padding-top: var(--lma-looks-padding-top);
  padding-bottom: var(--lma-looks-padding-bottom);
  overflow: hidden;
  color: #111;
  background: #fff;
}

.lma-looks__heading {
  margin: 0 0 2.8rem;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.lma-looks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.lma-looks__card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.lma-looks__media {
  width: 100%;
  overflow: hidden;
  background: #f2f3f4;
  border-radius: 0.5rem;
  aspect-ratio: 0.82;
}

.lma-looks__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lma-looks__card[href]:hover .lma-looks__image,
.lma-looks__card[href]:focus-visible .lma-looks__image {
  transform: scale(1.02);
}

.lma-looks__placeholder {
  color: #b7b7b7;
  background: #f2f3f4;
}

@media (prefers-reduced-motion: reduce) {
  .lma-looks__image {
    transition-duration: 0.01ms !important;
  }
}
.lma-looks__content {
  padding-top: 1.2rem;
}

.lma-looks__title {
  margin: 0 0 0.4rem;
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
}

.lma-looks__subtitle {
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.5rem;
  line-height: 1.25;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-looks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3.2rem;
  }
}
@media screen and (max-width: 749px) {
  .lma-looks {
    padding-top: calc(var(--lma-looks-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-looks-padding-bottom) * 0.7);
  }
  .lma-looks__inner {
    padding-right: 0;
  }
  .lma-looks__heading {
    padding-right: 1.5rem;
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .lma-looks__slider {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }
  .lma-looks__grid {
    display: flex;
    gap: 0;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
  }
  .lma-looks__card {
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }
  .lma-looks__content {
    padding-top: 1rem;
  }
  .lma-looks__title {
    font-size: 1.5rem;
  }
  .lma-looks__subtitle {
    font-size: 1.4rem;
  }
}
.lma-brand-statistics {
  width: 100%;
  padding-top: var(--lma-brand-statistics-padding-top);
  padding-bottom: var(--lma-brand-statistics-padding-bottom);
  overflow: hidden;
  color: #111;
  background: #fff;
}

.lma-brand-statistics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lma-brand-statistics__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
  padding: 0 3rem;
  text-align: center;
}

.lma-brand-statistics__item:not(:last-child)::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #d6d6d6;
  content: "";
}

.lma-brand-statistics__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.lma-brand-statistics__stars span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  background: #00b67a;
}
.lma-brand-statistics__stars svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

.lma-brand-statistics__title,
.lma-brand-statistics__subtitle {
  margin: 0;
}

.lma-brand-statistics__title {
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.lma-brand-statistics__subtitle {
  margin-top: 0.5rem;
  color: rgba(17, 17, 17, 0.65);
  font-size: clamp(1.7rem, 1.6vw, 2.2rem);
  line-height: 1.25;
}

@media screen and (max-width: 749px) {
  .lma-brand-statistics {
    padding-top: calc(var(--lma-brand-statistics-padding-top) * 0.75);
    padding-bottom: calc(var(--lma-brand-statistics-padding-bottom) * 0.75);
  }
  .lma-brand-statistics__slider {
    width: 100%;
    overflow: hidden;
  }
  .lma-brand-statistics__grid {
    display: flex;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
  }
  .lma-brand-statistics__item {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    padding: 0 1.5rem;
  }
  .lma-brand-statistics__item::after {
    display: none;
  }
  .lma-brand-statistics__title {
    font-size: 2.4rem;
  }
  .lma-brand-statistics__subtitle {
    font-size: 1.8rem;
  }
}
.lma-brand-history {
  width: 100%;
  padding-top: var(--lma-brand-history-padding-top);
  padding-bottom: var(--lma-brand-history-padding-bottom);
  color: #111;
  background: #fff;
}

.lma-brand-history__heading {
  max-width: 900px;
  margin: 0 auto clamp(4.8rem, 7vw, 9rem);
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3.6rem, 4vw, 5.6rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-align: center;
}

.lma-brand-history__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(4rem, 6vw, 8rem);
}

.lma-brand-history__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lma-brand-history__timeline {
  --lma-brand-history-gap: clamp(5rem, 6vw, 8rem);
  display: grid;
  gap: var(--lma-brand-history-gap);
  padding-left: 4rem;
}

.lma-brand-history__item {
  position: relative;
}

.lma-brand-history__item::before {
  position: absolute;
  top: 0.45rem;
  left: -3.95rem;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  background: #111;
  border-radius: 50%;
  content: "";
}

.lma-brand-history__item:not(:last-child)::after {
  position: absolute;
  top: 1rem;
  bottom: calc(0rem - var(--lma-brand-history-gap) - 1rem);
  left: -3.4rem;
  border-left: 1px dotted rgba(17, 17, 17, 0.65);
  content: "";
}

.lma-brand-history__tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.8rem;
  margin: 0 0 1.2rem;
  background: #f3f3f3;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.lma-brand-history__title {
  margin: 0 0 1.4rem;
  color: inherit;
  font-family: var(--font-body-family);
  font-size: clamp(2rem, 2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
}

.lma-brand-history__text {
  color: rgba(17, 17, 17, 0.65);
  font-size: 1.6rem;
  line-height: 1.5;
}

.lma-brand-history__text p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.lma-brand-history__text p:last-child {
  margin-bottom: 0;
}

.lma-brand-history__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 30rem;
  min-height: 5.6rem;
  padding: 1.4rem 2.8rem;
  margin-top: clamp(5rem, 7vw, 9rem);
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 0.3rem;
  font-size: 1.7rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.lma-brand-history__button[href]:hover,
.lma-brand-history__button[href]:focus-visible {
  color: #111;
  background: #fff;
}

.lma-brand-history__media,
.lma-brand-history__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lma-brand-history__media {
  min-height: 60rem;
  overflow: hidden;
  background: #f3f3f3;
  border-radius: 0.5rem;
}

.lma-brand-history__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lma-brand-history__placeholder {
  color: #b7b7b7;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-brand-history__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 4rem;
  }
  .lma-brand-history__media {
    min-height: 52rem;
  }
  .lma-brand-history__button {
    min-width: 24rem;
  }
}
@media screen and (max-width: 749px) {
  .lma-brand-history {
    padding-top: calc(var(--lma-brand-history-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-brand-history-padding-bottom) * 0.7);
  }
  .lma-brand-history__heading {
    margin-bottom: 3rem;
    font-size: 3.2rem;
    text-align: left;
  }
  .lma-brand-history__layout {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
  }
  .lma-brand-history__media {
    order: 1;
    min-height: 0;
    aspect-ratio: 1/1.15;
  }
  .lma-brand-history__content {
    order: 2;
  }
  .lma-brand-history__timeline {
    --lma-brand-history-gap: 4rem;
    padding-left: 3rem;
  }
  .lma-brand-history__item::before {
    left: -2.95rem;
  }
  .lma-brand-history__item:not(:last-child)::after {
    left: -2.4rem;
  }
  .lma-brand-history__tag {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .lma-brand-history__title {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .lma-brand-history__text {
    font-size: 1.5rem;
  }
  .lma-brand-history__button {
    align-self: stretch;
    min-width: 0;
    width: 100%;
    margin-top: 4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-brand-history__button {
    transition-duration: 0.01ms !important;
  }
}
.lma-instagram-grid {
  width: 100%;
  padding-top: var(--lma-instagram-grid-padding-top);
  padding-bottom: var(--lma-instagram-grid-padding-bottom);
  overflow: hidden;
  color: #111;
  background: #fff;
}

.lma-instagram-grid__header {
  margin-bottom: clamp(3.6rem, 4vw, 5.2rem);
  text-align: center;
}

.lma-instagram-grid__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 0;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  font-style: var(--font-heading-style);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.lma-instagram-grid__icon {
  flex: 0 0 clamp(3.4rem, 3.5vw, 4.8rem);
  width: clamp(3.4rem, 3.5vw, 4.8rem);
  height: clamp(3.4rem, 3.5vw, 4.8rem);
}

.lma-instagram-grid__subtitle {
  margin: 1.4rem 0 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

.lma-instagram-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.lma-instagram-grid__post {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  background: #f2f3f4;
  border-radius: 0.5rem;
  aspect-ratio: 1;
  text-decoration: none;
}

.lma-instagram-grid__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lma-instagram-grid__post[href]:hover .lma-instagram-grid__image,
.lma-instagram-grid__post[href]:focus-visible .lma-instagram-grid__image {
  transform: scale(1.025);
}

.lma-instagram-grid__placeholder {
  color: #b7b7b7;
  background: #f2f3f4;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-instagram-grid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .lma-instagram-grid {
    padding-top: calc(var(--lma-instagram-grid-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-instagram-grid-padding-bottom) * 0.7);
  }
  .lma-instagram-grid__inner {
    padding-right: 0;
  }
  .lma-instagram-grid__header {
    padding-right: 1.5rem;
    margin-bottom: 2.8rem;
  }
  .lma-instagram-grid__title {
    align-items: flex-start;
    gap: 1rem;
    font-size: 2.8rem;
  }
  .lma-instagram-grid__icon {
    flex-basis: 3rem;
    width: 3rem;
    height: 3rem;
  }
  .lma-instagram-grid__subtitle {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .lma-instagram-grid__slider {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }
  .lma-instagram-grid__grid {
    display: flex;
    gap: 0;
    width: 100%;
    box-sizing: content-box;
    transition-property: transform;
  }
  .lma-instagram-grid__post {
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-instagram-grid__image {
    transition-duration: 0.01ms !important;
  }
}
.lma-newsletter {
  width: 100%;
  padding-top: var(--lma-newsletter-padding-top);
  padding-bottom: var(--lma-newsletter-padding-bottom);
  color: #111;
  background: #fff;
}

.lma-newsletter__panel {
  padding: clamp(4rem, 5vw, 6.4rem) 2rem;
  background: #f3f3f3;
  border-radius: 0.5rem;
}

.lma-newsletter__content {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.lma-newsletter__header {
  margin-bottom: 2.8rem;
}

.lma-newsletter__title {
  margin: 0 0 0.8rem;
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(2.6rem, 2.5vw, 3.2rem);
  font-style: var(--font-heading-style);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lma-newsletter__subtitle {
  max-width: 40rem;
  font-size: 1.5rem;
  line-height: 1.35;
}

.lma-newsletter__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
}

.lma-newsletter__email-field {
  min-width: 0;
}

.lma-newsletter__input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 5.2rem;
  padding: 0 1.6rem;
  color: #111;
  background: #fff;
  border: 1px solid #777;
  border-radius: 0.4rem;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.lma-newsletter__input:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.lma-newsletter__button {
  min-width: 12rem;
  height: 5.2rem;
  padding: 0 2.2rem;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 0.4rem;
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.lma-newsletter__button:hover,
.lma-newsletter__button:focus-visible {
  color: #111;
  background: #fff;
}

.lma-newsletter__consent {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  line-height: 1.35;
  cursor: pointer;
}

.lma-newsletter__checkbox {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  margin: 0;
  accent-color: #111;
  cursor: pointer;
}

.lma-newsletter__message {
  display: block;
  margin: 1.4rem 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

.lma-newsletter__message--error {
  color: #b42318;
}

.lma-newsletter__message--success {
  color: #16794b;
}

@media screen and (max-width: 749px) {
  .lma-newsletter {
    padding-top: calc(var(--lma-newsletter-padding-top) * 0.7);
    padding-bottom: calc(var(--lma-newsletter-padding-bottom) * 0.7);
  }
  .lma-newsletter__outer {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .lma-newsletter__panel {
    padding: 3.2rem 2rem;
  }
  .lma-newsletter__header {
    margin-bottom: 2.4rem;
  }
  .lma-newsletter__title {
    font-size: 2.6rem;
  }
  .lma-newsletter__fields {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .lma-newsletter__button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-newsletter__button {
    transition-duration: 0.01ms !important;
  }
}
.lma-footer {
  width: 100%;
  padding-top: var(--lma-footer-padding-top);
  padding-bottom: var(--lma-footer-padding-bottom);
  color: #fff;
  background: #000;
}

.lma-footer a {
  color: inherit;
}

.lma-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(14rem, 0.6fr) minmax(14rem, 0.6fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 6vw, 8rem);
}

.lma-footer__brand-image {
  display: block;
  width: min(100%, var(--lma-footer-image-width));
  height: auto;
  max-height: 18rem;
  object-fit: contain;
  object-position: left top;
}

.lma-footer__brand-text {
  max-width: 52rem;
  margin: 0;
  font-family: var(--font-heading-family);
  font-size: clamp(4rem, 4vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.lma-footer__column-title {
  margin: 0 0 2.2rem;
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.25;
}

.lma-footer__main-links,
.lma-footer__socials,
.lma-footer__picker ul,
.lma-footer__bottom-menu ul,
.lma-footer__payments ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.lma-footer__main-links {
  display: grid;
  gap: 1.8rem;
}

.lma-footer__main-links a,
.lma-footer__bottom-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration: none;
  transition: color 180ms ease;
}

.lma-footer__main-links a:hover,
.lma-footer__main-links a:focus-visible,
.lma-footer__bottom-menu a:hover,
.lma-footer__bottom-menu a:focus-visible {
  color: #fff;
}

.lma-footer__follow-subtitle {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
  line-height: 1.35;
}

.lma-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.lma-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  color: #000;
  background: #fff;
  border-radius: 0.4rem;
  transition: opacity 180ms ease, transform 180ms ease;
}

.lma-footer__socials a:hover,
.lma-footer__socials a:focus-visible {
  opacity: 0.85;
  transform: translateY(-2px);
}

.lma-footer__socials svg {
  width: 2.2rem;
  height: 2.2rem;
}

.lma-footer__bottom {
  margin-top: clamp(5rem, 7vw, 9rem);
}

.lma-footer__bottom-row {
  display: flex;
  align-items: center;
}

.lma-footer__localization {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2.6rem;
}

.lma-footer__localization-form {
  margin: 0;
}

.lma-footer__picker {
  position: relative;
}

.lma-footer__picker summary,
.lma-footer__picker-static {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
}

.lma-footer__picker summary::-webkit-details-marker {
  display: none;
}

.lma-footer__picker summary svg {
  position: static;
  top: auto;
  right: auto;
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 0.7rem;
  margin: 0;
  transition: transform 180ms ease;
}

.lma-footer__picker[open] summary svg {
  transform: rotate(180deg);
}

.lma-footer__picker ul {
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
  z-index: 5;
  width: max-content;
  min-width: 18rem;
  max-height: 26rem;
  padding: 0.8rem;
  overflow-y: auto;
  color: #111;
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
}

body .announcement-bar-section {
  position: relative;
  z-index: 35;
}

.lma-announcement-bar__localization {
  gap: 1.6rem;
}
@media screen and (max-width: 749px) {
  .utility-bar .lma-announcement-bar__localization {
    display: none;
  }
}
.lma-announcement-bar__localization .lma-footer__picker ul {
  top: calc(100% + 1rem);
  bottom: auto;
  right: 0;
  left: auto;
  z-index: 35;
}

.lma-footer__picker button {
  width: 100%;
  padding: 0.9rem 1rem;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0.3rem;
  font: inherit;
  font-size: 1.3rem;
  text-align: left;
  cursor: pointer;
}

.lma-footer__picker button:hover,
.lma-footer__picker button:focus-visible,
.lma-footer__picker button[aria-current=true] {
  background: #f1f1f1;
}

.lma-footer__bottom-menu {
  min-width: 0;
}

.lma-footer__bottom-menu ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.6rem 3.2rem;
}

.lma-footer__payments {
  margin-top: 2.4rem;
}

.lma-footer__payments ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.lma-footer__payments li {
  display: flex;
}

.lma-footer__payment-icon {
  display: block;
  width: auto;
  height: 2.4rem;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr) minmax(24rem, 1fr);
    gap: 4rem;
  }
}
@media screen and (max-width: 749px) {
  .lma-footer {
    padding-top: calc(var(--lma-footer-padding-top) * 0.85);
    padding-bottom: calc(var(--lma-footer-padding-bottom) * 0.85);
  }
  .lma-footer__top {
    grid-template-columns: 1fr;
    gap: 5.6rem;
  }
  .lma-footer__brand-image {
    width: min(100%, var(--lma-footer-image-width));
    max-height: 14rem;
  }
  .lma-footer__brand-text {
    font-size: 4.2rem;
  }
  .lma-footer__column-title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .lma-footer__main-links {
    gap: 1.8rem;
  }
  .lma-footer__main-links a {
    font-size: 1.9rem;
  }
  .lma-footer__follow-subtitle {
    font-size: 1.7rem;
  }
  .lma-footer__socials {
    gap: 1.4rem;
    margin-top: 2.6rem;
  }
  .lma-footer__socials a {
    width: 6.4rem;
    height: 6.4rem;
  }
  .lma-footer__socials svg {
    width: 2.8rem;
    height: 2.8rem;
  }
  .lma-footer__bottom {
    margin-top: 6rem;
  }
  .lma-footer__bottom-row {
    display: block;
  }
  .lma-footer__localization {
    gap: 3rem;
  }
  .lma-footer__picker summary,
  .lma-footer__picker-static {
    font-size: 1.8rem;
  }
  .lma-footer__bottom-menu {
    margin-top: 3.2rem;
  }
  .lma-footer__bottom-menu ul {
    display: grid;
    gap: 1.8rem;
  }
  .lma-footer__bottom-menu a {
    font-size: 1.7rem;
  }
  .lma-footer__payments {
    margin-top: 3rem;
  }
  .lma-footer__payments ul {
    gap: 1rem;
  }
  .lma-footer__payment-icon {
    height: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-footer__main-links a,
  .lma-footer__bottom-menu a,
  .lma-footer__socials a,
  .lma-footer__picker summary svg {
    transition-duration: 0.01ms !important;
  }
}
.product__media-item.lma-product-pip-parent {
  position: relative;
}

.product__media-item > .lma-product-pip {
  aspect-ratio: var(--lma-product-pip-aspect-ratio, 1);
  background: #f3f3f3;
  border: 0.1rem solid rgba(17, 17, 17, 0.16);
  border-radius: 0.7rem;
  box-shadow: 0 0.2rem 0.7rem rgba(17, 17, 17, 0.08);
  left: clamp(1rem, 3%, 2.4rem);
  max-width: 18rem;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: clamp(1rem, 3%, 2.4rem);
  width: 28%;
  z-index: 2;
}

.lma-product-pip__video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lma-product-rating {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  max-width: 100%;
  white-space: nowrap;
}
.lma-product-rating__stars {
  display: flex;
  flex: 0 0 auto;
  gap: 0.2rem;
}
.lma-product-rating__stars span {
  align-items: center;
  background: #00b67a;
  color: #fff;
  display: inline-flex;
  font-size: 1.5rem;
  height: 2.1rem;
  justify-content: center;
  line-height: 1;
  width: 2.1rem;
}
.lma-product-rating__text {
  font-size: clamp(1.2rem, 1.25vw, 1.7rem);
  font-weight: 600;
  min-width: 0;
}

.lma-product-delivery {
  align-items: center;
  color: #00ad47;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 0.7rem;
}
.lma-product-delivery__dot {
  background: currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 0.7rem;
  width: 0.7rem;
}

.lma-product-benefits {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lma-product-benefits__item {
  align-items: center;
  background: #f3f3f3;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 11rem;
  min-width: 0;
  padding: 1.2rem 0.8rem;
  text-align: center;
}
.lma-product-benefits__icon {
  height: 4.8rem;
  margin-bottom: 0.7rem;
  object-fit: contain;
  width: 4.8rem;
}
.lma-product-benefits__text {
  color: #111;
  font-size: 1.25rem;
  line-height: 1.15;
}

.lma-bundle {
  display: block;
}
.lma-bundle__offers {
  border: 0;
  display: grid;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
}
.lma-bundle__offer {
  border: 0.1rem solid #d2d2d2;
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lma-bundle__offer.is-selected {
  border-color: #111;
  box-shadow: 0 0 0 0.05rem #111;
}
.lma-bundle__offer-heading {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 6.4rem minmax(0, 1fr) auto;
  min-height: 7.8rem;
  padding: 0.8rem;
}
.lma-bundle__offer-heading > input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 1px;
}
.lma-bundle__image {
  background: #f3f3f3;
  border: 0.1rem solid #ddd;
  border-radius: 0.4rem;
  height: 6.2rem;
  object-fit: cover;
  width: 6.4rem;
}
.lma-bundle__name {
  color: #111;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
  min-width: 0;
}
.lma-bundle__price {
  color: #111;
  font-size: 1.7rem;
  font-weight: 600;
  white-space: nowrap;
}
.lma-bundle__bundle-prices {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.lma-bundle__bundle-prices s {
  color: #777;
  font-size: 1.05rem;
  white-space: nowrap;
}
.lma-bundle__badge {
  background: #111;
  border-radius: 0.3rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.65rem 1rem;
  position: absolute;
  right: 1.8rem;
  top: -1.35rem;
  z-index: 1;
}
.lma-bundle__offer-content {
  border-top: 0.1rem solid #ddd;
  cursor: default;
  padding: 1.1rem 0.8rem 1.4rem;
}
.lma-bundle__offer-content[hidden] {
  display: none;
}
.lma-bundle__option-label {
  color: #111;
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}
.lma-bundle__variant-row {
  align-items: center;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(8rem, 11rem) auto minmax(0, 1fr);
}
.lma-bundle__variant-row + .lma-bundle__variant-row {
  margin-top: 1.1rem;
}
.lma-bundle__size {
  appearance: none;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 1.7rem) 50%, calc(100% - 1.2rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
  border: 0.1rem solid #d2d2d2;
  border-radius: 0.4rem;
  color: #111;
  font: inherit;
  height: 4.1rem;
  padding: 0 3.2rem 0 1.3rem;
  width: 100%;
}
.lma-bundle__option-arrow {
  color: #999;
  font-size: 1.8rem;
}
.lma-bundle__swatches {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  min-width: 0;
  overflow-x: auto;
  padding: 0.2rem;
  scrollbar-width: none;
}
.lma-bundle__swatches::-webkit-scrollbar {
  display: none;
}
.lma-bundle__swatch-carousel {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}
.lma-bundle__swatch-nav {
  align-items: center;
  align-self: stretch;
  background: #fff;
  border: 0.1rem solid #d2d2d2;
  border-radius: 0.3rem;
  color: #111;
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 2rem;
  justify-content: center;
  line-height: 1;
  min-height: 3.3rem;
  padding: 0;
  width: 2.4rem;
}
.lma-bundle__swatch-nav:disabled {
  cursor: default;
  opacity: 0.3;
}
.lma-bundle__swatch {
  background: var(--lma-swatch) center/cover no-repeat;
  border: 0.1rem solid #d2d2d2;
  border-radius: 0.4rem;
  box-sizing: border-box;
  flex: 0 0 3.3rem;
  height: 3.3rem;
  padding: 0;
  position: relative;
}
.lma-bundle__swatch.is-selected {
  border-color: #111;
  border-width: 0.2rem;
  box-shadow: inset 0 0 0 0.15rem #fff;
}
.lma-bundle__swatch.is-unavailable::after {
  background: #c45c68;
  content: "";
  height: 0.1rem;
  left: -0.3rem;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  width: calc(100% + 0.6rem);
}
.lma-bundle__size-guide-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.2rem;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.lma-bundle__delivery {
  border-top: 0.1rem solid #ddd;
  color: #111;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
}
.lma-bundle__submit-area {
  margin-top: 2.4rem;
}
.lma-bundle__submit {
  min-height: 5.2rem;
}
.lma-bundle__submit[aria-disabled=true] {
  cursor: wait;
}

.lma-bundle__swatch-carousel.is-overflowing {
  gap: 0.4rem;
  grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
}
.lma-bundle__swatch-carousel.is-overflowing .lma-bundle__swatch-nav {
  display: flex;
}

.lma-size-guide {
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 2rem;
  position: fixed;
  z-index: 10000;
}
.lma-size-guide[hidden] {
  display: none;
}
.lma-size-guide__dialog {
  background: #fff;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 4rem);
  max-width: 90rem;
  overflow: auto;
  position: relative;
  width: min(90vw, 90rem);
}
.lma-size-guide__image {
  display: block;
  height: auto;
  width: 100%;
}
.lma-size-guide__close {
  align-items: center;
  background: #111;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 2.4rem;
  height: 3.8rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 3.8rem;
  z-index: 1;
}

body.lma-size-guide-open {
  overflow: hidden;
}

.lma-product-reassurance {
  background: #f3f3f3;
  border-radius: 0.5rem;
  padding: 1.8rem;
}
.lma-product-reassurance__items {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lma-product-reassurance__item {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-align: center;
}
.lma-product-reassurance__icon {
  height: 4.2rem;
  margin-bottom: 0.8rem;
  object-fit: contain;
  width: 4.2rem;
}
.lma-product-reassurance__text {
  color: #111;
  font-size: 1.3rem;
  line-height: 1.15;
}
.lma-product-reassurance__payments {
  border-top: 0.1rem solid #d7d7d7;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
}
.lma-product-reassurance__payments .list-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.lma-product-reassurance__payments .list-payment__item {
  align-items: center;
  display: flex;
  margin: 0;
  padding: 0;
}

.product__accordion .lma-product-accordion__toggle {
  color: #999;
  font-size: 2rem;
  line-height: 1;
}
.product__accordion .lma-product-accordion__minus {
  display: none;
}
.product__accordion details[open] .lma-product-accordion__plus {
  display: none;
}
.product__accordion details[open] .lma-product-accordion__minus {
  display: inline;
}

@media screen and (max-width: 749px) {
  .lma-product-rating {
    gap: 0.55rem;
  }
  .lma-product-rating__stars {
    gap: 0.15rem;
  }
  .lma-product-rating__stars span {
    font-size: 1.2rem;
    height: 1.8rem;
    width: 1.8rem;
  }
  .lma-product-rating__text {
    font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  }
  .lma-product-benefits {
    gap: 0.8rem;
  }
  .lma-product-benefits__item {
    min-height: 10rem;
    padding: 1rem 0.4rem;
  }
  .lma-product-benefits__icon {
    height: 4rem;
    width: 4rem;
  }
  .lma-product-benefits__text {
    font-size: 1.1rem;
  }
  .lma-bundle__offer-heading {
    gap: 0.9rem;
    grid-template-columns: 5.8rem minmax(0, 1fr) auto;
  }
  .lma-bundle__image {
    height: 5.8rem;
    width: 5.8rem;
  }
  .lma-bundle__name, .lma-bundle__price {
    font-size: 1.45rem;
  }
  .lma-bundle__badge {
    font-size: 1.05rem;
    right: 1rem;
  }
  .lma-bundle__variant-row {
    gap: 0.7rem;
    grid-template-columns: 8.3rem auto minmax(0, 1fr);
  }
  .lma-bundle__size {
    height: 4rem;
    padding-left: 1rem;
  }
  .lma-bundle__swatches {
    gap: 0.6rem;
  }
  .lma-bundle__swatch {
    flex-basis: 3rem;
    height: 3rem;
  }
  .lma-product-reassurance {
    padding: 1.5rem 1rem;
  }
  .lma-product-reassurance__items {
    gap: 0.5rem;
  }
  .lma-product-reassurance__icon {
    height: 3.8rem;
    width: 3.8rem;
  }
  .lma-product-reassurance__text {
    font-size: 1.1rem;
  }
}
.lma-card-icons {
  background: #fff;
  color: #111;
  overflow: hidden;
  padding-bottom: var(--lma-card-icons-padding-bottom);
  padding-top: var(--lma-card-icons-padding-top);
  width: 100%;
}

.lma-card-icons__title {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.5vw, 4.8rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto 3.2rem;
  max-width: 85rem;
  text-align: center;
}

.lma-card-icons__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(var(--lma-card-icons-count), minmax(0, 1fr));
}

.lma-card-icons__card {
  aspect-ratio: 3/4;
  background: #e9e9e9;
  border-radius: 0.5rem;
  color: #fff;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.lma-card-icons__image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
  width: 100%;
}

.lma-card-icons__placeholder {
  background: #dedede;
}

.lma-card-icons__gradient {
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.lma-card-icons__icon-wrap {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0.8rem;
  display: flex;
  height: clamp(7rem, 8vw, 9.2rem);
  justify-content: center;
  left: 1.4rem;
  padding: 0.8rem;
  position: absolute;
  top: 1.4rem;
  width: clamp(7rem, 8vw, 9.2rem);
  z-index: 2;
}

.lma-card-icons__icon {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.lma-card-icons__content {
  bottom: 0;
  left: 0;
  padding: 2rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.lma-card-icons__card-title {
  color: inherit;
  font-size: clamp(1.9rem, 1.75vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.lma-card-icons__subtitle {
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  line-height: 1.45;
}

@media screen and (min-width: 750px) {
  .lma-card-icons__card:hover .lma-card-icons__image {
    transform: scale(1.015);
  }
}
@media screen and (max-width: 749px) {
  .lma-card-icons {
    padding-bottom: calc(var(--lma-card-icons-padding-bottom) * 0.7);
    padding-top: calc(var(--lma-card-icons-padding-top) * 0.7);
  }
  .lma-card-icons__inner {
    padding-right: 0;
  }
  .lma-card-icons__title {
    font-size: 3rem;
    margin: 0 1.5rem 2.2rem 0;
    text-align: left;
  }
  .lma-card-icons__slider {
    overflow: hidden;
    touch-action: pan-y;
    width: 100%;
  }
  .lma-card-icons__grid {
    box-sizing: content-box;
    display: flex;
    gap: 0;
    transition-property: transform;
    width: 100%;
  }
  .lma-card-icons__card {
    flex-shrink: 0;
    height: auto;
    width: 100%;
  }
  .lma-card-icons__content {
    padding: 1.7rem;
  }
  .lma-card-icons__card-title {
    font-size: 2rem;
  }
  .lma-card-icons__subtitle {
    font-size: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-card-icons__image {
    transition-duration: 0.01ms !important;
  }
}
.lma-review-carousel {
  background: #fff;
  color: #111;
  padding-top: var(--lma-review-carousel-padding-top);
  padding-bottom: var(--lma-review-carousel-padding-bottom);
}

.lma-review-carousel__rating {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.lma-review-carousel__rating-text {
  font-size: 1.6rem;
}
.lma-review-carousel__rating-stars {
  align-items: center;
  color: #00b67a;
  display: flex;
  gap: 0.2rem;
}
.lma-review-carousel__rating-stars svg {
  width: 1.6rem;
  height: 1.6rem;
}

.lma-review-carousel__title {
  margin: 0 0 3.2rem;
  text-align: center;
  font-size: clamp(2.6rem, 3vw, 3.8rem);
  font-weight: 600;
}

.lma-review-carousel__slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.lma-review-carousel__slider::-webkit-scrollbar {
  display: none;
}

.lma-review-carousel__track {
  align-items: stretch;
  display: flex;
  gap: 1.6rem;
}

.lma-review-carousel__card {
  background: none;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0;
  scroll-snap-align: start;
  width: min(32rem, 78vw);
}

.lma-review-carousel__photo {
  margin-bottom: 1.6rem;
  position: relative;
}

.lma-review-carousel__image {
  aspect-ratio: 4/3;
  border-radius: 0.3rem;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.lma-review-carousel__photo-tag {
  background: #00b67a;
  border-radius: 0.3rem;
  bottom: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  left: 0.8rem;
  padding: 0.3rem 0.8rem;
  position: absolute;
}

.lma-review-carousel__card .lma-review-carousel__divider {
  background: #e2e2e2;
  display: block;
  height: 1px;
  margin: auto 0 1.4rem;
  width: 100%;
}

.lma-review-carousel__stars {
  color: #fff;
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 1rem;
}
.lma-review-carousel__stars span {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  display: grid;
  height: 2.1rem;
  place-items: center;
  width: 2.1rem;
}
.lma-review-carousel__stars span:last-child {
  border-right: 0;
}
.lma-review-carousel__stars svg {
    width: 11.3rem;
    height: 2.4rem;
}

.lma-review-carousel__card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.lma-review-carousel__card-text {
  color: #444;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 1.4rem;
}

.lma-review-carousel__card-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.lma-review-carousel__name {
  color: #111;
  font-size: 1.3rem;
  font-weight: 600;
}

.lma-review-carousel__date {
  color: #6b6b6b;
  font-size: 1.3rem;
}

.lma-comparison-table {
  background: #fff;
  color: #111;
  padding-bottom: var(--lma-comparison-padding-bottom);
  padding-top: var(--lma-comparison-padding-top);
  width: 100%;
}

.lma-comparison-table__title {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.lma-comparison-table__content {
  margin: 0 auto;
  max-width: 78rem;
}

.lma-comparison-table__products {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2.4rem;
}

.lma-comparison-table__product {
  margin: 0;
  min-width: 0;
}

.lma-comparison-table__image-wrap {
  aspect-ratio: 5/3;
  background: #f3f3f3;
  border: 0.1rem solid transparent;
  border-radius: 0.4rem;
  overflow: hidden;
}

.lma-comparison-table__product:first-child .lma-comparison-table__image-wrap {
  border-color: #111;
}

.lma-comparison-table__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lma-comparison-table__placeholder {
  background: #eee;
}

.lma-comparison-table__product-label {
  font-size: 1.4rem;
  line-height: 1.25;
  margin-top: 0.7rem;
  min-height: 1.75rem;
  text-align: center;
}

.lma-comparison-table__table {
  border: 0.1rem solid #dedede;
  border-radius: 0.4rem;
  overflow: hidden;
}

.lma-comparison-table__row {
  align-items: center;
  display: grid;
  font-size: 1.4rem;
  grid-template-columns: minmax(0, 1fr) 8rem 8rem;
  min-height: 4.8rem;
  padding: 0 1.4rem;
}
.lma-comparison-table__row--header {
  border-bottom: 0.1rem solid #dedede;
  font-weight: 600;
}
.lma-comparison-table__row--alternate {
  background: #f3f3f3;
}
.lma-comparison-table__row > :nth-child(2),
.lma-comparison-table__row > :nth-child(3) {
  text-align: center;
}

.lma-comparison-table__benefit {
  min-width: 0;
  padding-right: 1rem;
}

.lma-comparison-table__value {
  align-items: center;
  display: flex;
  justify-content: center;
}

.lma-comparison-table__check {
  align-items: center;
  background: #111;
  border-radius: 0.3rem;
  color: #fff;
  display: inline-flex;
  height: 1.7rem;
  justify-content: center;
  width: 1.7rem;
}
.lma-comparison-table__check svg {
  display: block;
  height: 1.3rem;
  width: 1.3rem;
}

.lma-comparison-table__dash {
  color: #666;
  font-size: 1.8rem;
  line-height: 1;
}

@media screen and (max-width: 749px) {
  .lma-comparison-table {
    padding-bottom: calc(var(--lma-comparison-padding-bottom) * 0.7);
    padding-top: calc(var(--lma-comparison-padding-top) * 0.7);
  }
  .lma-comparison-table__title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .lma-comparison-table__products {
    gap: 0.8rem;
    margin-bottom: 1.8rem;
  }
  .lma-comparison-table__product-label {
    font-size: 1.15rem;
  }
  .lma-comparison-table__row {
    font-size: 1.2rem;
    grid-template-columns: minmax(0, 1fr) minmax(5.6rem, 19%) minmax(5.6rem, 19%);
    min-height: 4.6rem;
    padding: 0 0.9rem;
  }
}
.lma-faq {
  background: #fff;
  color: #111;
  padding-bottom: var(--lma-faq-padding-bottom);
  padding-top: var(--lma-faq-padding-top);
  width: 100%;
}

.lma-faq__content {
  margin: 0 auto;
  max-width: 78rem;
}

.lma-faq__title {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3rem, 3.4vw, 4.6rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 2.8rem;
}

.lma-faq__items {
  display: grid;
  gap: 1rem;
}

.lma-faq__item {
  background: #f3f3f3;
  border-radius: 0.4rem;
  overflow: hidden;
}

.lma-faq__question {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.55rem;
  font-weight: 600;
  gap: 1.6rem;
  justify-content: space-between;
  line-height: 1.3;
  list-style: none;
  min-height: 5.4rem;
  padding: 1.3rem 1.6rem;
}
.lma-faq__question::-webkit-details-marker {
  display: none;
}
.lma-faq__question:focus-visible {
  outline: 0.2rem solid #111;
  outline-offset: -0.3rem;
}

.lma-faq__chevron {
  flex: 0 0 1.8rem;
  height: 1.8rem;
  transition: transform 180ms ease;
  width: 1.8rem;
}
.lma-faq__chevron svg {
  display: block;
  height: 100%;
  width: 100%;
}

.lma-faq__item[open] .lma-faq__chevron {
  transform: rotate(180deg);
}

.lma-faq__answer {
  border-top: 0.1rem solid rgba(17, 17, 17, 0.1);
  font-size: 1.35rem;
  line-height: 1.5;
  padding: 1.2rem 1.6rem 1.6rem;
}
.lma-faq__answer > :first-child {
  margin-top: 0;
}
.lma-faq__answer > :last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 749px) {
  .lma-faq {
    padding-bottom: calc(var(--lma-faq-padding-bottom) * 0.7);
    padding-top: calc(var(--lma-faq-padding-top) * 0.7);
  }
  .lma-faq__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .lma-faq__question {
    font-size: 1.4rem;
    min-height: 5.2rem;
    padding: 1.2rem 1.3rem;
  }
  .lma-faq__answer {
    font-size: 1.3rem;
    padding: 1.1rem 1.3rem 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-faq__chevron {
    transition-duration: 0.01ms !important;
  }
}
.lma-product-card {
  color: #111;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  width: 100%;
}

.lma-product-card__media {
  aspect-ratio: 0.92;
  background: #f1f2f2;
  border-radius: 0.5rem;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lma-product-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  width: 100%;
}

.lma-product-card__media:hover .lma-product-card__image {
  transform: scale(1.015);
}

.lma-product-card__placeholder {
  background: #f1f2f2;
}

.lma-product-card__badge {
  background: #151515;
  border-radius: 0.35rem;
  color: #fff;
  font-size: 1.15rem;
  left: 1rem;
  line-height: 1.2;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  padding: 0.55rem 0.75rem;
  position: absolute;
  text-overflow: ellipsis;
  top: 1rem;
  white-space: nowrap;
  z-index: 1;
}

.lma-product-card__details {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.lma-product-card__swatches {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
  min-height: 2.6rem;
  overflow-x: auto;
  padding: 0.1rem 0.3rem;
  scrollbar-width: none;
}
.lma-product-card__swatches::-webkit-scrollbar {
  display: none;
}

.lma-product-card__swatch {
  background: var(--lma-product-card-swatch);
  border: 0.1rem solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 0 transparent;
  cursor: pointer;
  flex: 0 0 2rem;
  height: 2rem;
  padding: 0;
  position: relative;
  transition: transform 150ms ease;
}
.lma-product-card__swatch:hover, .lma-product-card__swatch:focus-visible {
  transform: translateY(-0.1rem);
}
.lma-product-card__swatch[aria-pressed=true] {
  border-color: #111;
  border-width: 0.1rem;
  box-shadow: inset 0 0 0 0.12rem #fff;
}

.lma-product-card__swatch-more {
  align-items: center;
  color: rgba(17, 17, 17, 0.65);
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-size: 1.3rem;
  font-weight: 500;
  height: 2rem;
  justify-content: center;
  line-height: 1;
  padding: 0 0.2rem;
  text-decoration: none;
  transition: color 150ms ease;
}
.lma-product-card__swatch-more:hover, .lma-product-card__swatch-more:focus-visible {
  color: #111;
}
a.lma-product-card__swatch-more {
  margin-bottom: -2px;
}

.lma-product-card__title {
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0.9rem 0 0.5rem;
  min-height: 2.1rem;
}
.lma-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.lma-product-card__price {
  align-items: baseline;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  gap: 0.8rem;
  line-height: 1.3;
}
.lma-product-card__price s {
  color: rgba(17, 17, 17, 0.55);
  font-size: 1.2rem;
}

.lma-product-card--horizontal {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 10rem minmax(0, 1fr);
}
.lma-product-card--horizontal .lma-product-card__media {
  aspect-ratio: 1;
}
.lma-product-card--horizontal .lma-product-card__swatches {
  margin-top: 0;
}

@media screen and (max-width: 749px) {
  .lma-product-card__badge {
    font-size: 0.9rem;
    left: 0.6rem;
    padding: 0.35rem 0.5rem;
    top: 0.6rem;
  }
  .lma-product-card__swatches {
    gap: 0.45rem;
    margin-top: 0.8rem;
    min-height: 2rem;
    padding-inline: 0.2rem;
  }
  .lma-product-card__swatch {
    flex-basis: 1.8rem;
    height: 1.8rem;
  }
  .lma-product-card__swatch-more {
    font-size: 1.1rem;
    height: 1.8rem;
  }
  .lma-product-card__title {
    font-size: 1.2rem;
    margin: 0.55rem 0 0.2rem;
    min-height: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .lma-product-card__price {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .lma-product-card__price s {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-product-card__image,
  .lma-product-card__swatch,
  .lma-product-card__swatch-more {
    transition-duration: 0.01ms !important;
  }
}
.lma-collection-banner {
  color: #fff;
  height: var(--lma-collection-banner-height);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lma-collection-banner__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.lma-collection-banner__overlay {
  background: rgba(0, 0, 0, var(--lma-collection-banner-overlay));
  inset: 0;
  position: absolute;
  z-index: 1;
}

.lma-collection-banner__content.page-width {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-bottom: 6rem;
  padding-left: 7rem;
  padding-right: 7rem;
  padding-top: 2.2rem;
  position: relative;
  z-index: 2;
}

.lma-collection-banner__breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  gap: 0.8rem;
  line-height: 1.3;
}
.lma-collection-banner__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.lma-collection-banner__copy {
  max-width: 58rem;
}

.lma-collection-banner__title {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(4.2rem, 5vw, 7rem);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1.8rem;
}

.lma-collection-banner__subtitle {
  font-size: clamp(1.5rem, 1.4vw, 2rem);
  line-height: 1.45;
  max-width: 52rem;
}
.lma-collection-banner__subtitle p {
  margin: 0;
}

.lma-collection-banner--no-image {
  background: #24465a;
}

@media screen and (max-width: 749px) {
  .lma-collection-banner {
    height: var(--lma-collection-banner-mobile-height);
  }
  .lma-collection-banner__content.page-width {
    padding-bottom: 2.2rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-top: 1.5rem;
  }
  .lma-collection-banner__breadcrumb {
    font-size: 1.1rem;
    gap: 0.55rem;
  }
  .lma-collection-banner__title {
    font-size: 3.4rem;
    margin-bottom: 0.8rem;
  }
  .lma-collection-banner__subtitle {
    font-size: 1.35rem;
    line-height: 1.35;
  }
}
.lma-collection-grid {
  background: #fff;
  color: #111;
  padding-bottom: var(--lma-collection-grid-padding-bottom);
  padding-top: var(--lma-collection-grid-padding-top);
  width: 100%;
}

.lma-collection-grid__layout {
  display: grid;
  gap: 3.2rem;
  grid-template-columns: 22rem minmax(0, 1fr);
}
.lma-collection-grid__layout--no-filters {
  grid-template-columns: minmax(0, 1fr);
}

.lma-collection-grid__sidebar {
  align-self: start;
  padding-top: 5.4rem;
  position: sticky;
  top: 2rem;
}

.lma-collection-filter__group + .lma-collection-filter__group {
  margin-top: 3.4rem;
}

.lma-collection-filter__title,
.lma-collection-drawer__section h3 {
  color: inherit;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.lma-collection-filter__tag-list {
  display: grid;
  gap: 1rem;
}

.lma-collection-filter__option {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.35rem;
  gap: 1rem;
  line-height: 1.3;
  min-width: 0;
  position: relative;
}
.lma-collection-filter__option input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.lma-collection-filter__option input:focus-visible + .lma-collection-filter__checkbox {
  outline: 0.2rem solid #111;
  outline-offset: 0.2rem;
}
.lma-collection-filter__option input:checked + .lma-collection-filter__checkbox {
  background: #111;
  border-color: #111;
}
.lma-collection-filter__option input:checked + .lma-collection-filter__checkbox::after {
  border: solid #fff;
  border-width: 0 0.16rem 0.16rem 0;
  content: "";
  height: 0.7rem;
  left: 0.55rem;
  position: absolute;
  top: 0.28rem;
  transform: rotate(45deg);
  width: 0.35rem;
}

.lma-collection-filter__checkbox {
  background: #fff;
  border: 0.1rem solid #dedede;
  border-radius: 0.3rem;
  flex: 0 0 1.8rem;
  height: 1.8rem;
  position: relative;
  width: 1.8rem;
}

.lma-collection-filter__color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lma-collection-filter__color-option {
  cursor: pointer;
  position: relative;
}
.lma-collection-filter__color-option input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.lma-collection-filter__color-option input:checked + .lma-collection-filter__color::after,
.lma-collection-filter__color-option input:focus-visible + .lma-collection-filter__color::after {
  border-color: #111;
}

.lma-collection-filter__color {
  background: var(--lma-filter-color);
  border: 0.1rem solid rgba(17, 17, 17, 0.12);
  border-radius: 0.35rem;
  display: block;
  height: 3.2rem;
  position: relative;
  width: 3.2rem;
}
.lma-collection-filter__color::after {
  border: 0.1rem solid transparent;
  border-radius: 0.55rem;
  content: "";
  inset: -0.4rem;
  position: absolute;
}

.lma-collection-filter__clear {
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  margin-top: 2.8rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.lma-collection-grid__mobile-pills {
  display: none;
}

.lma-collection-grid__toolbar {
  align-items: center;
  border-bottom: 0.1rem solid #e5e5e5;
  display: flex;
  gap: 2.4rem;
  justify-content: flex-end;
  margin-bottom: 1.6rem;
  min-height: 3.8rem;
  padding-bottom: 1.2rem;
}

.lma-collection-grid__count {
  color: #666;
  font-size: 1.25rem;
}

.lma-collection-grid__sort {
  align-items: center;
  display: flex;
  font-size: 1.25rem;
  gap: 0.55rem;
  position: relative;
}
.lma-collection-grid__sort select {
  appearance: none;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  font: inherit;
  max-width: 17rem;
  padding: 0 1.6rem 0 0;
}

.lma-collection-grid__sort-chevron {
  pointer-events: none;
  position: absolute;
  right: 0;
}

.lma-collection-grid__list {
  display: grid;
  gap: 3.2rem 1.6rem;
  grid-template-columns: repeat(var(--lma-collection-grid-columns), minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.lma-collection-grid__item {
  min-width: 0;
}
.lma-collection-grid__item[hidden] {
  display: none;
}

.lma-collection-grid__empty {
  background: #f3f3f3;
  border-radius: 0.4rem;
  padding: 4rem 2rem;
  text-align: center;
}
.lma-collection-grid__empty p {
  margin: 0 0 1.4rem;
}
.lma-collection-grid__empty button {
  background: #111;
  border: 0;
  border-radius: 0.3rem;
  color: #fff;
  cursor: pointer;
  padding: 1rem 1.8rem;
}

.lma-collection-drawer {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}
.lma-collection-drawer.is-open {
  pointer-events: auto;
}
.lma-collection-drawer.is-open .lma-collection-drawer__overlay {
  opacity: 1;
}
.lma-collection-drawer.is-open .lma-collection-drawer__panel {
  transform: translateX(0);
}

.lma-collection-drawer__overlay {
  -webkit-backdrop-filter: blur(0.4rem);
  backdrop-filter: blur(0.4rem);
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 220ms ease;
  width: 100%;
}

.lma-collection-drawer__panel {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  max-width: 38rem;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: transform 240ms ease;
  width: 80vw;
}

.lma-collection-drawer__header {
  align-items: center;
  border-bottom: 0.1rem solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  padding: 1.8rem;
}
.lma-collection-drawer__header h2 {
  font-size: 2rem;
  margin: 0;
}
.lma-collection-drawer__header button {
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  padding: 0;
}

.lma-collection-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 2rem 1.8rem;
}

.lma-collection-drawer__section + .lma-collection-drawer__section {
  border-top: 0.1rem solid #e5e5e5;
  margin-top: 2.8rem;
  padding-top: 2.8rem;
}

.lma-collection-drawer__footer {
  border-top: 0.1rem solid #e5e5e5;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 2fr;
  padding: 1.4rem;
}
.lma-collection-drawer__footer button {
  border-radius: 0.3rem;
  cursor: pointer;
  font: inherit;
  min-height: 4.6rem;
}

.lma-collection-drawer__clear {
  background: #fff;
  border: 0.1rem solid #111;
  color: #111;
}

.lma-collection-drawer__apply {
  background: #111;
  border: 0.1rem solid #111;
  color: #fff;
}

body.lma-filter-drawer-open {
  overflow: hidden;
}

@media screen and (max-width: 989px) and (min-width: 750px) {
  .lma-collection-grid__layout {
    gap: 2rem;
    grid-template-columns: 18rem minmax(0, 1fr);
  }
  .lma-collection-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 749px) {
  .lma-collection-grid {
    padding-bottom: calc(var(--lma-collection-grid-padding-bottom) * 0.7);
    padding-top: calc(var(--lma-collection-grid-padding-top) * 0.7);
  }
  .lma-collection-grid__mobile-pills {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    overflow-x: auto;
    padding: 0.1rem;
    scrollbar-width: none;
  }
  .lma-collection-grid__mobile-pills::-webkit-scrollbar {
    display: none;
  }
  .lma-collection-grid__pill {
    align-items: center;
    background: #fff;
    border: 0.1rem solid #e1e1e1;
    border-radius: 99rem;
    color: #111;
    display: inline-flex;
    flex: 0 0 auto;
    font: inherit;
    font-size: 1.2rem;
    gap: 0.5rem;
    min-height: 3.8rem;
    padding: 0 1.5rem;
  }
  .lma-collection-grid__pill.is-active {
    background: #111;
    border-color: #111;
    color: #fff;
  }
  .lma-collection-grid__pill-count {
    align-items: center;
    background: currentColor;
    border-radius: 50%;
    color: inherit;
    display: inline-flex;
    font-size: 0;
    height: 0.6rem;
    width: 0.6rem;
  }
  .lma-collection-grid__pill-count[hidden] {
    display: none;
  }
  .lma-collection-grid__layout {
    display: block;
  }
  .lma-collection-grid__sidebar {
    display: none;
  }
  .lma-collection-grid__toolbar {
    border-bottom: 0;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.4rem;
    min-height: 2.6rem;
    padding-bottom: 0;
  }
  .lma-collection-grid__count,
  .lma-collection-grid__sort {
    font-size: 1.1rem;
  }
  .lma-collection-grid__sort select {
    max-width: 13rem;
  }
  .lma-collection-grid__list {
    gap: 2.4rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lma-collection-filter__option {
    font-size: 1.4rem;
  }
  .lma-collection-filter__color {
    height: 3.4rem;
    width: 3.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-collection-drawer__overlay,
  .lma-collection-drawer__panel {
    transition-duration: 0.01ms !important;
  }
}
.lma-contact {
  background: #fff;
  color: #111;
  padding-bottom: var(--lma-contact-padding-bottom);
  padding-top: var(--lma-contact-padding-top);
  width: 100%;
}

.lma-contact__header {
  margin: 0 auto 4.2rem;
  max-width: 68rem;
  text-align: center;
}

.lma-contact__eyebrow {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 0.2rem;
}

.lma-contact__title {
  color: inherit;
  font-family: var(--font-heading-family);
  font-size: clamp(3.2rem, 3.2vw, 4.4rem);
  font-style: var(--font-heading-style);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

.lma-contact__subtitle {
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.6rem;
  line-height: 1.35;
  margin-top: 2.8rem;
}

.lma-contact__panel {
  background: #f3f3f3;
  border-radius: 0.5rem;
  margin: 0 auto;
  max-width: 98rem;
  padding: 3.2rem 4.4rem;
}

.lma-contact__grid {
  display: grid;
  gap: 1.8rem 2.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lma-contact__field {
  min-width: 0;
}
.lma-contact__field--full {
  grid-column: 1/-1;
}
.lma-contact__field label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.lma-contact__field input,
.lma-contact__field select,
.lma-contact__field textarea {
  appearance: none;
  background: #fff;
  border: 0.1rem solid #d1d1d1;
  border-radius: 0.35rem;
  box-sizing: border-box;
  color: #111;
  display: block;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1.4;
  outline: none;
  width: 100%;
}
.lma-contact__field input::placeholder,
.lma-contact__field select::placeholder,
.lma-contact__field textarea::placeholder {
  color: #929292;
  opacity: 1;
}
.lma-contact__field input:focus-visible,
.lma-contact__field select:focus-visible,
.lma-contact__field textarea:focus-visible {
  border-color: #111;
  box-shadow: 0 0 0 0.1rem #111;
}
.lma-contact__field input,
.lma-contact__field select {
  height: 5.2rem;
  padding: 0 1.6rem;
}
.lma-contact__field select {
  cursor: pointer;
  padding-right: 4.8rem;
}
.lma-contact__field textarea {
  min-height: 15rem;
  padding: 1.4rem 1.6rem;
  resize: vertical;
}

.lma-contact__select-wrap {
  position: relative;
}
.lma-contact__select-wrap svg {
  height: 0.8rem;
  pointer-events: none;
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
}

.lma-contact__field-error {
  color: #b42318;
  display: block;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.lma-contact__status {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  gap: 0.8rem;
  margin: 0 0 2rem;
}
.lma-contact__status svg {
  flex: 0 0 1.8rem;
  height: 1.8rem;
  width: 1.8rem;
}
.lma-contact__status--error {
  color: #b42318;
}
.lma-contact__status--success {
  color: #16794b;
}

.lma-contact__actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
}

.lma-contact__button {
  background: #111;
  border: 0.1rem solid #111;
  border-radius: 0.35rem;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
  height: 5.2rem;
  min-width: 23rem;
  padding: 0 2.4rem;
  transition: background-color 180ms ease, color 180ms ease;
}
.lma-contact__button:hover, .lma-contact__button:focus-visible {
  background: #fff;
  color: #111;
}

.lma-contact__privacy {
  color: rgba(17, 17, 17, 0.58);
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 1rem 0 0;
  max-width: 24rem;
}

@media screen and (max-width: 749px) {
  .lma-contact {
    padding-bottom: calc(var(--lma-contact-padding-bottom) * 0.7);
    padding-top: calc(var(--lma-contact-padding-top) * 0.7);
  }
  .lma-contact__outer.page-width {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
  .lma-contact__header {
    margin-bottom: 3.4rem;
  }
  .lma-contact__eyebrow {
    font-size: 1.4rem;
  }
  .lma-contact__title {
    font-size: 2.8rem;
  }
  .lma-contact__subtitle {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
  .lma-contact__panel {
    padding: 2.6rem 1.6rem;
  }
  .lma-contact__grid {
    gap: 1.8rem;
    grid-template-columns: 1fr;
  }
  .lma-contact__field--full {
    grid-column: auto;
  }
  .lma-contact__field input,
  .lma-contact__field select {
    height: 5rem;
  }
  .lma-contact__field textarea {
    min-height: 14rem;
  }
  .lma-contact__button {
    min-width: 0;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-contact__button {
    transition-duration: 0.01ms !important;
  }
}
.lma-cart-drawer {
  --lma-cart-green: #00a86b;
}
.lma-cart-drawer .cart-drawer__overlay {
  backdrop-filter: blur(0.3rem);
  background: rgba(0, 0, 0, 0.25);
}

.drawer .drawer__inner.lma-cart-drawer__inner {
  background: #fff;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: 100%;
  max-width: calc(100vw - 3rem);
  overflow: hidden;
  padding: 0;
  width: min(var(--lma-cart-drawer-width), 100vw - 3rem);
}

.drawer .drawer__inner.lma-cart-drawer__inner--has-recommendations {
  grid-template-columns: minmax(32rem, 38rem) minmax(48rem, var(--lma-cart-drawer-width));
  width: min(var(--lma-cart-drawer-width) + 38rem, 100vw - 3rem);
}

cart-drawer.is-empty .drawer__inner.lma-cart-drawer__inner {
  align-items: stretch;
  display: grid;
  grid-template-rows: none;
  padding: 0;
}

.lma-cart-drawer__main {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.lma-cart-drawer__header.drawer__header {
  border-bottom: 0.1rem solid #e4e4e4;
  flex: 0 0 auto;
  min-height: 7rem;
  padding: 1.6rem 2.4rem;
}
.lma-cart-drawer__header.drawer__header .drawer__close {
  right: 1.2rem;
  top: 1.3rem;
}

cart-drawer.is-empty .lma-cart-drawer__header.drawer__header {
  display: flex;
}

.lma-cart-drawer__heading {
  color: #111;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.lma-cart-drawer__heading span {
  color: #777;
  font-size: 1.5rem;
  font-weight: 400;
}

.lma-cart-shipping {
  border-bottom: 0.1rem solid #e8e8e8;
  flex: 0 0 auto;
  padding: 1.6rem 2.4rem 2rem;
}

.lma-cart-shipping__message {
  color: #111;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 1rem;
  text-align: left;
}

.lma-cart-shipping__track {
  background: #dfe7e3;
  border-radius: 999px;
  height: 0.7rem;
  position: relative;
}

.lma-cart-shipping__bar {
  background: linear-gradient(90deg, #a8e6b8, var(--lma-cart-green));
  border-radius: inherit;
  display: block;
  height: 100%;
  max-width: 100%;
  transition: width 250ms ease;
  width: var(--lma-cart-shipping-progress);
}

.lma-cart-shipping__icon {
  align-items: center;
  background: var(--lma-cart-green);
  border: 0.2rem solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 1rem;
  height: 2.2rem;
  justify-content: center;
  position: absolute;
  right: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
}

.lma-cart-drawer cart-drawer-items {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
}

.lma-cart-drawer .cart-drawer__form {
  display: block;
  flex: none;
}

.lma-cart-drawer.is-empty .cart-drawer__form {
  display: block;
}

.lma-cart-lines {
  padding: 0 2.4rem;
}

.lma-cart-drawer .lma-cart-line.cart-item {
  align-items: start;
  border-bottom: 0;
  display: grid;
  gap: 1.4rem;
  grid-template: auto/10rem minmax(0, 1fr) !important;
  margin: 0;
  padding: 2rem 0;
}

.lma-cart-line__media {
  background: #f3f3f3;
  border-radius: 0.5rem;
  display: block;
  overflow: hidden;
  width: 100%;
}

.lma-cart-line__image {
  aspect-ratio: 0.92;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.lma-cart-line__content {
  min-width: 0;
}

.lma-cart-line__top {
  align-items: flex-start;
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
}

.lma-cart-line__title {
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.lma-cart-line__price {
  align-items: flex-end;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  font-size: 1.4rem;
  line-height: 1.25;
}
.lma-cart-line__price s {
  color: #8b8b8b;
  font-size: 1.15rem;
}

.lma-cart-line__variant {
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27 viewBox=%270 0 10 6%27%3E%3Cpath d=%27m1 1 4 4 4-4%27 fill=%27none%27 stroke=%27%23111%27 stroke-linecap=%27round%27/%3E%3C/svg%3E") no-repeat right 1.2rem center;
  border: 0.1rem solid #d6d6d6;
  border-radius: 0.35rem;
  color: #111;
  display: block;
  field-sizing: content;
  font: inherit;
  font-size: 1.25rem;
  height: 3.8rem;
  margin-top: 1rem;
  max-width: 100%;
  padding: 0 3.2rem 0 1.2rem;
  width: auto;
}

.lma-cart-line__bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.lma-cart-line__quantity.quantity {
  background: #f3f3f3;
  border: 0.1rem solid #d6d6d6;
  border-radius: 0.4rem;
  min-height: 3.6rem;
  width: 11rem;
}
.lma-cart-line__quantity.quantity::before, .lma-cart-line__quantity.quantity::after {
  box-shadow: none !important;
  display: none !important;
}
.lma-cart-line__quantity.quantity .quantity__button {
  width: 3.4rem;
}
.lma-cart-line__quantity.quantity .quantity__button:first-child {
  border-right: 0.1rem solid #d6d6d6;
}
.lma-cart-line__quantity.quantity .quantity__button:last-child {
  border-left: 0.1rem solid #d6d6d6;
}
.lma-cart-line__quantity.quantity .quantity__input {
  font-size: 1.3rem;
}

.lma-cart-line__remove {
  background: transparent;
  border: 0;
  color: #777;
  cursor: pointer;
  height: 3.6rem;
  padding: 0.9rem;
  width: 3.6rem;
}
.lma-cart-line__remove svg {
  display: block;
  height: 100%;
  width: 100%;
}

.lma-cart-line__locked-quantity {
  align-items: center;
  background: #f3f3f3;
  border-radius: 0.35rem;
  color: #555;
  display: inline-flex;
  font-size: 1.25rem;
  height: 3.6rem;
  justify-content: center;
  min-width: 5.2rem;
}

.lma-cart-line__discounts {
  color: var(--lma-cart-green);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-top: 0.6rem;
}

.lma-cart-line__bundle-offer {
  color: var(--lma-cart-green);
  font-size: 1.1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.lma-cart-errors {
  color: #b42318;
  font-size: 1.2rem;
  padding: 0 2.4rem;
}

.lma-cart-footer.drawer__footer {
  background: #fff;
  border-top: 0;
  box-shadow: 0 -0.8rem 2.4rem rgba(0, 0, 0, 0.1);
  flex: 0 0 auto;
  padding: 1.8rem 2.4rem 2rem;
}

.lma-cart-promo {
  border: 0 !important;
  box-shadow: none !important;
}
.lma-cart-promo label {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.lma-cart-promo__summary {
  align-items: center;
  color: #111;
  cursor: pointer;
  display: flex;
  font-size: 1.3rem;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 0.4rem 0;
  border: 0 !important;
  box-shadow: none !important;
}
.lma-cart-promo__summary::-webkit-details-marker {
  display: none;
}

.lma-cart-promo__chevron {
  border-bottom: 0.15rem solid currentColor;
  border-right: 0.15rem solid currentColor;
  display: block;
  height: 0.8rem;
  margin-right: 0.3rem;
  transform: rotate(225deg);
  transition: transform 180ms ease;
  width: 0.8rem;
}

.lma-cart-promo[open] .lma-cart-promo__chevron {
  transform: rotate(45deg);
}

.lma-cart-promo:not([open]) > .lma-cart-promo__row,
.lma-cart-promo:not([open]) > .lma-cart-promo__status {
  display: none;
}

.lma-cart-promo__row {
  background: #f3f3f3;
  border-radius: 0.6rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1rem;
  padding: 0.5rem;
}
.lma-cart-promo__row input,
.lma-cart-promo__row button {
  border: 0;
  border-radius: 0.35rem;
  box-sizing: border-box;
  font: inherit;
  font-size: 1.3rem;
  height: 4.2rem;
}
.lma-cart-promo__row input {
  background: transparent;
  min-width: 0;
  padding: 0 1.2rem;
}
.lma-cart-promo__row button {
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 0 1.6rem;
}

.lma-cart-promo__status {
  color: var(--lma-cart-green);
  font-size: 1.1rem;
  margin: 0.5rem 0 0;
  min-height: 1.4rem;
}

.lma-cart-summary {
  margin-top: 0.6rem;
  padding-top: 0;
}

.lma-cart-summary__row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.lma-cart-summary__row--total {
  color: #111;
  font-size: 1.7rem;
}

.lma-cart-summary__prices {
  align-items: baseline;
  display: flex;
  gap: 1.8rem;
}
.lma-cart-summary__prices s {
  color: #929292;
  font-size: 1.45rem;
  font-weight: 400;
}

.lma-cart-summary__savings {
  align-items: baseline;
  color: var(--lma-cart-green);
  display: flex;
  font-size: 1.7rem;
  font-weight: 700;
  gap: 0.6rem;
  margin-top: 0.1rem;
  justify-content: space-between;
}

.lma-cart-checkout {
  align-items: center;
  background: #111;
  border: 0.1rem solid #111;
  border-radius: 1rem;
  color: #fff;
  display: flex;
  font-size: 1.5rem;
  font-weight: 600;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 5rem;
  padding: 1rem 2rem;
  text-decoration: none;
}

.lma-cart-payments {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}
.lma-cart-payments li {
  display: flex;
}

.lma-cart-payments__icon {
  height: auto;
  width: 3.8rem;
}

.lma-cart-trust {
  align-items: center;
  color: #111;
  display: flex;
  font-size: 1.15rem;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1rem;
  text-align: center;
}

.lma-cart-trust__stars {
  display: inline-flex;
  gap: 0.15rem;
}
.lma-cart-trust__stars span {
  color: #c9c9c9;
  font-size: 1.3rem;
  line-height: 1;
}
.lma-cart-trust__stars span.is-active {
  color: var(--lma-cart-green);
}

.lma-cart-empty {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2.4rem;
  text-align: center;
}
.lma-cart-empty h3 {
  font-size: 2rem;
}

.lma-cart-recommendations {
  background: #f3f3f3;
  color: #111;
  min-width: 0;
  padding: 2.4rem 2rem;
}

.lma-cart-recommendations--desktop {
  border-right: 0.1rem solid #ddd;
  height: 100%;
  overflow-y: auto;
}

.lma-cart-recommendations--mobile {
  display: none;
}

.lma-cart-recommendations__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 1.6rem;
}

.lma-cart-recommendations__track {
  display: grid;
  gap: 1.6rem;
}

.lma-cart-recommendation {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.lma-cart-recommendation__media {
  background: #ececec;
  display: block;
}

.lma-cart-recommendation__image {
  aspect-ratio: 1.05;
  display: block;
  object-fit: cover;
  width: 100%;
}

.lma-cart-recommendation__content {
  padding: 1.2rem;
}

.lma-cart-recommendation__name {
  color: #111;
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.lma-cart-recommendation__price {
  font-size: 1.25rem;
  margin-top: 0.4rem;
}

.lma-cart-recommendation__offer {
  color: var(--lma-cart-green);
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: 0.2rem;
}

.lma-cart-recommendation__actions {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1rem;
}

.lma-cart-recommendation__select,
.lma-cart-recommendation__add {
  border: 0.1rem solid #ccc;
  border-radius: 0.35rem;
  box-sizing: border-box;
  font: inherit;
  font-size: 1.15rem;
  height: 3.8rem;
}

.lma-cart-recommendation__select {
  background: #fff;
  field-sizing: content;
  min-width: 0;
  padding: 0 0.8rem;
  width: auto;
}

.lma-cart-recommendation__add {
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 0 1.2rem;
}

.lma-cart-drawer.is-loading .lma-cart-drawer__main,
.lma-cart-drawer.is-loading .lma-cart-recommendations {
  cursor: wait;
  opacity: 0.65;
  pointer-events: none;
}

@media screen and (min-width: 990px) {
  .lma-cart-drawer__header.drawer__header {
    align-items: flex-start;
    border-bottom-color: #aaa;
    min-height: 7.4rem;
    padding: 3rem 3rem 1.4rem;
  }
  .lma-cart-drawer__header.drawer__header .drawer__heading {
    margin-bottom: 0;
  }
  .lma-cart-drawer__header.drawer__header .drawer__close {
    right: 2.4rem;
    top: 2.4rem;
  }
  .lma-cart-shipping {
    padding: 3rem;
  }
  .lma-cart-lines {
    padding: 0 3rem;
  }
  .lma-cart-drawer .lma-cart-line.cart-item {
    gap: 1.4rem;
    grid-template: auto/14rem minmax(0, 1fr) !important;
    min-height: 0;
    padding: 1.2rem 0 !important;
    border: 0 !important;
  }
  .lma-cart-line__media {
    align-self: start;
    height: 14rem;
    width: 14rem;
  }
  .lma-cart-line__image {
    aspect-ratio: 1;
    height: 100%;
  }
  .lma-cart-line__content {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 14rem;
    padding-top: 0;
  }
  .lma-cart-line__title {
    font-size: 1.4rem;
  }
  .lma-cart-line__price {
    font-size: 1.35rem;
  }
  .lma-cart-line__price s {
    font-size: 1.05rem;
  }
  .lma-cart-line__variant {
    align-self: flex-start;
    font-size: 1.15rem;
    height: 3.4rem;
    margin-top: 0.8rem;
    max-width: 100% !important;
    width: auto !important;
  }
  .lma-cart-line__bottom {
    margin-top: auto;
  }
  .lma-cart-line__quantity.quantity,
  .lma-cart-line__locked-quantity {
    height: 3.4rem;
    min-height: 3.4rem;
  }
  .lma-cart-line__discounts {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
  .lma-cart-recommendations--desktop {
    padding: 3rem 2.4rem;
  }
  .lma-cart-recommendations__title {
    border-bottom: 0.1rem solid #aaa;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    padding-bottom: 1.4rem;
  }
  .lma-cart-recommendations__track {
    gap: 1.2rem;
  }
  .lma-cart-recommendation {
    align-items: stretch;
    display: grid;
    grid-template-columns: 12.5rem minmax(0, 1fr);
    height: 12.5rem;
  }
  .lma-cart-recommendation__media {
    height: 100%;
    overflow: hidden;
  }
  .lma-cart-recommendation__image {
    aspect-ratio: auto;
    height: 100%;
  }
  .lma-cart-recommendation__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 1.2rem;
  }
  .lma-cart-recommendation__name {
    font-size: 1.35rem;
  }
  .lma-cart-recommendation__price {
    font-size: 1.25rem;
    margin-top: 0.4rem;
  }
  .lma-cart-recommendation__actions {
    grid-template-columns: max-content auto;
    margin-top: auto;
    padding-top: 0.8rem;
  }
  .lma-cart-footer.drawer__footer {
    padding: 3rem 5rem 2.4rem;
  }
}
@media screen and (max-width: 989px) {
  .drawer .drawer__inner.lma-cart-drawer__inner,
  .drawer .drawer__inner.lma-cart-drawer__inner--has-recommendations {
    display: block;
    max-width: 100vw;
    width: min(100vw, var(--lma-cart-drawer-width));
  }
  .lma-cart-drawer__main {
    width: 100%;
  }
  .lma-cart-recommendations--desktop {
    display: none;
  }
  .lma-cart-recommendations--mobile {
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
  }
  .lma-cart-recommendations__track {
    display: flex;
    gap: 1.2rem;
    margin-right: -2rem;
    overflow-x: auto;
    padding-right: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .lma-cart-recommendations__track::-webkit-scrollbar {
    display: none;
  }
  .lma-cart-recommendation {
    display: grid;
    flex: 0 0 calc((100% - 1.2rem) / 1.2);
    grid-template-columns: 9rem minmax(0, 1fr);
    height: 11rem;
    scroll-snap-align: start;
  }
  .lma-cart-recommendation__media {
    height: 100%;
    overflow: hidden;
  }
  .lma-cart-recommendation__image {
    aspect-ratio: auto;
    height: 100%;
  }
  .lma-cart-recommendation__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.8rem 1rem;
  }
  .lma-cart-recommendation__actions {
    grid-template-columns: max-content auto;
    margin-top: auto;
  }
  .lma-cart-recommendation__select {
    align-self: start;
    max-width: 100%;
    width: auto !important;
  }
}
@media screen and (max-width: 749px) {
  .drawer .drawer__inner.lma-cart-drawer__inner,
  .drawer .drawer__inner.lma-cart-drawer__inner--has-recommendations {
    width: 100vw;
  }
  .lma-cart-drawer__header.drawer__header {
    align-items: center;
    min-height: 6.2rem;
    padding: 1.3rem 1.6rem;
  }
  .lma-cart-drawer__header.drawer__header .drawer__heading {
    margin: 0;
  }
  .lma-cart-drawer__header.drawer__header .drawer__close {
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .lma-cart-drawer__heading {
    font-size: 1.9rem;
  }
  .lma-cart-shipping {
    padding: 1.4rem 1.6rem 1.8rem;
  }
  .lma-cart-lines {
    padding: 0 1.6rem;
  }
  .lma-cart-drawer .lma-cart-line.cart-item {
    gap: 1.1rem;
    grid-template: auto/8.6rem minmax(0, 1fr) !important;
    padding: 1.6rem 0;
  }
  .lma-cart-line__title {
    font-size: 1.3rem;
  }
  .lma-cart-line__price {
    font-size: 1.25rem;
  }
  .lma-cart-line__variant {
    align-self: flex-start;
    background-position: right 0.9rem center;
    font-size: 1.05rem;
    height: 3.2rem;
    margin-top: 0.7rem;
    padding: 0 2.5rem 0 0.9rem;
    width: auto !important;
  }
  .lma-cart-line__bottom {
    margin-top: 0.7rem;
  }
  .lma-cart-line--free .lma-cart-line__bottom {
    gap: 0.7rem;
    justify-content: flex-start;
  }
  .lma-cart-drawer .lma-cart-line__quantity.quantity {
    height: 3.2rem !important;
    min-height: 3.2rem !important;
    width: 9.2rem;
  }
  .lma-cart-drawer .lma-cart-line__quantity.quantity .quantity__button {
    width: 2.8rem;
  }
  .lma-cart-drawer .lma-cart-line__quantity.quantity .quantity__input {
    font-size: 1.1rem;
  }
  .lma-cart-line__locked-quantity {
    font-size: 1.05rem;
    height: 3.2rem;
    min-width: 4.4rem;
  }
  .lma-cart-line__bundle-offer {
    font-size: 1rem;
  }
  .lma-cart-footer.drawer__footer {
    padding: 1.4rem 1.6rem 1.6rem;
  }
  .lma-cart-recommendations {
    padding: 2rem 1.6rem;
  }
  .lma-cart-recommendations__track {
    margin-right: -1.6rem;
    padding-right: 1.6rem;
  }
  .lma-cart-recommendation__select,
  .lma-cart-recommendation__add {
    font-size: 1.05rem;
    height: 3.2rem;
  }
  .lma-cart-recommendation__add {
    padding: 0 1rem;
  }
}
@media screen and (max-height: 760px) {
  .lma-cart-footer.drawer__footer {
    max-height: 45vh;
    overflow-y: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lma-cart-shipping__bar {
    transition-duration: 0.01ms !important;
  }
}
