/* =========================================================
   TryLoveMe Home
   Compact editorial rhythm — v1.1.4
   ========================================================= */

/* Hero */
.tlm-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f4e9ed;
}
.tlm-hero-slider__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 550;
  overflow: hidden;
  background: #f4e9ed;
}
.tlm-hero-slide,
.tlm-hero-slide picture { display: block; width: 100%; height: 100%; }
.tlm-hero-slide { position: absolute; inset: 0; color: inherit; }
.tlm-hero-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .25s ease, transform .8s cubic-bezier(.2,.65,.25,1);
}
.tlm-hero-slider.is-changing .tlm-hero-slide__image { opacity: .84; transform: scale(1.006); }
.tlm-hero-slider__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 26px rgba(0,0,0,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.tlm-hero-slider__controls[hidden] { display: none; }
.tlm-hero-slider__arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.tlm-hero-slider__arrow:hover { background: rgba(0,0,0,.06); }
.tlm-hero-slider__arrow svg { width: 16px; height: 16px; }
.tlm-hero-slider__dots { display: flex; align-items: center; gap: 6px; }
.tlm-hero-slider__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23,21,20,.28);
  cursor: pointer;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}
.tlm-hero-slider__dot.is-active { width: 18px; border-radius: 999px; background: var(--tlm-text); }

/* Moving line */
.tlm-marquee {
  overflow: hidden;
  border-top: 1px solid var(--tlm-border);
  border-bottom: 1px solid var(--tlm-border);
  background: var(--tlm-bg);
}
.tlm-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding-block: 11px;
  animation: tlmMarquee 28s linear infinite;
  will-change: transform;
}
.tlm-marquee__track span {
  white-space: nowrap;
  font-size: clamp(11px, .9vw, 14px);
  font-weight: 700;
  letter-spacing: .17em;
}
.tlm-marquee__track i { font-style: normal; font-size: 10px; opacity: .45; }
@keyframes tlmMarquee { to { transform: translateX(-50%); } }

/* Reveal */
.tlm-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2,.65,.25,1);
}
.tlm-js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   Categories — compact visual rail/grid
   ========================================================= */
.tlm-categories-section {
  background: #fff;
  border-bottom: 1px solid var(--tlm-border);
}
.tlm-section-head--editorial { align-items: flex-end; }
.tlm-category-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, .75vw, 12px);
}
.tlm-category-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eadfe0;
  isolation: isolate;
}
.tlm-category-card__media,
.tlm-category-card__media img,
.tlm-category-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tlm-category-card__media img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.65,.25,1), filter .3s ease;
}
.tlm-category-card__placeholder { background: linear-gradient(145deg, #efe5e6, #d5bcc2 55%, #9e747e); }
.tlm-category-card::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,12,0) 42%, rgba(15,12,12,.62) 100%);
}
.tlm-category-card:hover .tlm-category-card__media img { transform: scale(1.035); }
.tlm-category-card__overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 9px;
  padding: clamp(14px, 1.15vw, 20px);
  color: #fff;
}
.tlm-category-card__index {
  padding-bottom: 3px;
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .72;
}
.tlm-category-card__name {
  min-width: 0;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 500;
}
.tlm-category-card__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 999px;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.tlm-category-card__arrow svg { width: 14px; }
.tlm-category-card:hover .tlm-category-card__arrow { background: #fff; color: #111; transform: translateX(2px); }

/* =========================================================
   Product sections
   ========================================================= */
.tlm-products-section { overflow: hidden; }
.tlm-products-section--new { background: var(--tlm-bg); }
.tlm-products-section--best { background: #fff; }
.tlm-product-rail {
  --tlm-rail-gap: clamp(14px, 1.35vw, 22px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--tlm-rail-gap) * 3)) / 4);
  gap: var(--tlm-rail-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tlm-product-rail::-webkit-scrollbar { display: none; }
.tlm-rail-controls { display: flex; gap: 6px; }
.tlm-rail-controls button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--tlm-border);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.tlm-rail-controls button:hover { background: var(--tlm-text); color: #fff; }

/* Shared card */
.tlm-product-card {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.tlm-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.03;
  background: #f6f3f1;
  overflow: hidden;
}
.tlm-product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.65,.25,1);
}
.tlm-product-card__image--secondary { opacity: 0; }
.tlm-product-card__media.has-secondary:hover .tlm-product-card__image--primary { opacity: 0; }
.tlm-product-card__media.has-secondary:hover .tlm-product-card__image--secondary { opacity: 1; transform: scale(1.012); }
.tlm-product-card__media:not(.has-secondary):hover .tlm-product-card__image--primary { transform: scale(1.018); }
.tlm-product-card__badges {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-right: 52px;
  pointer-events: none;
}
.tlm-product-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 5px 8px;
  background: rgba(255,255,255,.96);
  color: #171514;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tlm-product-badge--sale { background: #171514; color: #fff; }

