:root {
  --yla-ink: #171717;
  --yla-paper: #f2f2f2;
  --yla-white: #fff;
  --yla-line: #d7d7d7;
}

body[data-template="index"] {
  background: var(--yla-paper) !important;
  color: var(--yla-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body[data-template="index"] .page-width,
body[data-template="index"] .yla-shell {
  width: min(100%, 1600px);
  max-width: none;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.2vw, 52px);
}

/* Announcement and navigation: preserve the store menu, apply YoungLA spacing. */
body[data-template="index"] .announcement-bar--container,
body[data-template="index"] .announcement-bar--list,
body[data-template="index"] .announcement-bar--item {
  min-height: 34px !important;
  background: #191919 !important;
  color: #fff !important;
}

body[data-template="index"] .announcement--text,
body[data-template="index"] .announcement__link {
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

body[data-template="index"] .header.section--padding {
  min-height: 92px !important;
  padding-block: 0 !important;
  border: 0 !important;
  background: #fff !important;
  color: var(--yla-ink) !important;
  box-shadow: none !important;
}

body[data-template="index"] header-layout,
body[data-template="index"] .header.is-sticky {
  background: #fff !important;
}

body[data-template="index"] .header__container {
  width: 100% !important;
  max-width: 1600px !important;
  min-height: 92px !important;
  margin-inline: auto !important;
  padding-inline: clamp(24px, 3.2vw, 52px) !important;
  column-gap: clamp(24px, 3vw, 48px) !important;
  background: #fff !important;
}

body[data-template="index"] :is(.header__heading, .header__heading-link) {
  width: 180px !important;
  min-width: 180px !important;
  height: 74px !important;
}

body[data-template="index"] .header__heading-logo {
  max-width: 180px !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

body[data-template="index"] .header__inline-nav {
  justify-self: center !important;
}

body[data-template="index"] .header-inline-menus {
  gap: clamp(20px, 2.35vw, 38px) !important;
}

body[data-template="index"] .header-inline-menus__item > :is(a, summary, .menus__link),
body[data-template="index"] .header-inline-menus__item > a {
  padding-block: 36px !important;
  color: #171717 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.055em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body[data-template="index"] .header-inline-menus__item:hover > :is(a, summary, .menus__link)::after {
  background: #171717 !important;
}

body[data-template="index"] .header__icons,
body[data-template="index"] .header__buttons {
  gap: 16px !important;
}

body[data-template="index"] .header__icon-button,
body[data-template="index"] .header__icons svg {
  color: #111 !important;
  stroke: currentColor !important;
}

body[data-template="index"] .mcs-nav-mega {
  top: 100% !important;
  left: 0 !important;
  width: 100vw !important;
  padding: 34px clamp(36px, 5vw, 80px) 42px !important;
  border: 0 !important;
  border-top: 1px solid #e6e6e6 !important;
  background: #fff !important;
  color: #222 !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08) !important;
}

body[data-template="index"] .mcs-nav-mega .megamenu__list {
  gap: 0 28px !important;
  padding: 0 !important;
}

body[data-template="index"] .mcs-nav-mega :is(.menus__link, .megamenu-list__item-title) {
  color: #2c2c2c !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.025em !important;
}

body[data-template="index"] .mcs-nav-feature {
  border-left: 1px solid #ddd !important;
  background: transparent !important;
}

body[data-template="index"] .mcs-nav-feature__eyebrow,
body[data-template="index"] .mcs-nav-feature__all {
  color: #171717 !important;
  font-family: inherit !important;
  letter-spacing: 0.1em !important;
}

/* Hero carousel */
.yla-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #07101f;
  cursor: grab;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  user-select: none;
  -webkit-user-select: none;
}

.yla-hero.is-dragging {
  cursor: grabbing;
}

.yla-hero__track {
  position: relative;
  height: clamp(440px, 38vw, 650px);
}

.yla-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: opacity 560ms ease, transform 340ms cubic-bezier(.2, .72, .25, 1);
  will-change: opacity, transform;
}

.yla-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.yla-hero.is-dragging .yla-hero__slide,
.yla-hero.is-settling .yla-hero__slide {
  transition: none;
}

.yla-hero.is-dragging .yla-hero__slide.is-drag-active,
.yla-hero.is-dragging .yla-hero__slide.is-drag-neighbour,
.yla-hero.is-settling .yla-hero__slide.is-drag-active,
.yla-hero.is-settling .yla-hero__slide.is-drag-neighbour {
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.yla-hero.is-settling .yla-hero__slide.is-drag-active,
.yla-hero.is-settling .yla-hero__slide.is-drag-neighbour {
  transition: transform 340ms cubic-bezier(.2, .72, .25, 1);
}

.yla-hero__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.yla-hero__slide > img.yla-hero__mobile-image {
  display: none;
}

.yla-hero__slide--custom {
  background: #101827;
}

.yla-hero__slide--custom::before {
  content: none;
}

.yla-hero__slide--custom::after {
  content: none;
}

.yla-hero__slide--custom > img {
  width: 100%;
  margin-left: 0;
  padding: 0;
  object-fit: cover;
  object-position: center center;
}

.yla-hero__custom-cover {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 45%;
  background: linear-gradient(90deg, #101827 0%, #101827 71%, rgba(16, 24, 39, .94) 81%, rgba(16, 24, 39, 0) 100%);
}

.yla-hero__custom-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(44px, 5.2vw, 92px);
  display: flex;
  max-width: 390px;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
}

.yla-hero__custom-copy small {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.yla-hero__custom-copy strong {
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 500;
  letter-spacing: .045em;
  line-height: .98;
}

.yla-hero__custom-copy p {
  margin: 20px 0 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.yla-hero__custom-copy > span {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
}

.yla-hero__custom-copy b {
  margin-left: 8px;
  font-weight: 400;
}

.yla-hero__custom-link {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
}

@media screen and (max-width: 959px) {
  .yla-hero [data-yla-desktop-only] {
    display: none !important;
  }
}

.yla-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 5, 16, 0.58), transparent 48%);
}

.yla-hero__copy {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.yla-hero__copy--left {
  top: 50%;
  left: clamp(28px, 6vw, 100px);
  transform: translateY(-48%);
}

.yla-hero__copy--bottom {
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
}

.yla-hero__copy p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.yla-hero__copy h1,
.yla-hero__copy h2 {
  margin: 0 0 28px;
  max-width: min(38vw, 560px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 82px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.yla-hero__copy a {
  display: inline-flex;
  min-width: 150px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.yla-hero__dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.yla-hero__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.yla-hero__dots button.is-active {
  background: #fff;
}

.yla-hero__scroll {
  position: absolute;
  bottom: -25px;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 3px 12px rgba(0,0,0,.14);
  font-size: 26px;
  text-decoration: none;
}

/* Product tabs */
.yla-products {
  padding: clamp(80px, 8vw, 120px) 0 clamp(74px, 7vw, 110px);
}

.yla-products__tabs {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 5vw, 72px);
  margin-bottom: 42px;
}

.yla-products__tabs button {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.yla-products__tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #111;
  content: "";
  opacity: 0;
}

.yla-products__tabs button.is-active::after {
  opacity: 1;
}

.yla-products__panel[hidden] {
  display: none !important;
}

.yla-products__grid {
  --yla-product-gap: clamp(14px, 1.5vw, 24px);
  display: flex;
  gap: var(--yla-product-gap);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  list-style: none;
}

.yla-products__grid::-webkit-scrollbar {
  display: none;
}

.yla-products__grid > li {
  flex: 0 0 calc((100% - (var(--yla-product-gap) * 3)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.yla-products__grid .card,
.yla-products__grid .product-card {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.yla-products__grid :is(.card__media, .product-card__image-wrapper) {
  overflow: hidden;
  background: #e6e6e6;
}

.yla-products__grid img {
  transition: transform 450ms ease;
}

.yla-products__grid li:hover img {
  transform: scale(1.025);
}

.yla-products__grid :is(.card__heading, .product-card__title, .price) {
  color: #171717 !important;
  font-family: inherit !important;
}

.yla-text-link {
  display: table;
  margin: 38px auto 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

/* Collection tracks */
.yla-collections {
  padding: 0 0 clamp(80px, 8vw, 120px);
}

.yla-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.yla-section-heading--second {
  margin-top: clamp(76px, 8vw, 120px);
}

.yla-section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 36px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.11em;
}

.yla-section-heading a {
  padding-bottom: 6px;
  border-bottom: 1px solid #111;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.yla-collection-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.yla-collection-card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #171717;
  isolation: isolate;
  text-decoration: none;
}

.yla-collection-card::before {
  content: none;
  display: none;
}

.yla-collection-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center top;
  background: #fff;
  transform: scale(1.68);
  transform-origin: center top;
  transition: transform 420ms ease, filter 420ms ease;
}

.yla-collection-card:hover img {
  filter: brightness(0.96);
  transform: scale(1.69);
}

.yla-universe-grid a:hover img {
  filter: brightness(0.94);
  transform: scale(1.018);
}

.yla-collection-card span,
.yla-universe-grid span {
  margin-top: 17px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.yla-collection-card small,
.yla-universe-grid small {
  margin-top: 7px;
  color: #666;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.yla-collection-card span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  min-height: 34px;
  padding: 6px 13px 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.56) 0%, rgba(5, 5, 5, 0.38) 100%);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: .015em;
  line-height: 1;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  transform: none;
  -webkit-text-stroke: 1px #fff;
  -webkit-backdrop-filter: blur(1px) saturate(0.9);
  backdrop-filter: blur(1px) saturate(0.9);
  paint-order: stroke fill;
}

.yla-collection-card span::before {
  content: none;
  display: none;
}

.yla-collection-card span::after {
  content: none;
  display: none;
}

.yla-collection-card small {
  display: none;
}

.yla-universe-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.yla-universe-grid > a {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  color: #111;
  text-decoration: none;
}

.yla-universe-grid > a::before {
  content: none;
  display: none;
}

.yla-universe-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 35%;
  background: #fff;
  transition: transform 420ms ease, filter 420ms ease;
}

.yla-universe-grid div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  box-sizing: border-box;
  padding: 9px 16px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.66) 0%, rgba(5, 5, 5, 0.48) 100%);
  -webkit-backdrop-filter: blur(2px) saturate(0.86);
  backdrop-filter: blur(2px) saturate(0.86);
  pointer-events: none;
}

.yla-universe-grid span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(25px, 1.8vw, 36px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: .015em;
  line-height: .94;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  text-transform: uppercase;
  -webkit-text-stroke: 1.35px #fff;
  paint-order: stroke fill;
}

.yla-universe-grid small {
  display: none;
}

/* Verified customer gallery: compact social wall with review details on hover. */
body[data-template="index"] .mcs-real-reviews {
  padding: clamp(44px, 5vw, 72px) 0 !important;
  background: #f5f5f5 !important;
  border: 0 !important;
}

body[data-template="index"] .mcs-review-anchor {
  display: block;
  scroll-margin-top: 96px;
}

body[data-template="index"] .mcs-real-reviews__header {
  margin-bottom: clamp(22px, 2.4vw, 34px) !important;
  padding-left: 0 !important;
  border-left: 0 !important;
}

body[data-template="index"] .mcs-real-reviews__eyebrow {
  margin-bottom: 8px !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
}

body[data-template="index"] .mcs-real-reviews__header h2 {
  font-family: inherit !important;
  font-style: normal !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  transform: none !important;
}

body[data-template="index"] .mcs-real-reviews__viewport {
  overflow: hidden !important;
  padding: 0 !important;
}

body[data-template="index"] .mcs-real-reviews__grid {
  display: flex !important;
  flex-direction: column;
  gap: 10px !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

body[data-template="index"] .mcs-real-reviews__strip {
  display: flex;
  width: max-content;
  gap: 10px;
  padding-right: 10px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

body[data-template="index"] .mcs-real-review {
  position: relative;
  display: block !important;
  overflow: hidden;
  width: clamp(170px, 18vw, 290px) !important;
  min-width: clamp(170px, 18vw, 290px) !important;
  flex: 0 0 clamp(170px, 18vw, 290px) !important;
  aspect-ratio: 1 / 1;
  border: 0 !important;
  background: #111 !important;
  box-shadow: none !important;
}

body[data-template="index"] .mcs-real-review[data-review-clone="true"] {
  display: block !important;
}

body[data-template="index"] .mcs-real-review__media {
  position: absolute !important;
  inset: 0;
  aspect-ratio: auto !important;
  border: 0 !important;
  background: #dedede;
}

body[data-template="index"] .mcs-real-review__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 35%, rgba(0, 0, 0, 0.76) 100%);
  content: "";
  opacity: 0.45;
  transition: opacity 240ms ease;
}

body[data-template="index"] .mcs-real-review__media img {
  object-position: center center;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1) !important;
}

body[data-template="index"] .mcs-real-review__media > span {
  display: none !important;
}

body[data-template="index"] .mcs-real-review__body {
  position: absolute;
  z-index: 3;
  inset: 0;
  justify-content: flex-end;
  padding: 18px !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.92) 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
}