/* Wishlist lives on the product image, where users expect it. */
.tlm-product-card__wishlist {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(23,21,20,.12);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.94);
  color: var(--tlm-text);
  box-shadow: 0 3px 14px rgba(23,21,20,.06);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.tlm-product-card__wishlist svg { width: 17px; height: 17px; transition: transform .2s ease, fill .2s ease; }
.tlm-product-card__wishlist:hover { transform: translateY(-1px); border-color: rgba(23,21,20,.28); }
.tlm-product-card__wishlist:hover svg { transform: scale(1.06); }
.tlm-product-card__wishlist.is-active,
.tlm-product-card__wishlist[aria-pressed="true"] { background: var(--tlm-text); color: #fff; border-color: var(--tlm-text); }
.tlm-product-card__wishlist.is-active svg,
.tlm-product-card__wishlist[aria-pressed="true"] svg { fill: currentColor; }
.tlm-product-card__wishlist:focus-visible { outline: 2px solid var(--tlm-accent); outline-offset: 2px; }

.tlm-product-card__body {
  flex: 1;
  min-height: 144px;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}
.tlm-product-card__copy { min-height: 58px; }
.tlm-product-card__category {
  margin: 0 0 5px;
  color: var(--tlm-muted);
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.tlm-product-card__title {
  display: -webkit-box;
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.36;
  font-weight: 500;
  letter-spacing: -.012em;
}
.tlm-product-card__title a { display: block; }

/* Price is intentionally attached to the product name rather than pushed to the bottom. */
.tlm-product-card__purchase {
  margin-top: 11px;
  padding-top: 0;
}
.tlm-product-card__price {
  min-height: 21px;
  margin: 0 0 11px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--tlm-text);
  font-family: var(--tlm-font) !important;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.018em;
}
.tlm-product-card__price .woocommerce-Price-amount,
.tlm-product-card__price .woocommerce-Price-amount bdi,
.tlm-product-card__price .woocommerce-Price-currencySymbol,
.tlm-product-card__price del,
.tlm-product-card__price ins { font: inherit !important; line-height: inherit !important; }
.tlm-product-card__price del { color: var(--tlm-muted); font-size: 12px !important; font-weight: 400 !important; opacity: .65; }
.tlm-product-card__price ins { text-decoration: none; font-weight: 700 !important; }

/* Clear primary action: calmer than the previous oversized black bar. */
.tlm-product-card__button {
  width: 100%;
  min-height: 42px;
  margin-top: 0;
  padding: 0 13px !important;
  border: 1px solid var(--tlm-text) !important;
  border-radius: 2px !important;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  background: transparent !important;
  color: var(--tlm-text) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .075em;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease !important;
}
.tlm-product-card__button-label { text-align: left; }
.tlm-product-card__button-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--tlm-text);
  color: #fff;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tlm-product-card__button-icon svg { width: 13px; height: 13px; transition: transform .2s ease; }
.tlm-product-card__button:hover,
.tlm-product-card__button:focus-visible {
  background: var(--tlm-text) !important;
  color: #fff !important;
  border-color: var(--tlm-text) !important;
}
.tlm-product-card__button:hover .tlm-product-card__button-icon,
.tlm-product-card__button:focus-visible .tlm-product-card__button-icon { background: #fff; color: var(--tlm-text); transform: translateX(1px); }
.tlm-product-card__button.added { background: var(--tlm-accent) !important; border-color: var(--tlm-accent) !important; color: #fff !important; }
.tlm-product-card__button:focus-visible { outline: 2px solid var(--tlm-accent); outline-offset: 2px; }

/* =========================================================
   Editorial tiles
   ========================================================= */
.tlm-editorial { background: var(--tlm-bg); }
.tlm-editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr .82fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 10px;
  min-height: clamp(500px, 48vw, 700px);
}
.tlm-editorial-card { position: relative; overflow: hidden; color: #fff; background: #c9b0b6; isolation: isolate; }
.tlm-editorial-card--1 { grid-row: 1 / 3; }
.tlm-editorial-card__media,
.tlm-editorial-card__media img,
.tlm-editorial-card__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.tlm-editorial-card__media img { object-fit: cover; transition: transform .75s cubic-bezier(.2,.65,.25,1); }
.tlm-editorial-card__placeholder { background: linear-gradient(135deg, #b96f80, #e3c9cf 58%, #7e5360); }
.tlm-editorial-card::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.01) 60%); }
.tlm-editorial-card:hover .tlm-editorial-card__media img { transform: scale(1.025); }
.tlm-editorial-card__content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(20px, 2.5vw, 38px); }
.tlm-editorial-card__content .tlm-eyebrow { color: rgba(255,255,255,.78); }
.tlm-editorial-card__content h3 { max-width: 680px; margin: 0; font-size: clamp(28px, 3.5vw, 56px); line-height: .98; letter-spacing: -.04em; font-weight: 500; }
.tlm-editorial-card--2 .tlm-editorial-card__content h3,
.tlm-editorial-card--3 .tlm-editorial-card__content h3 { font-size: clamp(22px, 2vw, 34px); }
.tlm-editorial-card__cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.tlm-editorial-card__cta svg { width: 15px; transition: transform .2s ease; }
.tlm-editorial-card:hover .tlm-editorial-card__cta svg { transform: translateX(4px); }

/* =========================================================
   Color edit / polish rail
   ========================================================= */