body[data-template="index"] .mcs-real-review:hover .mcs-real-review__body,
body[data-template="index"] .mcs-real-review:focus-within .mcs-real-review__body {
  opacity: 1;
  transform: translateY(0);
}

body[data-template="index"] .mcs-real-review:hover .mcs-real-review__media img,
body[data-template="index"] .mcs-real-review:focus-within .mcs-real-review__media img {
  transform: scale(1.055);
}

body[data-template="index"] .mcs-real-review__rating {
  align-items: flex-start !important;
  flex-direction: column;
  gap: 5px !important;
}

body[data-template="index"] .mcs-real-review__rating span {
  font-size: 11px;
}

body[data-template="index"] .mcs-real-review__rating strong {
  color: #fff !important;
  font-size: 8px !important;
}

body[data-template="index"] .mcs-real-review__body > p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 0 !important;
  margin: 10px 0 12px !important;
  color: #fff !important;
  font-size: clamp(11px, 0.85vw, 14px) !important;
  line-height: 1.4 !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body[data-template="index"] .mcs-real-review footer {
  gap: 3px !important;
  margin-top: 0 !important;
  padding-top: 9px !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

body[data-template="index"] .mcs-real-review footer strong,
body[data-template="index"] .mcs-real-review footer span {
  color: #fff !important;
}

body[data-template="index"] .mcs-real-review footer span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body[data-template="index"] .mcs-real-reviews__status {
  display: none !important;
}

body[data-template="index"] .mcs-real-reviews__actions button {
  display: none !important;
}

/* Airy editorial footer inspired by the new storefront direction. */
body .footer {
  overflow: hidden;
  margin-top: 0 !important;
  padding: clamp(58px, 5vw, 88px) 0 clamp(24px, 2.6vw, 42px) !important;
  border-top: 0 !important;
  background: #fff !important;
  background-image: none !important;
  color: #242424 !important;
  --color-footer-background: 255, 255, 255;
  --color-footer-text: 36, 36, 36;
  --color-text: 36, 36, 36;
}

/* Remove the legacy manga-theme yellow divider above the homepage footer. */
body[data-template="index"] .footer {
  border-top: 0 !important;
}

body .footer::before {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  display: block !important;
  width: min(43vw, 800px);
  height: 100%;
  background-image: var(--mcs-footer-hero);
  background-position: right bottom;
  background-size: auto 82%;
  background-repeat: no-repeat;
  content: "";
  opacity: .075;
  pointer-events: none;
}

body .footer > .footer__content-top,
body .footer > .footer-block--full {
  display: none !important;
}

body .footer .mcs-footer-reference {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1900px;
  margin-inline: auto;
  padding-inline: clamp(32px, 2.5vw, 52px) !important;
}

body .footer .mcs-footer-reference__grid {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(145px, .9fr) minmax(135px, .82fr) minmax(250px, 1.28fr) minmax(290px, 1.28fr);
  gap: clamp(34px, 3.6vw, 82px);
  align-items: start;
  min-height: clamp(365px, 29vw, 510px);
}

body .footer .mcs-footer-reference__heading {
  margin: 0 0 22px;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1.35;
  text-transform: uppercase;
}

body .footer .mcs-footer-reference__links {
  margin: 0;
  padding: 0;
}

body .footer .mcs-footer-reference__links li {
  margin: 0 0 12px;
}

body .footer .mcs-footer-reference__links a,
body .footer .mcs-footer-reference__newsletter > p,
body .footer .mcs-footer-reference__about p,
body .footer .mcs-footer-reference__about a {
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.62;
  text-decoration: none;
}

body .footer .mcs-footer-reference__links a,
body .footer .mcs-footer-reference__about a {
  position: relative;
  display: inline-block;
  transition: color .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__links a::after,
body .footer .mcs-footer-reference__about a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__links a:hover,
body .footer .mcs-footer-reference__links a:focus-visible,
body .footer .mcs-footer-reference__about a:hover,
body .footer .mcs-footer-reference__about a:focus-visible {
  color: #111;
  text-decoration: none;
  transform: translateX(5px);
}

body .footer .mcs-footer-reference__links a:hover::after,
body .footer .mcs-footer-reference__links a:focus-visible::after,
body .footer .mcs-footer-reference__about a:hover::after,
body .footer .mcs-footer-reference__about a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

body .footer .mcs-footer-reference__newsletter > p {
  max-width: 330px;
  margin: 0 0 18px;
}

body .footer .mcs-footer-reference__newsletter > .mcs-footer-reference__privacy-note {
  margin: 10px 0 0;
  color: #777;
  font-size: 10px;
  line-height: 1.55;
}

body .footer .mcs-footer-reference__privacy-note a {
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body .footer .mcs-footer-reference__newsletter .footer-block--subscribe > .footer-block__heading {
  display: none !important;
}

body .footer .mcs-footer-reference__newsletter .footer-letter-form,
body .footer .mcs-footer-reference__newsletter .footer-letter-form .field {
  max-width: 330px !important;
}

body .footer .mcs-footer-reference__rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 28px;
}

body .footer .mcs-footer-reference__review-badge {
  display: flex;
  width: 100%;
  max-width: 320px;
  min-height: 116px;
  padding: 18px 20px;
  border: 3px solid #c9c9c9;
  color: #111;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__review-badge:hover,
body .footer .mcs-footer-reference__review-badge:focus-visible {
  border-color: #111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

body .footer .mcs-footer-reference__stars {
  margin-bottom: 8px;
  padding: 4px 7px;
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: .15em;
  line-height: 1;
}

body .footer .mcs-footer-reference__review-badge strong {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body .footer .mcs-footer-reference__review-badge small {
  margin-top: 5px;
  color: #666;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
}

body .footer .mcs-footer-reference__quick-shop .mcs-footer-reference__heading,
body .footer .mcs-footer-reference__about .mcs-footer-reference__heading {
  margin-bottom: 14px;
}

body .footer .mcs-footer-reference__quick-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body .footer .mcs-footer-reference__quick-links a {
  display: inline-flex;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #181818;
  color: #111;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__quick-links a:hover,
body .footer .mcs-footer-reference__quick-links a:focus-visible {
  background: #171717;
  color: #fff;
  transform: translateY(-3px);
}

body .footer .mcs-footer-reference__about p {
  max-width: 330px;
  margin: 0 0 8px;
}

body .footer .mcs-footer-reference__social {
  margin-top: 24px;
}

body .footer .mcs-footer-reference__legal {
  display: flex;
  gap: 9px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #dededb;
  flex-wrap: wrap;
}

body .footer .mcs-footer-reference__legal a {
  color: #737373;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  line-height: 1.5;
  text-decoration: none;
}

body .footer .mcs-footer-reference__legal a:hover,
body .footer .mcs-footer-reference__legal a:focus-visible {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body .footer .mcs-footer-reference__social a {
  display: inline-flex;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__social a:hover,
body .footer .mcs-footer-reference__social a:focus-visible {
  opacity: .62;
  transform: translateY(-3px) scale(1.06);
}

body .footer .mcs-footer-reference__newsletter .field,
body .footer .mcs-footer-reference__newsletter .field__suffix,
body .footer .mcs-footer-reference__newsletter button {
  transition: border-color .25s ease, background-color .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

body .footer .mcs-footer-reference__newsletter .field:focus-within {
  border-color: #111;
}

body .footer .mcs-footer-reference__newsletter .field__suffix:hover,
body .footer .mcs-footer-reference__newsletter .field__suffix:focus-within {
  background: #333;
}

body .footer .mcs-footer-reference__newsletter .field__suffix:hover button,
body .footer .mcs-footer-reference__newsletter .field__suffix:focus-within button {
  transform: translateX(3px);
}

body .footer .footer__payment > svg {
  transition: opacity .25s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}

body .footer .footer__payment > svg:hover {
  opacity: .72;
  transform: translateY(-2px);
}

body .footer .footer__content-top,
body .footer .footer__content-bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1720px;
  margin-inline: auto;
  padding-inline: clamp(28px, 3.6vw, 68px) !important;
}

body .footer .footer__blocks-wrapper {
  display: grid !important;
  grid-template-columns: minmax(140px, .92fr) minmax(120px, .75fr) minmax(230px, 1.22fr) minmax(235px, 1.18fr) minmax(88px, .48fr) !important;
  gap: clamp(22px, 2.4vw, 52px) !important;
  align-items: start;
  margin: 0 !important;
  padding: 0 !important;
}

body .footer .footer__blocks-wrapper > .footer-block,
body .footer .footer__blocks-wrapper > footer-menu {
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: none !important;
}

body .footer .footer-block > .footer-block__heading,
body .footer footer-menu > .footer-block__heading {
  margin: 0 0 24px !important;
  color: #111 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

body .footer .footer-block__details-content,
body .footer .footer-block__details-content.rte {
  margin: 0 !important;
  color: #656565 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

body .footer .footer-block__details-content > li {
  margin: 0 0 11px !important;
}

body .footer .footer-block__details-content a,
body .footer .footer-block__details-content p,
body .footer .footer-block__details-content.rte p {
  margin-top: 0 !important;
  color: #656565 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  opacity: 1 !important;
  text-decoration: none;
  word-break: normal;
}

body .footer .footer-block__details-content.rte p {
  margin-bottom: 9px !important;
}

body .footer .footer-block__details-content a:hover,
body .footer .footer-block__details-content a:focus-visible {
  color: #111 !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

body .footer .footer-block--subscribe {
  width: 100% !important;
}

body .footer .footer-block--subscribe .footer-block__heading {
  max-width: 310px;
  margin: 0 0 20px !important;
  color: #656565 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: .015em !important;
  line-height: 1.65 !important;
  text-transform: none;
}

body .footer .footer-letter-form,
body .footer .footer-letter-form .field {
  width: 100% !important;
  max-width: 330px !important;
}

body .footer .footer-letter-form .field {
  min-height: 48px;
  border: 0 !important;
  border-radius: 0;
  background: #fff !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body .footer .mcs-footer-reference__newsletter .field::after {
  border: 1px solid #d5d5d5 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body .footer .mcs-footer-reference__newsletter .field:hover::after,
body .footer .mcs-footer-reference__newsletter .field:focus::after,
body .footer .mcs-footer-reference__newsletter .field:focus-within::after {
  border-width: 1px !important;
  border-color: #111 !important;
}

body .footer .mcs-footer-reference__newsletter .field__container,
body .footer .mcs-footer-reference__newsletter .field__input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body .footer .footer-letter-form .field__input,
body .footer .footer-letter-form .field__label {
  color: #555 !important;
  font-size: 13px !important;
}

body .footer .footer-letter-form .field__suffix {
  min-width: 48px;
  background: #171717;
}

body .footer .footer-letter-form .field__suffix button,
body .footer .footer-letter-form .field__suffix svg {
  color: #fff !important;
}

body .footer .footer__list-social {
  gap: 15px !important;
  margin: 0 !important;
}

body .footer .footer__list-social a {
  color: #111 !important;
}

body .footer .footer__list-social a svg,
body .footer .footer__list-social a img {
  width: 22px !important;
  height: 22px !important;
}

body .footer .footer__content-bottom {
  margin-top: 18px;
  padding-top: 18px !important;
  border-top: 0;
  align-items: flex-end;
  text-align: left;
}

body .footer .footer__content-bottom.page-width {
  max-width: 1900px;
  padding-inline: clamp(32px, 2.5vw, 52px) !important;
}

body .footer .footer__copyright {
  margin: 0 !important;
  text-align: left !important;
  align-self: flex-start;
}

body .footer .footer__copyright .copyright-menu-box {
  justify-content: flex-start !important;
}

body .footer .footer__copyright,
body .footer .footer__copyright a,
body .footer .copyright__content {
  color: #737373 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px !important;
  font-weight: 400 !important;
}

body .footer .footer__payment {
  gap: 7px !important;
}

body .footer .footer__payment > svg {
  width: 31px;
  height: 20px;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  body .footer .mcs-footer-reference__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 34px;
    min-height: 0;
  }

  body .footer .mcs-footer-reference__newsletter,
  body .footer .mcs-footer-reference__rail {
    grid-column: span 1;
  }

  body .footer .footer__blocks-wrapper {
    grid-template-columns: minmax(128px, .9fr) minmax(108px, .72fr) minmax(205px, 1.2fr) minmax(210px, 1.16fr) minmax(76px, .42fr) !important;
    gap: 18px !important;
  }

  body .footer .footer-block > .footer-block__heading,
  body .footer footer-menu > .footer-block__heading {
    font-size: 10px !important;
    letter-spacing: .14em !important;
  }

  body .footer .footer-block__details-content a,
  body .footer .footer-block__details-content p,
  body .footer .footer-block__details-content.rte p,
  body .footer .footer-block--subscribe .footer-block__heading {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 959px) {
  body .footer {
    padding: 44px 0 24px !important;
  }

  body .footer .mcs-footer-reference {
    padding-inline: 20px !important;
  }

  body .footer .mcs-footer-reference__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
    min-height: 0;
  }

  body .footer .mcs-footer-reference__newsletter,
  body .footer .mcs-footer-reference__rail {
    grid-column: 1 / -1;
  }

  body .footer .mcs-footer-reference__review-badge,
  body .footer .mcs-footer-reference__newsletter > p,
  body .footer .mcs-footer-reference__about p {
    max-width: none;
  }

  body .footer .mcs-footer-reference__social {
    margin-top: 40px;
  }

  body .footer .mcs-footer-reference__legal {
    margin-top: 24px;
  }

  body .footer::before {
    width: 100%;
    height: 45%;
    background-size: auto 88%;
    opacity: .045;
  }

  body .footer .footer__content-top,
  body .footer .footer__content-bottom {
    padding-inline: 20px !important;
  }

  body .footer .footer__blocks-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  body .footer .footer__blocks-wrapper > .footer-block,
  body .footer .footer__blocks-wrapper > footer-menu {
    padding: 18px 0 !important;
  }

  body .footer .footer-block > .footer-block__heading,
  body .footer footer-menu > .footer-block__heading {
    margin-bottom: 16px !important;
    font-size: 11px !important;
  }

  body .footer .footer__content-bottom {
    margin-top: 30px;
    width: 100%;
    align-items: stretch;
    padding-inline: 20px !important;
    text-align: left;
  }

  body .footer .footer__copyright {
    width: 100%;
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .footer .mcs-footer-reference__links a,
  body .footer .mcs-footer-reference__links a::after,
  body .footer .mcs-footer-reference__about a,
  body .footer .mcs-footer-reference__about a::after,
  body .footer .mcs-footer-reference__review-badge,
  body .footer .mcs-footer-reference__quick-links a,
  body .footer .mcs-footer-reference__social a,
  body .footer .mcs-footer-reference__newsletter .field,
  body .footer .mcs-footer-reference__newsletter .field__suffix,
  body .footer .mcs-footer-reference__newsletter button,
  body .footer .footer__payment > svg {
    transition-duration: .01ms !important;
  }
}

@media screen and (max-width: 599px) {
  body .footer .mcs-footer-reference__grid {
    grid-template-columns: 1fr;
  }

  body .footer .mcs-footer-reference__newsletter,
  body .footer .mcs-footer-reference__rail {
    grid-column: auto;
  }

  body .footer .mcs-footer-reference__heading {
    margin-bottom: 16px;
  }

  body .footer .mcs-footer-reference__links li {
    margin-bottom: 9px;
  }
}

@media screen and (max-width: 1199px) {
  body[data-template="index"] .header-inline-menus {
    gap: 17px !important;
  }

  body[data-template="index"] .header-inline-menus__item > :is(a, summary, .menus__link),
  body[data-template="index"] .header-inline-menus__item > a {
    font-size: 9px !important;
    letter-spacing: 0 !important;
  }
}

@media screen and (max-width: 959px) {
  body[data-template="index"] .mcs-real-reviews__header {
    gap: 16px !important;
  }

  body[data-template="index"] .mcs-real-reviews__header h2 {
    font-size: clamp(27px, 9vw, 40px) !important;
    line-height: 1.05 !important;
  }

  body[data-template="index"] .mcs-real-reviews__grid {
    gap: 8px !important;
  }

  body[data-template="index"] .mcs-real-reviews__strip {
    gap: 8px;
    padding-right: 8px;
  }

  body[data-template="index"] .mcs-real-review {
    width: min(42vw, 190px) !important;
    min-width: min(42vw, 190px) !important;
    flex-basis: min(42vw, 190px) !important;
  }

  body[data-template="index"] .mcs-real-review__body {
    display: none !important;
  }

  body[data-template="index"] .mcs-real-review__body > p {
    font-size: 13px !important;
    -webkit-line-clamp: 3;
  }

  body[data-template="index"] .announcement-bar--container,
  body[data-template="index"] .announcement-bar--list,
  body[data-template="index"] .announcement-bar--item {
    min-height: 30px !important;
  }

  body[data-template="index"] .announcement--text,
  body[data-template="index"] .announcement__link {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  body[data-template="index"] .header.section--padding,
  body[data-template="index"] .header__container {
    min-height: 64px !important;
  }

  body[data-template="index"] .header__container {
    padding-inline: 14px !important;
  }

  body[data-template="index"] :is(.header__heading, .header__heading-link) {
    width: 142px !important;
    min-width: 142px !important;
    height: 56px !important;
  }

  body[data-template="index"] .header__heading-logo {
    max-width: 142px !important;
    max-height: 52px !important;
  }

  .yla-hero__track {
    height: min(72vh, 610px);
  }

  .yla-hero__slide > img {
    object-position: 64% center;
  }

  .yla-hero__copy--left {
    top: auto;
    right: 24px;
    bottom: 52px;
    left: 24px;
    transform: none;
  }

  .yla-hero__copy h1,
  .yla-hero__copy h2 {
    max-width: 88vw;
    font-size: clamp(38px, 12vw, 58px);
    letter-spacing: -0.015em;
    line-height: 1;
  }

  .yla-hero__copy p {
    font-size: 10px;
  }

  .yla-hero__dots {
    right: 18px;
    bottom: 18px;
  }

  .yla-products {
    padding-top: 76px;
  }

  .yla-products__tabs {
    gap: 28px;
    margin-bottom: 28px;
  }

  .yla-products__tabs button {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .yla-products__grid,
  .yla-collection-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .yla-products__grid::-webkit-scrollbar,
  .yla-collection-track::-webkit-scrollbar {
    display: none;
  }

  .yla-products__grid > li {
    flex-basis: min(78vw, 330px);
    min-width: min(78vw, 330px);
    scroll-snap-align: start;
  }

  .yla-collection-card {
    min-width: 72vw;
    scroll-snap-align: start;
  }

  .yla-collection-card span {
    min-height: 32px;
    padding: 6px 11px 7px;
    font-size: clamp(16px, 4.8vw, 21px);
    -webkit-text-stroke-width: 0.9px;
  }

  .yla-section-heading h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  .yla-universe-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 78vw);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .yla-universe-grid::-webkit-scrollbar {
    display: none;
  }

  .yla-universe-grid > a {
    min-height: 0;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .yla-universe-grid div {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px 13px 9px;
  }

  .yla-universe-grid span {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: .015em;
    -webkit-text-stroke-width: 1.15px;
  }

  .yla-universe-grid small {
    display: none;
  }
}

/* YoungLA-inspired global desktop header: centered brand, menu below, airy white mega navigation. */
@media screen and (min-width: 960px) {
  body .header.section--padding {
    min-height: 112px !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #e7e7e7 !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
  }

  body .header__container {
    grid-template:
      ". logo actions" 64px
      "menu menu menu" 47px
      / minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 112px !important;
    padding: 0 clamp(34px, 3.2vw, 60px) !important;
    column-gap: 20px !important;
    background: #fff !important;
  }

  body .header__heading {
    grid-area: logo !important;
    width: 190px !important;
    height: 58px !important;
    margin: 4px auto 0 !important;
    padding: 3px 8px !important;
  }

  body .header__heading-link,
  body .header__heading-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: 190px !important;
    max-height: 54px !important;
    object-fit: contain !important;
  }

  body .header__tools.display-none-tablet {
    grid-area: actions !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 0 245px 0 0 !important;
  }

  body .header__icons {
    grid-area: actions !important;
    align-self: center !important;
    justify-self: end !important;
    gap: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body .header__icon-button {
    padding: 7px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    transform: none !important;
  }

  body .header__inline-nav {
    grid-area: menu !important;
    align-self: end !important;
    justify-self: center !important;
    width: auto !important;
    margin: 0 auto !important;
  }

  body .header__inline-menus,
  body[data-template="index"] .header-inline-menus {
    justify-content: center !important;
    gap: clamp(22px, 2vw, 36px) !important;
    margin: 0 !important;
  }

  body .header-inline-menus__item {
    padding: 0 !important;
  }

  body .header-inline-menus__item > .header-inline-menus__link,
  body[data-template="index"] .header-inline-menus__item > .header-inline-menus__link {
    min-height: 46px !important;
    padding: 15px 0 13px !important;
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: clamp(10px, 0.68vw, 13px) !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    transform: none !important;
  }

  body .header-inline-menus__item--has-submenu > .header-inline-menus__link::before {
    order: 2;
    margin-left: 8px;
    content: "\25BC";
    font-size: 13px;
    line-height: 0.75;
    transform: translateY(-1px) scaleX(1.08);
    transform-origin: center;
  }

  body .header-inline-menus__link::after {
    top: auto !important;
    bottom: 4px !important;
    height: 1px !important;
    background: #111 !important;
  }

  body .header-inline-menus__item:hover > .header-inline-menus__link,
  body .header-inline-menus__item:focus-within > .header-inline-menus__link {
    border: 0 !important;
    background: transparent !important;
    color: #111 !important;
    transform: none !important;
  }

  body .mcs-nav-mega,
  body[data-template="index"] .mcs-nav-mega {
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    gap: clamp(54px, 6vw, 110px) !important;
    width: 100vw !important;
    min-height: 430px !important;
    max-height: calc(100vh - 118px) !important;
    padding: 38px clamp(48px, 5vw, 92px) 44px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    border: 0 !important;
    border-top: 1px solid #e7e7e7 !important;
    border-bottom: 1px solid #e7e7e7 !important;
    background: #fff !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07) !important;
    color: #222 !important;
  }

  body .mcs-nav-mega .megamenu__list,
  body[data-template="index"] .mcs-nav-mega .megamenu__list {
    display: grid !important;
    flex: 1 1 auto !important;
    width: auto !important;
    height: 312px !important;
    min-width: 0 !important;
    padding: 28px 0 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(12, 26px) !important;
    grid-auto-columns: minmax(0, 1fr) !important;
    grid-auto-flow: column !important;
    gap: 0 clamp(44px, 5vw, 90px) !important;
    overflow: hidden !important;
  }

  body .mcs-nav-mega .megamenu__list::before {
    position: absolute;
    margin-top: -28px;
    color: #242424;
    content: "PRODUCTS";
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
  }

  body .mcs-nav-mega .megamenu__list::after {
    display: none !important;
    content: none !important;
  }

  body .mcs-nav-mega .megamenu-list__item {
    display: block !important;
    min-width: 0 !important;
    border: 0 !important;
  }

  body .mcs-nav-mega .megamenu-list__item-title,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title {
    margin: 0 !important;
    padding: 4px 0 !important;
    color: #777 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.45 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  body .mcs-nav-mega .megamenu-list__item-title::before,
  body .mcs-nav-mega .megamenu-list__item-title::after {
    display: none !important;
  }

  body .mcs-nav-mega .megamenu-list__item-title:hover,
  body .mcs-nav-mega .megamenu-list__item-title:focus {
    color: #111 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  body .mcs-nav-feature,
  body[data-template="index"] .mcs-nav-feature {
    display: flex !important;
    flex: 0 0 clamp(330px, 25vw, 430px) !important;
    flex-direction: column !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  body .mcs-nav-quicklinks {
    display: flex !important;
    flex: 0 0 clamp(150px, 12vw, 210px) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
  }

  body .mcs-nav-quicklinks__eyebrow {
    margin: 0 0 17px !important;
    color: #242424 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    line-height: 1.2 !important;
  }

  body .mcs-nav-quicklinks a {
    padding: 6px 0 !important;
    color: #777 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    text-decoration: none !important;
  }

  body .mcs-nav-quicklinks a:hover,
  body .mcs-nav-quicklinks a:focus {
    color: #111 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
  }

  body .mcs-nav-feature__eyebrow {
    margin: 0 0 12px !important;
    color: #242424 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.2 !important;
  }

  body .mcs-nav-feature__grid {
    flex: 0 0 315px !important;
    grid-template-rows: 185px 124px !important;
    gap: 6px !important;
    height: 315px !important;
    min-height: 315px !important;
  }

  body .mcs-nav-feature__card {
    border: 0 !important;
    background: #eee !important;
  }

  body .mcs-nav-feature__card span {
    right: 10px !important;
    bottom: 9px !important;
    left: 10px !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
  }

  body .mcs-nav-feature__all,
  body[data-template="index"] .mcs-nav-feature__all {
    justify-content: center !important;
    margin-top: 10px !important;
    padding: 8px 0 0 !important;
    background: transparent !important;
    color: #777 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
  }

  body .mcs-nav-feature__all span {
    margin-left: 8px;
  }

  body[data-template="index"] .header-inline-menus__link:hover,
  body[data-template="index"] .header-inline-menus__link:focus,
  body[data-template="index"] .header-inline-menus__link:focus-visible,
  body[data-template="index"] .header-inline-menus__item:hover > .header-inline-menus__link,
  body .header-inline-menus__link:hover,
  body .header-inline-menus__link:focus,
  body .header-inline-menus__link:focus-visible,
  body .header-inline-menus__item:hover > .header-inline-menus__link {
    border-color: transparent !important;
    background: transparent !important;
    color: #111 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title:hover,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title:focus,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title:focus-visible,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title:active,
  body .mcs-nav-mega .megamenu-list__item-title:hover,
  body .mcs-nav-mega .megamenu-list__item-title:focus,
  body .mcs-nav-mega .megamenu-list__item-title:focus-visible,
  body .mcs-nav-mega .megamenu-list__item-title:active {
    padding: 4px 0 !important;
    background: transparent !important;
    color: #111 !important;
    box-shadow: none !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yla-hero__slide,
  .yla-products__grid img,
  .yla-collection-card img,
  .yla-universe-grid img {
    transition: none !important;
  }
}

/* Keep every homepage section heading on one editorial system. */
body[data-template="index"] .yla-products__tabs.yla-section-heading,
body[data-template="index"] .yla-section-heading {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

body[data-template="index"] .yla-products__tabs.yla-section-heading h2,
body[data-template="index"] .yla-section-heading h2,
body[data-template="index"] .mcs-real-reviews__header h2 {
  margin: 0 !important;
  color: #111 !important;
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(24px, 2.2vw, 36px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.11em !important;
  line-height: 1.12 !important;
  text-transform: uppercase;
  transform: none !important;
}

body[data-template="index"] .yla-products__tabs.yla-section-heading > a,
body[data-template="index"] .yla-section-heading > a,
body[data-template="index"] .mcs-real-reviews__actions > a {
  flex: 0 0 auto;
  padding: 0 0 6px !important;
  border: 0 !important;
  border-bottom: 1px solid #111 !important;
  background: transparent !important;
  color: #111 !important;
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

body[data-template="index"] .yla-products__panel > .yla-text-link {
  display: none !important;
}

body[data-template="index"] .mcs-real-reviews__header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto;
  column-gap: 24px !important;
  row-gap: 7px !important;
  align-items: end !important;
  margin-bottom: 28px !important;
}

body[data-template="index"] .mcs-real-reviews__eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0 !important;
}

body[data-template="index"] .mcs-real-reviews__header h2 {
  grid-column: 1;
  grid-row: 2;
}

body[data-template="index"] .mcs-real-reviews__actions {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  justify-self: end;
}

@media screen and (max-width: 749px) {
  body[data-template="index"] .yla-products__tabs.yla-section-heading,
  body[data-template="index"] .yla-section-heading,
  body[data-template="index"] .mcs-real-reviews__header {
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  body[data-template="index"] .yla-products__tabs.yla-section-heading h2,
  body[data-template="index"] .yla-section-heading h2,
  body[data-template="index"] .mcs-real-reviews__header h2 {
    font-size: clamp(20px, 5.8vw, 26px) !important;
    letter-spacing: 0.09em !important;
  }

  body[data-template="index"] .yla-products__tabs.yla-section-heading > a,
  body[data-template="index"] .yla-section-heading > a,
  body[data-template="index"] .mcs-real-reviews__actions > a {
    font-size: 9px !important;
    letter-spacing: 0.08em !important;
  }

  body[data-template="index"] .mcs-real-reviews__header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 12px !important;
    row-gap: 5px !important;
  }

  body[data-template="index"] .mcs-real-reviews__eyebrow {
    font-size: 8px !important;
    letter-spacing: 0.16em !important;
  }
}

/* AnimeApe-inspired customer review coverflow. The cards use this store's
   existing verified-review copy and photography. */
body[data-template="index"] .mcs-real-reviews.mcs-review-coverflow {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 500px;
  padding: 54px 0 !important;
  border: 0 !important;
  background: #dedede !important;
  isolation: isolate;
}

body[data-template="index"] .mcs-review-coverflow__stage {
  position: relative;
  width: min(1180px, 92vw);
  height: 392px;
  margin: 0 auto;
  perspective: 1400px;
  transform-style: preserve-3d;
}

body[data-template="index"] .mcs-cover-review {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 270px;
  height: 324px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #222;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, -180px) scale(0.72);
  transform-origin: 50% 50%;
  transition: transform 560ms cubic-bezier(0.22, 0.72, 0.18, 1), opacity 420ms ease, filter 420ms ease, box-shadow 420ms ease, width 560ms cubic-bezier(0.22, 0.72, 0.18, 1), height 560ms cubic-bezier(0.22, 0.72, 0.18, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

body[data-template="index"] .mcs-cover-review > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff !important;
  text-decoration: none !important;
}

body[data-template="index"] .mcs-cover-review__select {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

body[data-template="index"] .mcs-cover-review[data-slot="0"] .mcs-cover-review__select,
body[data-template="index"] .mcs-cover-review[aria-hidden="true"] .mcs-cover-review__select {
  display: none;
}

body[data-template="index"] .mcs-cover-review__select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -5px;
}

body[data-template="index"] .mcs-cover-review img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 800ms ease;
}

body[data-template="index"] .mcs-cover-review > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.52) 66%, rgba(0, 0, 0, 0.88) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 48%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

body[data-template="index"] .mcs-cover-review__content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.62);
}

body[data-template="index"] .mcs-cover-review__content small {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

body[data-template="index"] .mcs-cover-review__content strong {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body[data-template="index"] .mcs-cover-review__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
}

body[data-template="index"] .mcs-cover-review__meta > span {
  letter-spacing: 0.12em;
}

body[data-template="index"] .mcs-cover-review__meta em {
  font-style: normal;
  opacity: 0.92;
}

body[data-template="index"] .mcs-cover-review[data-slot="0"] {
  z-index: 5;
  width: 354px;
  height: 354px;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 70px) rotate(0deg) scale(1);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

body[data-template="index"] .mcs-cover-review[data-slot="-1"] {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  transform: translate3d(calc(-50% - 238px), -48%, -10px) rotate(-4deg) scale(0.92);
}

body[data-template="index"] .mcs-cover-review[data-slot="1"] {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  transform: translate3d(calc(-50% + 238px), -48%, -10px) rotate(4deg) scale(0.92);
}

body[data-template="index"] .mcs-cover-review[data-slot="-2"] {
  z-index: 3;
  opacity: 0.96;
  pointer-events: auto;
  cursor: pointer;
  filter: saturate(0.9) brightness(0.92);
  transform: translate3d(calc(-50% - 435px), -46%, -90px) rotate(3deg) scale(0.78);
}

body[data-template="index"] .mcs-cover-review[data-slot="2"] {
  z-index: 3;
  opacity: 0.96;
  pointer-events: auto;
  cursor: pointer;
  filter: saturate(0.9) brightness(0.92);
  transform: translate3d(calc(-50% + 435px), -46%, -90px) rotate(-3deg) scale(0.78);
}

body[data-template="index"] .mcs-cover-review[data-slot="-3"] {
  transform: translate3d(calc(-50% - 535px), -46%, -160px) scale(0.68);
}

body[data-template="index"] .mcs-cover-review[data-slot="3"] {
  transform: translate3d(calc(-50% + 535px), -46%, -160px) scale(0.68);
}

body[data-template="index"] .mcs-review-coverflow.is-review-sliding .mcs-cover-review {
  transition-duration: 560ms, 420ms, 420ms, 420ms, 560ms, 560ms;
}

body[data-template="index"] .mcs-cover-review[data-slot="0"]:hover img,
body[data-template="index"] .mcs-cover-review[data-slot="0"]:focus-within img {
  transform: scale(1.055);
}

body[data-template="index"] .mcs-cover-review.is-page-out-next {
  z-index: 7 !important;
  animation: mcs-review-page-out-next 800ms cubic-bezier(0.3, 0.04, 0.2, 1) both;
}

body[data-template="index"] .mcs-cover-review.is-page-in-next {
  z-index: 8 !important;
  animation: mcs-review-page-in-next 800ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

body[data-template="index"] .mcs-cover-review.is-page-out-previous {
  z-index: 7 !important;
  animation: mcs-review-page-out-previous 800ms cubic-bezier(0.3, 0.04, 0.2, 1) both;
}

body[data-template="index"] .mcs-cover-review.is-page-in-previous {
  z-index: 8 !important;
  animation: mcs-review-page-in-previous 800ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

@keyframes mcs-review-page-out-next {
  0% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 70px) rotateY(0deg) rotateZ(0deg) scale(1);
  }
  44% {
    opacity: 0.7;
    transform: translate3d(calc(-50% - 96px), -50%, 30px) rotateY(-76deg) rotateZ(-1deg) scale(0.96);
    box-shadow: 16px 20px 34px rgba(0, 0, 0, 0.2);
  }
  100% {
    opacity: 1;
    transform: translate3d(calc(-50% - 238px), -48%, -10px) rotateY(0deg) rotateZ(-4deg) scale(0.92);
  }
}

@keyframes mcs-review-page-in-next {
  0% {
    opacity: 0.76;
    transform: translate3d(calc(-50% + 238px), -48%, -10px) rotateY(0deg) rotateZ(4deg) scale(0.92);
  }
  44% {
    opacity: 0.84;
    transform: translate3d(calc(-50% + 94px), -50%, 36px) rotateY(74deg) rotateZ(1deg) scale(0.96);
    box-shadow: -16px 20px 34px rgba(0, 0, 0, 0.2);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 70px) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

@keyframes mcs-review-page-out-previous {
  0% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 70px) rotateY(0deg) rotateZ(0deg) scale(1);
  }
  44% {
    opacity: 0.7;
    transform: translate3d(calc(-50% + 96px), -50%, 30px) rotateY(76deg) rotateZ(1deg) scale(0.96);
    box-shadow: -16px 20px 34px rgba(0, 0, 0, 0.2);
  }
  100% {
    opacity: 1;
    transform: translate3d(calc(-50% + 238px), -48%, -10px) rotateY(0deg) rotateZ(4deg) scale(0.92);
  }
}

@keyframes mcs-review-page-in-previous {
  0% {
    opacity: 0.76;
    transform: translate3d(calc(-50% - 238px), -48%, -10px) rotateY(0deg) rotateZ(-4deg) scale(0.92);
  }
  44% {
    opacity: 0.84;
    transform: translate3d(calc(-50% - 94px), -50%, 36px) rotateY(-74deg) rotateZ(-1deg) scale(0.96);
    box-shadow: 16px 20px 34px rgba(0, 0, 0, 0.2);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 70px) rotateY(0deg) rotateZ(0deg) scale(1);
  }
}

body[data-template="index"] .mcs-cover-review:focus,
body[data-template="index"] .mcs-cover-review a:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

@media screen and (max-width: 749px) {
  body[data-template="index"] .mcs-real-reviews.mcs-review-coverflow {
    min-height: 420px;
    padding: 34px 0 !important;
  }

  body[data-template="index"] .mcs-review-coverflow__stage {
    width: 100%;
    height: 352px;
  }

  body[data-template="index"] .mcs-cover-review {
    width: min(64vw, 244px);
    height: 296px;
  }

  body[data-template="index"] .mcs-cover-review[data-slot="0"] {
    width: min(76vw, 286px);
    height: 326px;
  }

  body[data-template="index"] .mcs-cover-review[data-slot="-1"] {
    transform: translate3d(calc(-50% - 58vw), -48%, -30px) rotate(-4deg) scale(0.86);
  }

  body[data-template="index"] .mcs-cover-review[data-slot="1"] {
    transform: translate3d(calc(-50% + 58vw), -48%, -30px) rotate(4deg) scale(0.86);
  }

  body[data-template="index"] .mcs-cover-review[data-slot="-2"] {
    opacity: 0;
    transform: translate3d(calc(-50% - 95vw), -48%, -100px) scale(0.7);
  }

  body[data-template="index"] .mcs-cover-review[data-slot="2"] {
    opacity: 0;
    transform: translate3d(calc(-50% + 95vw), -48%, -100px) scale(0.7);
  }

  body[data-template="index"] .mcs-cover-review__content {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 8px;
  }

  body[data-template="index"] .mcs-cover-review__content strong {
    font-size: 16px;
    -webkit-line-clamp: 4;
  }

}

@media (prefers-reduced-motion: reduce) {
  body[data-template="index"] .mcs-cover-review,
  body[data-template="index"] .mcs-cover-review img {
    transition-duration: 220ms !important;
  }
}

/* Reference-faithful desktop header and mega-menu proportions. */
@media screen and (max-width: 959px) {
  body .yla-header-brand {
    display: contents;
  }
}

@media screen and (min-width: 960px) {
  body .header.section--padding {
    min-height: 116px !important;
  }

  body .header__container {
    position: relative;
    grid-template:
      "brand actions" 68px
      "menu menu" 48px
      / minmax(0, 1fr) 172px !important;
    min-height: 116px !important;
    padding: 0 clamp(30px, 2.6vw, 50px) !important;
  }

  body .yla-header-brand {
    grid-area: brand;
    display: flex;
    min-width: 0;
    height: 68px;
    align-items: center;
    align-self: center;
    justify-self: start;
    gap: 24px;
  }

  body .yla-header-contact {
    grid-area: auto;
    order: 2;
    display: flex !important;
    align-items: center;
    align-self: center;
    justify-self: start;
    gap: 8px;
    color: #111;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    white-space: nowrap;
  }

  body .yla-header-contact a {
    color: inherit;
    text-decoration: none;
  }

  body .header__heading {
    order: 1;
    flex: 0 0 160px;
    width: 160px !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
  }

  body .header__heading-link,
  body .header__heading-logo {
    max-width: 160px !important;
    max-height: 50px !important;
  }

  body .header__heading-link {
    display: flex !important;
    width: 160px !important;
    height: 54px !important;
    align-items: center !important;
  }

  body .header__icons {
    grid-area: actions !important;
    display: grid !important;
    grid-template-columns: repeat(4, 28px) !important;
    grid-template-rows: 28px !important;
    column-gap: 20px !important;
    width: 172px;
    height: 32px;
    align-items: center !important;
    align-self: center !important;
    justify-content: start !important;
    justify-self: end !important;
    gap: 0 20px !important;
    overflow: visible !important;
  }

  body .header__icons .user__container {
    grid-column: 1;
    grid-row: 1;
  }

  body .header__icons > [class*="_wishlist_header"] {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex !important;
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  body .header__icons > [class*="_wishlist_header"] a,
  body .header__icons > [class*="_wishlist_header"] [class*="link_btn"] {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  body .header__icons > [class*="_wishlist_header"] svg {
    width: 24px !important;
    height: 24px !important;
  }

  body .header__icons > #cart-icon-bubble {
    grid-column: 4;
    grid-row: 1;
  }

  body .header__tools.display-none-tablet {
    grid-area: actions !important;
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 0 96px 0 0 !important;
    padding: 0 !important;
    z-index: 2;
  }

  body .header__icon-button,
  body .header__tools .header__icon-button {
    width: 28px !important;
    min-width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
  }

  body .header__icon-button svg,
  body .header__tools svg,
  body .header__icons svg {
    width: 26px !important;
    height: 26px !important;
  }

  body .header__inline-nav {
    width: 100% !important;
  }

  body .header-inline-menus,
  body[data-template="index"] .header-inline-menus {
    gap: clamp(22px, 1.8vw, 34px) !important;
  }

  body .header-inline-menus__item > .header-inline-menus__link,
  body[data-template="index"] .header-inline-menus__item > .header-inline-menus__link {
    min-height: 48px !important;
    padding: 16px 0 14px !important;
    font-size: 11.5px !important;
    font-weight: 400 !important;
    letter-spacing: 0.16em !important;
  }

  body .header-inline-menus__item--has-submenu > .header-inline-menus__link::before {
    margin-left: 7px;
    font-size: 12px;
    transform: translateY(-1px) scaleX(1.05);
  }

  body .mcs-nav-mega,
  body[data-template="index"] .mcs-nav-mega {
    gap: clamp(40px, 4vw, 76px) !important;
    min-height: 430px !important;
    padding: 42px clamp(34px, 3vw, 58px) 38px !important;
  }

  body .mcs-nav-mega .megamenu__list,
  body[data-template="index"] .mcs-nav-mega .megamenu__list {
    position: relative;
    height: 372px !important;
    padding: 35px 0 0 !important;
    grid-template-columns: none !important;
    grid-template-rows: repeat(10, 34px) !important;
    grid-auto-columns: minmax(0, 1fr) !important;
    grid-auto-flow: column !important;
    gap: 0 clamp(34px, 3.5vw, 66px) !important;
  }

  body .mcs-nav-mega .megamenu__list::before {
    margin-top: -35px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
  }

  body .mcs-nav-mega .megamenu-list__item-title,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title {
    padding: 6px 0 !important;
    color: #777 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
  }

  body .mcs-nav-quicklinks {
    flex: 0 0 205px !important;
  }

  body .mcs-nav-quicklinks__eyebrow {
    margin: 0 0 22px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2em !important;
  }

  body .mcs-nav-quicklinks a {
    padding: 7px 0 !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  body .mcs-nav-feature,
  body[data-template="index"] .mcs-nav-feature {
    flex: 0 0 315px !important;
  }

  body .mcs-nav-feature__eyebrow {
    display: none !important;
  }

  body .mcs-nav-feature__grid {
    display: block !important;
    position: relative;
    flex: 0 0 315px !important;
    width: 315px !important;
    height: 315px !important;
    min-height: 315px !important;
    overflow: visible !important;
  }

  body .mcs-nav-feature__card--lead {
    display: block !important;
    position: relative;
    width: 315px !important;
    height: 315px !important;
    overflow: visible !important;
  }

  body .mcs-nav-feature__card:not(.mcs-nav-feature__card--lead) {
    display: none !important;
  }

  body .mcs-nav-feature__card--lead img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  body .mcs-nav-feature__card--lead span {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    display: block !important;
    color: #777 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: 0.18em !important;
    line-height: 1.3 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap;
  }

  body .mcs-nav-feature__all,
  body[data-template="index"] .mcs-nav-feature__all {
    display: none !important;
  }
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  body .header__container {
    grid-template:
      "brand actions" 66px
      "menu menu" 46px
      / minmax(0, 1fr) 172px !important;
    padding-inline: 24px !important;
  }

  body .yla-header-brand {
    height: 66px;
    gap: 18px;
  }

  body .header__heading {
    flex-basis: 145px;
    width: 145px !important;
  }

  body .header__heading-link,
  body .header__heading-logo {
    max-width: 145px !important;
  }

  body .header__heading-link {
    width: 145px !important;
  }

  body .yla-header-contact {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  body .header-inline-menus,
  body[data-template="index"] .header-inline-menus {
    gap: 17px !important;
  }

  body .header-inline-menus__item > .header-inline-menus__link,
  body[data-template="index"] .header-inline-menus__item > .header-inline-menus__link {
    font-size: 10.5px !important;
    letter-spacing: 0.1em !important;
  }

  body .mcs-nav-mega,
  body[data-template="index"] .mcs-nav-mega {
    gap: 28px !important;
    padding-inline: 30px !important;
  }

  body .mcs-nav-quicklinks {
    flex-basis: 165px !important;
  }

  body .mcs-nav-feature,
  body[data-template="index"] .mcs-nav-feature,
  body .mcs-nav-feature__grid,
  body .mcs-nav-feature__card--lead {
    width: 280px !important;
    flex-basis: 280px !important;
  }

  body .mcs-nav-feature__grid,
  body .mcs-nav-feature__card--lead {
    height: 280px !important;
    min-height: 280px !important;
  }

  body .mcs-nav-mega .megamenu-list__item-title,
  body[data-template="index"] .mcs-nav-mega .megamenu-list__item-title,
  body .mcs-nav-quicklinks a {
    font-size: 14px !important;
  }
}

/* Final homepage spacing authority. Keep this block at the end so older
   component rules cannot create longer or shorter gaps between modules. */
body[data-template="index"] .yla-products,
body[data-template="index"] .yla-collections,
body[data-template="index"] .mcs-custom-print,
body[data-template="index"] .mcs-real-reviews {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

body[data-template="index"] .yla-section-heading--second {
  margin-top: 112px !important;
}

@media screen and (max-width: 749px) {
  body[data-template="index"] .yla-products,
  body[data-template="index"] .yla-collections,
  body[data-template="index"] .mcs-custom-print,
  body[data-template="index"] .mcs-real-reviews {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  body[data-template="index"] .yla-section-heading--second {
    margin-top: 72px !important;
  }
}

/* YoungLA-inspired mobile storefront pass. Keep the desktop composition intact
   while giving phone screens the same clean rhythm and compact merchandising. */
@media screen and (max-width: 749px) {
  body[data-template="index"] .announcement-bar--container,
  body[data-template="index"] .announcement-bar--list,
  body[data-template="index"] .announcement-bar--item {
    min-height: 26px !important;
  }

  body[data-template="index"] .announcement--text,
  body[data-template="index"] .announcement__link {
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.09em !important;
  }

  body[data-template="index"] .yla-shell {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 16px !important;
  }

  body[data-template="index"] .yla-hero,
  body[data-template="index"] .yla-hero__track {
    min-height: 540px !important;
    height: min(72svh, 640px) !important;
  }

  body[data-template="index"] .yla-hero {
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-inline: contain;
  }

  body[data-template="index"] .yla-hero__slide > img:not(.yla-hero__mobile-image) {
    display: none !important;
  }

  body[data-template="index"] .yla-hero__slide > img.yla-hero__mobile-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  body[data-template="index"] .yla-hero__shade {
    background:
      linear-gradient(0deg, rgba(2, 8, 19, .96) 0%, rgba(2, 8, 19, .78) 22%, rgba(2, 8, 19, .14) 52%, transparent 72%),
      linear-gradient(90deg, rgba(2, 8, 19, .35) 0%, transparent 72%) !important;
  }

  body[data-template="index"] .yla-hero__copy--left,
  body[data-template="index"] .yla-hero__copy--bottom {
    top: auto !important;
    right: 20px !important;
    bottom: 34px !important;
    left: 20px !important;
    transform: none !important;
  }

  body[data-template="index"] .yla-hero__copy p {
    margin-bottom: 12px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .14em !important;
  }

  body[data-template="index"] .yla-hero__copy h1,
  body[data-template="index"] .yla-hero__copy h2 {
    max-width: 72vw !important;
    margin-bottom: 16px !important;
    font-size: clamp(32px, 9.5vw, 42px) !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    line-height: .98 !important;
  }

  body[data-template="index"] .yla-hero__copy a {
    min-height: 40px !important;
    padding: 12px 16px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }

  body[data-template="index"] .yla-hero__slide--custom > img.yla-hero__mobile-image {
    object-position: center top !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-cover {
    inset: auto 0 0 !important;
    width: 100% !important;
    height: 58% !important;
    background: linear-gradient(0deg, rgba(2, 8, 19, .98) 0%, rgba(2, 8, 19, .82) 42%, rgba(2, 8, 19, .18) 76%, transparent 100%) !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-copy {
    top: auto !important;
    right: 20px !important;
    bottom: 34px !important;
    left: 20px !important;
    max-width: none !important;
    transform: none !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-copy small {
    margin-bottom: 10px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .14em !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-copy strong {
    font-size: clamp(31px, 9vw, 40px) !important;
    font-weight: 600 !important;
    letter-spacing: .02em !important;
    line-height: 1 !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-copy p {
    margin: 13px 0 16px !important;
    font-size: 9px !important;
    letter-spacing: .1em !important;
    line-height: 1.45 !important;
  }

  body[data-template="index"] .yla-hero__slide--custom .yla-hero__custom-copy > span {
    padding-bottom: 5px !important;
    font-size: 10px !important;
    letter-spacing: .12em !important;
  }

  body[data-template="index"] .yla-hero__dots {
    right: 50% !important;
    bottom: 14px !important;
    transform: translateX(50%) !important;
  }

  body[data-template="index"] .yla-hero__dots button {
    width: 6px !important;
    height: 6px !important;
  }

  body[data-template="index"] .yla-products,
  body[data-template="index"] .yla-collections,
  body[data-template="index"] .mcs-custom-print,
  body[data-template="index"] .mcs-real-reviews {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  body[data-template="index"] .yla-section-heading--second {
    margin-top: 64px !important;
  }

  body[data-template="index"] .yla-products__tabs.yla-section-heading,
  body[data-template="index"] .yla-section-heading,
  body[data-template="index"] .mcs-real-reviews__header {
    margin-bottom: 18px !important;
    align-items: end !important;
  }

  body[data-template="index"] .yla-products,
  body[data-template="index"] .yla-products > .yla-shell,
  body[data-template="index"] .yla-products__tabs,
  body[data-template="index"] .yla-products__panel {
    min-width: 0;
    max-width: 100%;
  }

  body[data-template="index"] .yla-products {
    overflow-x: clip;
  }

  body[data-template="index"] .yla-products__tablist {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body[data-template="index"] .yla-products__tablist::-webkit-scrollbar {
    display: none;
  }

  body[data-template="index"] .yla-products__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body[data-template="index"] .yla-products__tabs.yla-section-heading h2,
  body[data-template="index"] .yla-section-heading h2,
  body[data-template="index"] .mcs-real-reviews__header h2 {
    font-size: 18px !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    line-height: 1.15 !important;
  }

  body[data-template="index"] .yla-products__tabs.yla-section-heading > a,
  body[data-template="index"] .yla-section-heading > a,
  body[data-template="index"] .mcs-real-reviews__actions > a {
    padding-bottom: 4px !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
  }

  body[data-template="index"] .yla-products__grid {
    --yla-mobile-product-gap: 8px;
    display: grid !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: none !important;
    grid-template-rows: repeat(2, auto) !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - var(--yla-mobile-product-gap)) / 2) !important;
    column-gap: var(--yla-mobile-product-gap) !important;
    row-gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  body[data-template="index"] .yla-products__grid > li {
    min-width: 0 !important;
    width: auto !important;
    flex-basis: auto !important;
    scroll-snap-align: none !important;
  }

  body[data-template="index"] .yla-products__grid > li:nth-child(odd) {
    scroll-snap-align: start !important;
  }

  body[data-template="index"] .yla-products__grid :is(.card__media, .product-card__image-wrapper) {
    background: #f2f2f2 !important;
  }

  body[data-template="index"] .yla-products__grid :is(.card__heading, .product-card__title) {
    font-size: 9px !important;
    line-height: 1.28 !important;
  }

  body[data-template="index"] .yla-products__grid .price {
    font-size: 12px !important;
  }

  body[data-template="index"] .yla-collection-track {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  body[data-template="index"] .yla-collection-card {
    min-width: 0 !important;
  }

  body[data-template="index"] .yla-collection-card img {
    aspect-ratio: 3 / 4 !important;
    transform: scale(1.5) !important;
    transform-origin: center top !important;
  }

  body[data-template="index"] .yla-collection-card span {
    min-height: 26px !important;
    padding: 5px 8px 6px !important;
    font-size: 13px !important;
    -webkit-text-stroke-width: .75px !important;
  }

  body[data-template="index"] .yla-universe-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
    gap: 8px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  body[data-template="index"] .yla-universe-grid > a {
    min-width: 0 !important;
  }

  body[data-template="index"] .yla-universe-grid img {
    aspect-ratio: 3 / 4 !important;
  }

  body[data-template="index"] .yla-universe-grid div {
    padding: 6px 9px 7px !important;
  }

  body[data-template="index"] .yla-universe-grid span {
    font-size: 16px !important;
    -webkit-text-stroke-width: .8px !important;
  }

  body[data-template="index"] .mcs-real-reviews.mcs-review-coverflow {
    min-height: 382px !important;
    padding-inline: 0 !important;
  }

  body[data-template="index"] .mcs-review-coverflow__stage {
    height: 310px !important;
    overflow: hidden !important;
    touch-action: pan-y pinch-zoom;
  }

  body[data-template="index"] .mcs-cover-review {
    width: min(58vw, 220px) !important;
    height: 270px !important;
  }

  body[data-template="index"] .mcs-cover-review[data-slot="0"] {
    width: min(68vw, 258px) !important;
    height: 292px !important;
  }

  body[data-template="index"] .mcs-cover-review[data-slot="-1"] {
    transform: translate3d(calc(-50% - 54vw), -49%, -30px) rotate(-3deg) scale(.86) !important;
  }

  body[data-template="index"] .mcs-cover-review[data-slot="1"] {
    transform: translate3d(calc(-50% + 54vw), -49%, -30px) rotate(3deg) scale(.86) !important;
  }

  body[data-template="index"] .mcs-cover-review__content {
    right: 14px !important;
    bottom: 14px !important;
    left: 14px !important;
  }

  body[data-template="index"] .mcs-cover-review__content strong {
    font-size: 14px !important;
    line-height: 1.26 !important;
  }

  body .footer {
    padding: 42px 0 22px !important;
  }

  body .footer .mcs-footer-reference {
    padding-inline: 18px !important;
  }

  body .footer .mcs-footer-reference__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px 22px !important;
  }

  body .footer .mcs-footer-reference__newsletter,
  body .footer .mcs-footer-reference__rail {
    grid-column: 1 / -1 !important;
  }

  body .footer .mcs-footer-reference__heading {
    margin-bottom: 14px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: .16em !important;
  }

  body .footer .mcs-footer-reference__links li {
    margin-bottom: 7px !important;
  }

  body .footer .mcs-footer-reference__links a,
  body .footer .mcs-footer-reference__newsletter > p,
  body .footer .mcs-footer-reference__about p,
  body .footer .mcs-footer-reference__about a {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  body .footer .mcs-footer-reference__social {
    margin-top: 30px !important;
    justify-content: flex-start !important;
  }

  body .footer .footer__content-bottom {
    margin-top: 24px !important;
    padding-inline: 18px !important;
  }
}

@media screen and (max-width: 389px) {
  body[data-template="index"] .yla-shell {
    padding-inline: 12px !important;
  }

  body[data-template="index"] .yla-products__grid {
    --yla-mobile-product-gap: 6px;
  }

  body[data-template="index"] .yla-products__grid,
  body[data-template="index"] .yla-collection-track,
  body[data-template="index"] .yla-universe-grid {
    column-gap: 6px !important;
  }

  body .footer .mcs-footer-reference__grid {
    gap: 28px 16px !important;
  }
}

/* Mobile photo-review wall: keep the store's real customer photos while
   presenting them as a compact editorial grid. Desktop coverflow is intact. */
.mcs-real-reviews__mobile-heading {
  display: none;
}

@media screen and (max-width: 749px) {
  body[data-template="index"] .mcs-real-reviews.mcs-review-coverflow {
    min-height: 0 !important;
    padding: 28px 14px 34px !important;
    border: 0 !important;
    background: #f2f2f2 !important;
  }

  body[data-template="index"] .mcs-real-reviews__mobile-heading {
    display: block !important;
    margin: 0 0 16px !important;
    color: #111;
  }

  body[data-template="index"] .mcs-real-reviews__mobile-heading > span {
    display: block;
    margin-bottom: 5px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.2;
  }

  body[data-template="index"] .mcs-real-reviews__mobile-heading > h2 {
    margin: 0 !important;
    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    letter-spacing: .12em !important;
    line-height: 1.15 !important;
  }

  body[data-template="index"] .mcs-review-coverflow__stage {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 4px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    perspective: none !important;
    touch-action: pan-y !important;
  }

  body[data-template="index"] .mcs-cover-review,
  body[data-template="index"] .mcs-cover-review[data-slot],
  body[data-template="index"] .mcs-cover-review[data-slot="0"],
  body[data-template="index"] .mcs-cover-review[data-slot="-1"],
  body[data-template="index"] .mcs-cover-review[data-slot="1"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  body[data-template="index"] .mcs-cover-review > a {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
  }

  body[data-template="index"] .mcs-cover-review img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: none !important;
    filter: none !important;
  }

  body[data-template="index"] .mcs-cover-review__content,
  body[data-template="index"] .mcs-cover-review__select {
    display: none !important;
  }

  body[data-template="index"] .mcs-cover-review:nth-child(n + 10) {
    display: none !important;
  }
}

/* Mobile announcement bar: slightly taller and easier to read. */
@media screen and (max-width: 749px) {
  body[data-template="index"] .announcement-bar--container,
  body[data-template="index"] .announcement-bar--list,
  body[data-template="index"] .announcement-bar--item,
  body[data-template="index"] .announcement-bar__text-wrapper {
    min-height: 38px !important;
  }

  body[data-template="index"] .announcement-bar--item.section-padding {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  body[data-template="index"] .announcement--text,
  body[data-template="index"] .announcement__link {
    display: inline-block !important;
    width: auto !important;
    margin-inline: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.05em !important;
    text-align: center !important;
  }

  body[data-template="index"] .announcement-bar__text-wrapper {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body[data-template="index"] cyclic-scroll .cyclic-scroll__container {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body[data-template="index"] cyclic-scroll .cyclic-scroll__inner {
    display: flex !important;
    width: fit-content !important;
    transform: translateZ(0);
    animation: sl-cyclic-scroll-move var(--scroll-speed-mb) linear infinite !important;
  }

  body[data-template="index"] cyclic-scroll .cyclic-scroll__inner ~ .cyclic-scroll__inner {
    display: flex !important;
  }

  body[data-template="index"] cyclic-scroll .cyclic-scroll__item {
    display: flex !important;
    width: max-content !important;
    max-width: none !important;
    min-height: 38px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body[data-template="index"] .announcement--text .rte,
  body[data-template="index"] .announcement--text .rte > * {
    width: auto !important;
    margin: 0 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
}

/* Keep the sitewide announcement marquee inside the viewport. */
#shopline-section-announcement-bar cyclic-scroll,
#shopline-section-announcement-bar cyclic-scroll .cyclic-scroll__container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

#shopline-section-announcement-bar cyclic-scroll {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  #shopline-section-announcement-bar cyclic-scroll .cyclic-scroll__inner {
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    animation: none !important;
    transform: none !important;
  }

  #shopline-section-announcement-bar cyclic-scroll
    .cyclic-scroll__inner ~ .cyclic-scroll__inner {
    display: none !important;
  }

  #shopline-section-announcement-bar cyclic-scroll .cyclic-scroll__item {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  #shopline-section-announcement-bar cyclic-scroll .announcement--text,
  #shopline-section-announcement-bar cyclic-scroll .announcement--text .rte,
  #shopline-section-announcement-bar cyclic-scroll .announcement--text .rte > * {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}