.tlm-polishes {
  overflow: hidden;
  background: #eee3e5;
}
.tlm-polishes__layout {
  display: grid;
  grid-template-columns: minmax(230px, .27fr) minmax(0, 1fr);
  gap: clamp(30px, 3.8vw, 54px);
  align-items: start;
}
.tlm-polishes__intro-inner { max-width: 340px; }
.tlm-polishes__intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 500;
}
.tlm-polishes__text { margin: 18px 0 22px; color: #5f5856; font-size: 14px; line-height: 1.55; }
.tlm-polishes__products {
  --tlm-polish-gap: clamp(14px, 1.2vw, 20px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--tlm-polish-gap) * 3)) / 4);
  gap: var(--tlm-polish-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.tlm-polishes__products::-webkit-scrollbar { display: none; }
.tlm-polishes .tlm-product-card__media { aspect-ratio: 1 / 1.02; background: rgba(255,255,255,.78); }
.tlm-polishes .tlm-product-card__body { min-height: 144px; }

/* =========================================================
   Full campaign
   ========================================================= */
.tlm-campaign {
  position: relative;
  min-height: clamp(500px, 52vw, 700px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.tlm-campaign__media,
.tlm-campaign__media img,
.tlm-campaign__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.tlm-campaign__media img { object-fit: cover; transform: scale(1.018); transition: transform .9s cubic-bezier(.2,.65,.25,1); }
.tlm-campaign.is-visible .tlm-campaign__media img { transform: scale(1); }
.tlm-campaign__placeholder { background: linear-gradient(135deg, #5d4548, #ba7784 60%, #e1c7c5); }
.tlm-campaign::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.01) 70%); }
.tlm-campaign__content-wrap { position: relative; z-index: 1; width: 100%; padding-block: clamp(44px, 5vw, 72px); }
.tlm-campaign__content { max-width: 700px; }
.tlm-campaign__content > p:not(.tlm-eyebrow) { max-width: 500px; margin: 16px 0 0; color: rgba(255,255,255,.88); }
.tlm-campaign .tlm-button { margin-top: 22px; background: #fff; color: #111; }
.tlm-campaign .tlm-button:hover { background: transparent; color: #fff; border-color: #fff; }

/* =========================================================
   Brand statement — still expressive, not oversized
   ========================================================= */
.tlm-statement {
  padding-block: clamp(70px, 7vw, 108px);
  background: var(--tlm-text);
  color: #fff;
  overflow: hidden;
}
.tlm-statement h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 118px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 500;
}
.tlm-statement h2 em { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.tlm-statement__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-top: clamp(34px, 4vw, 58px); }
.tlm-statement__bottom p { max-width: 500px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(14px, 1.2vw, 17px); }
.tlm-statement .tlm-link-arrow { color: #fff; }

/* =========================================================
   Benefits — compact, icon-led
   ========================================================= */
.tlm-benefits { border-top: 1px solid var(--tlm-border); border-bottom: 1px solid var(--tlm-border); background: var(--tlm-bg); }
.tlm-benefits__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tlm-benefit {
  min-height: 142px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--tlm-border);
}
.tlm-benefit:first-child { padding-left: 0; }
.tlm-benefit:last-child { border-right: 0; padding-right: 0; }
.tlm-benefit__icon {
  grid-column: 1;
  grid-row: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid var(--tlm-border);
  border-radius: 50%;
}
.tlm-benefit__icon svg { width: 19px; height: 19px; stroke-width: 1.35; }
.tlm-benefit__top {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
}
.tlm-benefit__index { display: block; margin-bottom: 5px; color: var(--tlm-muted); font-size: 9px; letter-spacing: .12em; }
.tlm-benefit__copy { min-width: 0; }
.tlm-benefit h3 { margin: 0; font-size: clamp(15px, 1.2vw, 19px); font-weight: 600; letter-spacing: -.02em; }
.tlm-benefit p { margin: 5px 0 0; color: var(--tlm-muted); font-size: 12px; line-height: 1.4; }

/* =========================================================
   Story
   ========================================================= */
.tlm-story__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.tlm-story__media { aspect-ratio: 1.08; overflow: hidden; background: #ded6d1; }
.tlm-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1); }
.tlm-story:hover .tlm-story__media img { transform: scale(1.018); }
.tlm-story__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #dacdca, #b98891); }
.tlm-story__content > p:not(.tlm-eyebrow) { max-width: 500px; margin: 18px 0 22px; color: var(--tlm-muted); font-size: clamp(14px, 1.2vw, 17px); }

/* Newsletter */
.tlm-newsletter { padding-block: var(--tlm-section); background: var(--tlm-accent); color: #fff; }
.tlm-newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.tlm-newsletter__copy p:not(.tlm-eyebrow) { max-width: 440px; margin: 16px 0 0; color: rgba(255,255,255,.82); }
.tlm-newsletter__form form { width: 100%; }
.tlm-newsletter__form input[type=email],
.tlm-newsletter__form input[type=text] { width: 100%; min-height: 48px; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.7); border-radius: 0; color: #fff; padding: 8px 0; outline: 0; }
.tlm-newsletter__form input::placeholder { color: rgba(255,255,255,.75); }
.tlm-newsletter__form input[type=submit],
.tlm-newsletter__form button { min-height: 44px; margin-top: 12px; border: 1px solid #fff; background: #fff; color: var(--tlm-text); padding: 0 18px; text-transform: uppercase; font-size: 10px; letter-spacing: .08em; cursor: pointer; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .tlm-category-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tlm-category-card { aspect-ratio: 1 / 1.05; }
  .tlm-product-rail { grid-auto-columns: calc((100% - (var(--tlm-rail-gap) * 2)) / 3); }
  .tlm-polishes__layout { grid-template-columns: minmax(215px, .28fr) minmax(0, 1fr); gap: 34px; }
  .tlm-polishes__products { grid-auto-columns: calc((100% - (var(--tlm-polish-gap) * 2)) / 3); }
  .tlm-editorial-grid { min-height: 620px; }
  .tlm-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .tlm-benefit:nth-child(2) { border-right: 0; }
  .tlm-benefit:nth-child(-n+2) { border-bottom: 1px solid var(--tlm-border); }
  .tlm-benefit:nth-child(3) { padding-left: 0; }
}

@media (max-width: 767px) {
  .tlm-hero-slider__stage { aspect-ratio: 4 / 5; max-height: 78svh; }
  .tlm-hero-slide__image { object-fit: contain; background: #f4e9ed; }
  .tlm-hero-slider__controls { bottom: 9px; gap: 6px; padding: 4px 6px; }
  .tlm-hero-slider__arrow { width: 29px; height: 29px; }
  .tlm-marquee__track { padding-block: 9px; animation-duration: 22s; }

  .tlm-section-head { gap: 14px; }
  .tlm-section-head__actions { align-self: flex-end; }
  .tlm-rail-controls { display: none; }

  .tlm-category-mosaic {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72vw;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-right: calc(var(--tlm-gutter) * -1);
    padding-right: var(--tlm-gutter);
  }
  .tlm-category-mosaic::-webkit-scrollbar { display: none; }
  .tlm-category-card { aspect-ratio: 4 / 5; scroll-snap-align: start; }
  .tlm-category-card__overlay { padding: 16px; }
  .tlm-category-card__name { font-size: 22px; }

  .tlm-product-rail {
    grid-auto-columns: 76vw;
    gap: 12px;
    margin-right: calc(var(--tlm-gutter) * -1);
    padding-right: var(--tlm-gutter);
  }
  .tlm-product-card__body { min-height: 140px; padding-top: 11px; }
  .tlm-product-card__copy { min-height: 56px; }
  .tlm-product-card__purchase { margin-top: 10px; padding-top: 0; }
  .tlm-product-card__button { min-height: 41px; }

  .tlm-editorial-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
  .tlm-editorial-card,
  .tlm-editorial-card--1 { grid-row: auto; min-height: 92vw; }
  .tlm-editorial-card--2,
  .tlm-editorial-card--3 { min-height: 68vw; }
  .tlm-editorial-card__content h3,
  .tlm-editorial-card--2 .tlm-editorial-card__content h3,
  .tlm-editorial-card--3 .tlm-editorial-card__content h3 { font-size: clamp(28px, 8vw, 42px); }

  .tlm-polishes__layout { grid-template-columns: 1fr; gap: 26px; }
  .tlm-polishes__intro-inner { max-width: 520px; }
  .tlm-polishes__intro h2 { font-size: clamp(38px, 12vw, 56px); }
  .tlm-polishes__products {
    grid-auto-columns: 76vw;
    margin-right: calc(var(--tlm-gutter) * -1);
    padding-right: var(--tlm-gutter);
  }

  .tlm-campaign { min-height: 560px; }
  .tlm-campaign__content-wrap { padding-block: 44px; }

  .tlm-statement { padding-block: 62px; }
  .tlm-statement h2 { font-size: clamp(52px, 16vw, 78px); line-height: .88; }
  .tlm-statement__bottom { align-items: flex-start; flex-direction: column; margin-top: 34px; gap: 22px; }

  .tlm-benefits__grid { grid-template-columns: 1fr; }
  .tlm-benefit,
  .tlm-benefit:first-child,
  .tlm-benefit:nth-child(3),
  .tlm-benefit:last-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--tlm-border);
  }
  .tlm-benefit:last-child { border-bottom: 0; }

  .tlm-story__grid,
  .tlm-newsletter__inner { grid-template-columns: 1fr; }
  .tlm-story__content { padding-top: 2px; }
  .tlm-newsletter__inner { align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .tlm-marquee__track { animation: none; }
  .tlm-js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tlm-category-card__media img,
  .tlm-editorial-card__media img,
  .tlm-campaign__media img,
  .tlm-story__media img,
  .tlm-product-card__image { transition: none; }
}
