/**
 * Nymphaea mobile-first homepage experience.
 * Scoped to .nymphaea-home-experience to avoid changing shop/category pages.
 */

.nymphaea-home-experience {
  --nym-ink: #141210;
  --nym-muted: #766f69;
  --nym-line: rgba(20, 18, 16, 0.12);
  --nym-soft: #f7f4f0;
  --nym-warm: #eee6dc;
  --nym-white: #fff;
  --nym-radius-sm: 12px;
  --nym-radius-md: 20px;
  --nym-radius-lg: 30px;
  --nym-shadow: 0 18px 50px rgba(31, 25, 20, 0.08);
}

.nymphaea-home-experience .nym-home {
  overflow: clip;
  background: var(--nym-white);
  color: var(--nym-ink);
}

.nymphaea-home-experience .nym-home-section,
.nymphaea-home-experience .nym-home-categories {
  position: relative;
  padding: clamp(44px, 6vw, 88px) 0;
}

.nymphaea-home-experience .nym-home-section--soft,
.nymphaea-home-experience .nym-home-categories {
  background: var(--nym-soft);
}

.nymphaea-home-experience .nym-home-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.nymphaea-home-experience .nym-home-heading--compact {
  margin-bottom: 24px;
}

.nymphaea-home-experience .nym-home-heading__copy {
  min-width: 0;
}

.nymphaea-home-experience .nym-home-heading h2 {
  margin: 0;
  color: var(--nym-ink);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

[dir="rtl"] .nymphaea-home-experience .nym-home-heading h2,
.rtl.nymphaea-home-experience .nym-home-heading h2 {
  letter-spacing: 0;
}

.nymphaea-home-experience .nym-home-heading p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--nym-muted);
  font-size: 15px;
  line-height: 1.7;
}

.nymphaea-home-experience .nym-home-view-all {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--nym-line);
  border-radius: 999px;
  color: var(--nym-ink);
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nymphaea-home-experience .nym-home-view-all:hover,
.nymphaea-home-experience .nym-home-view-all:focus-visible {
  border-color: var(--nym-ink);
  background: var(--nym-ink);
  color: var(--nym-white);
  text-decoration: none;
  transform: translateY(-1px);
}

.nymphaea-home-experience .nym-home-view-all i {
  font-size: 20px;
  line-height: 1;
}

/* Category discovery rail */
.nymphaea-home-experience .nym-home-categories__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 148px);
  gap: 14px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0 max(20px, calc((100vw - 1400px) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nymphaea-home-experience .nym-home-categories__rail::-webkit-scrollbar {
  display: none;
}

.nymphaea-home-experience .nym-home-category {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
  color: var(--nym-ink);
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}

.nymphaea-home-experience .nym-home-category__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.14;
  overflow: hidden;
  border-radius: 999px 999px var(--nym-radius-lg) var(--nym-radius-lg);
  background: var(--nym-warm);
  box-shadow: 0 10px 28px rgba(31, 25, 20, 0.07);
}

.nymphaea-home-experience .nym-home-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1);
}

.nymphaea-home-experience .nym-home-category:hover .nym-home-category__image img,
.nymphaea-home-experience .nym-home-category:focus-visible .nym-home-category__image img {
  transform: scale(1.045);
}

.nymphaea-home-experience .nym-home-category__name {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Existing ACF banner, modernized */
.nymphaea-home-experience .nym-home-editorial {
  padding: 0;
  background: var(--nym-ink);
  color: var(--nym-white);
}

.nymphaea-home-experience .nym-home-editorial__grid {
  display: grid;
  min-height: clamp(460px, 64vw, 760px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}

.nymphaea-home-experience .nym-home-editorial__media {
  min-height: 430px;
  overflow: hidden;
  background: #28231f;
}

.nymphaea-home-experience .nym-home-editorial__media img,
.nymphaea-home-experience .nym-home-editorial__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nymphaea-home-experience .nym-home-editorial__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 6vw, 96px);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.08), transparent 32%),
    var(--nym-ink);
}

.nymphaea-home-experience .nym-home-editorial__eyebrow {
  margin-bottom: 20px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nymphaea-home-experience .nym-home-editorial__content h2 {
  max-width: 580px;
  margin: 0;
  color: var(--nym-white);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

[dir="rtl"] .nymphaea-home-experience .nym-home-editorial__content h2,
.rtl.nymphaea-home-experience .nym-home-editorial__content h2 {
  letter-spacing: 0;
}

.nymphaea-home-experience .nym-home-editorial__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 13px 19px;
  border-radius: 999px;
  color: var(--nym-ink);
  background: var(--nym-white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nymphaea-home-experience .nym-home-editorial__button:hover,
.nymphaea-home-experience .nym-home-editorial__button:focus-visible {
  color: var(--nym-ink);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

/* Product rails */
.nymphaea-home-experience .nym-home-rail {
  position: relative;
}

.nymphaea-home-experience .nym-home-rail__viewport {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: max(20px, calc((100vw - 1400px) / 2));
  padding-left: max(20px, calc((100vw - 1400px) / 2));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nymphaea-home-experience .nym-home-rail__viewport::-webkit-scrollbar {
  display: none;
}

.nymphaea-home-experience .nym-home-rail__viewport:focus-visible {
  outline: 2px solid var(--nym-ink);
  outline-offset: 6px;
}

.nymphaea-home-experience .nym-home-rail__viewport > .woocommerce {
  width: max-content;
  min-width: 100%;
}

.nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.nymphaea-home-experience .nym-home-rail .woocommerce ul.products::before,
.nymphaea-home-experience .nym-home-rail .woocommerce ul.products::after {
  display: none !important;
}

.nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product {
  display: flex;
  flex: 0 0 min(72vw, 290px) !important;
  width: min(72vw, 290px) !important;
  max-width: min(72vw, 290px) !important;
  margin: 0 !important;
  padding: 0 !important;
  scroll-snap-align: start;
}

.nymphaea-home-experience .nym-home-rail .product-block {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(20,18,16,.08);
  border-radius: var(--nym-radius-md);
  background: var(--nym-white);
  box-shadow: 0 8px 26px rgba(31,25,20,.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nymphaea-home-experience .nym-home-rail .product-block::after {
  display: none !important;
}

.nymphaea-home-experience .nym-home-rail .product-block:hover {
  border-color: rgba(20,18,16,.18);
  box-shadow: var(--nym-shadow);
  transform: translateY(-3px);
}

.nymphaea-home-experience .nym-home-rail .product-thumbnail {
  display: block !important;
  aspect-ratio: 4 / 5;
  overflow: hidden !important;
  background: var(--nym-soft);
}

.nymphaea-home-experience .nym-home-rail .product-thumbnail > a,
.nymphaea-home-experience .nym-home-rail .product-thumbnail > a img,
.nymphaea-home-experience .nym-home-rail .product-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}

.nymphaea-home-experience .nym-home-rail .product-thumbnail img {
  margin: 0 !important;
  object-fit: cover;
  transform: none !important;
  transition: transform 450ms cubic-bezier(.2,.7,.2,1) !important;
}

.nymphaea-home-experience .nym-home-rail .product-block:hover .product-thumbnail img {
  transform: scale(1.045) !important;
}

.nymphaea-home-experience .nym-home-rail .product-body {
  height: auto !important;
  margin: 0 !important;
  padding: 15px 14px 14px;
}

.nymphaea-home-experience .nym-home-rail .product-category {
  display: none !important;
}

.nymphaea-home-experience .nym-home-rail .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 43px;
  margin: 0 !important;
  overflow: hidden;
  color: var(--nym-ink);
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5;
  text-align: start !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nymphaea-home-experience .nym-home-rail .price {
  margin-top: 7px !important;
  color: var(--nym-ink) !important;
  font-size: 13px !important;
  text-align: start !important;
}

.nymphaea-home-experience .nym-home-rail .product-button {
  gap: 7px;
  align-items: stretch;
  margin-top: 12px;
}

.nymphaea-home-experience .nym-home-rail .product-add-to-cart {
  flex: 1;
}

.nymphaea-home-experience .nym-home-rail .button {
  min-height: 40px;
  padding: 9px 8px 10px !important;
  border-color: var(--nym-line) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.nymphaea-home-experience .nym-home-rail .custom-badge,
.nymphaea-home-experience .nym-home-rail .onsale {
  top: 11px !important;
  right: auto;
  left: 11px !important;
  z-index: 3;
  padding: 4px 8px 5px !important;
  border-radius: 999px !important;
  line-height: 1.2 !important;
}

[dir="rtl"] .nymphaea-home-experience .nym-home-rail .custom-badge,
[dir="rtl"] .nymphaea-home-experience .nym-home-rail .onsale,
.rtl.nymphaea-home-experience .nym-home-rail .custom-badge,
.rtl.nymphaea-home-experience .nym-home-rail .onsale {
  right: 11px !important;
  left: auto !important;
}

.nymphaea-home-experience .nym-home-rail__arrow {
  position: absolute;
  top: 42%;
  z-index: 7;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--nym-line);
  border-radius: 50%;
  color: var(--nym-ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 9px 28px rgba(31,25,20,.13);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nymphaea-home-experience .nym-home-rail__arrow:hover,
.nymphaea-home-experience .nym-home-rail__arrow:focus-visible {
  color: var(--nym-white);
  background: var(--nym-ink);
  transform: translateY(-50%) scale(1.04);
}

.nymphaea-home-experience .nym-home-rail__arrow[disabled] {
  opacity: .25;
  cursor: default;
}

.nymphaea-home-experience .nym-home-rail__arrow i {
  font-size: 25px;
}

.nymphaea-home-experience .nym-home-rail__arrow--prev {
  left: -22px;
}

.nymphaea-home-experience .nym-home-rail__arrow--next {
  right: -22px;
}

[dir="rtl"] .nymphaea-home-experience .nym-home-rail__arrow--prev,
.rtl.nymphaea-home-experience .nym-home-rail__arrow--prev {
  right: -22px;
  left: auto;
}

[dir="rtl"] .nymphaea-home-experience .nym-home-rail__arrow--next,
.rtl.nymphaea-home-experience .nym-home-rail__arrow--next {
  right: auto;
  left: -22px;
}

@media (min-width: 768px) {
  .nymphaea-home-experience .nym-home-categories__rail {
    grid-auto-columns: minmax(140px, 180px);
    gap: 20px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 18px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product {
    flex-basis: 260px !important;
    width: 260px !important;
    max-width: 260px !important;
  }
}

@media (min-width: 1100px) {
  .nymphaea-home-experience .nym-home-rail__viewport {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .nymphaea-home-experience .nym-home-rail__viewport > .woocommerce,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    width: 100%;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product {
    flex: 0 0 calc((100% - 72px) / 5) !important;
    width: calc((100% - 72px) / 5) !important;
    max-width: calc((100% - 72px) / 5) !important;
  }

  .nymphaea-home-experience .nym-home-rail__arrow {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 767px) {
  .nymphaea-home-experience .nym-home-section,
  .nymphaea-home-experience .nym-home-categories {
    padding: 42px 0;
  }

  .nymphaea-home-experience .nym-home-heading {
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .nymphaea-home-experience .nym-home-heading h2 {
    font-size: 27px;
  }

  .nymphaea-home-experience .nym-home-heading p {
    display: none;
  }

  .nymphaea-home-experience .nym-home-view-all {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .nymphaea-home-experience .nym-home-category__image {
    border-radius: 999px 999px 24px 24px;
  }

  .nymphaea-home-experience .nym-home-editorial__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .nymphaea-home-experience .nym-home-editorial__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .nymphaea-home-experience .nym-home-editorial__content {
    padding: 36px 22px 42px;
  }

  .nymphaea-home-experience .nym-home-editorial__content h2 {
    font-size: 36px;
  }

  .nymphaea-home-experience .nym-home-editorial__eyebrow {
    margin-bottom: 14px;
  }

  .nymphaea-home-experience .nym-home-editorial__button {
    margin-top: 24px;
  }
}

@media (max-width: 390px) {
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product {
    flex-basis: 76vw !important;
    width: 76vw !important;
    max-width: 76vw !important;
  }

  .nymphaea-home-experience .nym-home-categories__rail {
    grid-auto-columns: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nymphaea-home-experience .nym-home-rail__viewport {
    scroll-behavior: auto;
  }

  .nymphaea-home-experience .nym-home-category__image img,
  .nymphaea-home-experience .nym-home-rail .product-thumbnail img,
  .nymphaea-home-experience .nym-home-view-all,
  .nymphaea-home-experience .nym-home-editorial__button,
  .nymphaea-home-experience .nym-home-rail__arrow,
  .nymphaea-home-experience .nym-home-rail .product-block {
    transition: none !important;
  }
}

/* =========================================================
   Nymphaea homepage refinement 1.2.1
   Compact editorial rails, three-panel desktop story and
   progressive motion inspired by the reviewed mobile flow.
   ========================================================= */

/* Hero entrance and active-slide polish. UIkit remains the carousel engine. */
.nymphaea-home-experience .home-slideshow {
  overflow: hidden;
  background: #f2efeb;
}

.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li > .uk-position-cover:first-child {
  overflow: hidden;
}

.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li img,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li video {
  opacity: .72;
  transform: scale(1.055);
  transition: opacity .9s ease, transform 5.8s cubic-bezier(.2,.72,.2,1);
}

.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active img,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active video {
  opacity: 1;
  transform: scale(1.005);
}

.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slideshow-title,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slideshow-desc,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slider-button-1,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slider-button-2 {
  animation: nymHeroCopyIn .75s cubic-bezier(.2,.75,.25,1) both;
}

.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slideshow-desc { animation-delay: .09s; }
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slider-button-1,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li.uk-active .slider-button-2 { animation-delay: .17s; }

@keyframes nymHeroCopyIn {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: none; }
}

/* More editorial, quieter section rhythm. */
.nymphaea-home-experience .nym-home-section,
.nymphaea-home-experience .nym-home-categories {
  padding: clamp(48px, 5.2vw, 76px) 0;
}

.nymphaea-home-experience .nym-home-section::before,
.nymphaea-home-experience .nym-home-categories::before {
  position: absolute;
  top: 0;
  right: max(20px, calc((100vw - 1400px) / 2));
  left: max(20px, calc((100vw - 1400px) / 2));
  height: 1px;
  background: rgba(20,18,16,.055);
  content: "";
}

.nymphaea-home-experience .nym-home-section--new::before { display: none; }

/* Category discovery is deliberately compact on all screens. */
.nymphaea-home-experience .nym-home-categories__rail {
  grid-auto-columns: clamp(96px, 10vw, 142px);
  gap: clamp(12px, 1.6vw, 20px);
}

.nymphaea-home-experience .nym-home-category { gap: 10px; }

.nymphaea-home-experience .nym-home-category__image {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(20,18,16,.07);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(31,25,20,.055);
}

.nymphaea-home-experience .nym-home-category__name {
  min-height: 0;
  font-size: 12px;
  line-height: 1.35;
}

/* Restore the balanced desktop video / CTA / image triptych. */
.nymphaea-home-experience .nym-home-editorial__grid {
  min-height: clamp(420px, 42vw, 640px);
}

.nymphaea-home-experience .nym-home-editorial.has-three-panels .nym-home-editorial__grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, .62fr) minmax(0, 1fr);
}

.nymphaea-home-experience .nym-home-editorial.has-two-panels .nym-home-editorial__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
}

.nymphaea-home-experience .nym-home-editorial__media {
  min-height: 420px;
}

.nymphaea-home-experience .nym-home-editorial__media--secondary {
  position: relative;
}

.nymphaea-home-experience .nym-home-editorial__media--secondary::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,16,.22), transparent 28%);
  content: "";
  pointer-events: none;
}

.rtl.nymphaea-home-experience .nym-home-editorial__media--secondary::after,
[dir="rtl"] .nymphaea-home-experience .nym-home-editorial__media--secondary::after {
  background: linear-gradient(-90deg, rgba(20,18,16,.22), transparent 28%);
}

.nymphaea-home-experience .nym-home-editorial__content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4.2vw, 70px);
  text-align: start;
}

.nymphaea-home-experience .nym-home-editorial__content h2 {
  max-width: 460px;
  font-size: clamp(31px, 3.7vw, 58px);
}

/* Compact, fashion-led product rail. */
.nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
  gap: 10px;
}

.nymphaea-home-experience .nym-home-rail .product-block {
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(31,25,20,.045);
}

.nymphaea-home-experience .nym-home-rail .product-body {
  padding: 11px 10px 10px;
}

.nymphaea-home-experience .nym-home-rail .woocommerce-loop-product__title {
  min-height: 36px;
  font-size: 11px !important;
  line-height: 1.5;
}

.nymphaea-home-experience .nym-home-rail .price {
  margin-top: 5px !important;
  font-size: 10px !important;
}

.nymphaea-home-experience .nym-home-rail .product-button {
  gap: 5px;
  margin-top: 8px;
}

.nymphaea-home-experience .nym-home-rail .button {
  min-height: 34px;
  padding: 6px 5px 7px !important;
  font-size: 9px !important;
}

.nymphaea-home-experience .nym-home-rail .custom-badge,
.nymphaea-home-experience .nym-home-rail .onsale {
  top: 7px !important;
  left: 7px !important;
  padding: 4px 6px !important;
  font-size: 8px !important;
}

.rtl.nymphaea-home-experience .nym-home-rail .custom-badge,
.rtl.nymphaea-home-experience .nym-home-rail .onsale,
[dir="rtl"] .nymphaea-home-experience .nym-home-rail .custom-badge,
[dir="rtl"] .nymphaea-home-experience .nym-home-rail .onsale {
  right: 7px !important;
  left: auto !important;
}

/* Final rail tile makes the destination explicit, as in the reference flow. */
.nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
  display: flex !important;
  align-items: stretch;
  padding: 0 !important;
}

.nymphaea-home-experience .nym-home-view-all-tile > a {
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 18px 10px;
  border: 1px solid var(--nym-line);
  border-radius: 14px;
  color: var(--nym-ink);
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.95), transparent 34%),
    var(--nym-warm);
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.nymphaea-home-experience .nym-home-view-all-tile > a:hover,
.nymphaea-home-experience .nym-home-view-all-tile > a:focus-visible {
  color: var(--nym-ink);
  box-shadow: var(--nym-shadow);
  text-decoration: none;
  transform: translateY(-3px);
}

.nymphaea-home-experience .nym-home-view-all-tile__circle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nym-ink);
}

.nymphaea-home-experience .nym-home-view-all-tile__circle i { font-size: 21px; }
.nymphaea-home-experience .nym-home-view-all-tile strong { font-size: 12px; }
.nymphaea-home-experience .nym-home-view-all-tile small { display: -webkit-box; max-width: 100%; overflow: hidden; color: var(--nym-muted); font-size: 9px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }


/* Safe mobile collection link. The heading link remains the desktop control. */
.nymphaea-home-experience .nym-home-rail__mobile-view-all {
  display: none;
  margin-top: 16px;
}

.nymphaea-home-experience .nym-home-rail__mobile-view-all a {
  display: flex;
  min-height: 46px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--nym-line);
  border-radius: 999px;
  color: var(--nym-ink);
  background: var(--nym-white);
  text-decoration: none;
}

.nymphaea-home-experience .nym-home-rail__mobile-view-all small {
  color: var(--nym-muted);
  font-size: 10px;
}

@media (max-width: 767px) {
  .nymphaea-home-experience .nym-home-rail__mobile-view-all {
    display: block;
  }
}

/* Progressive reveal: no JS means no hidden content. */
.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal],
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card] {
  opacity: 0;
  will-change: opacity, transform, clip-path;
  transition:
    opacity .7s cubic-bezier(.2,.75,.25,1) var(--nym-delay, 0ms),
    transform .78s cubic-bezier(.2,.75,.25,1) var(--nym-delay, 0ms),
    clip-path .86s cubic-bezier(.2,.75,.25,1) var(--nym-delay, 0ms);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal="rise"],
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card] { transform: translate3d(0, 28px, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal="left"] { transform: translate3d(-36px, 0, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal="right"] { transform: translate3d(36px, 0, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal="scale"] { transform: scale(.94); clip-path: inset(0 0 12% 0 round 26px); }

.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal].is-revealed,
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card].is-revealed {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0 round 0);
}

@media (min-width: 768px) and (max-width: 1099px) {
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product {
    flex-basis: 205px !important;
    width: 205px !important;
    max-width: 205px !important;
  }

  .nymphaea-home-experience .nym-home-editorial.has-three-panels .nym-home-editorial__grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
  }

  .nymphaea-home-experience .nym-home-editorial__media--secondary { display: none; }
}

@media (max-width: 767px) {
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li img,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li video {
    transform: scale(1.035);
  }

  .nymphaea-home-experience .nym-home-section,
  .nymphaea-home-experience .nym-home-categories {
    padding: 38px 0 42px;
  }

  .nymphaea-home-experience .nym-home-heading,
  .nymphaea-home-experience .nym-home-heading--compact {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    text-align: center;
  }

  .nymphaea-home-experience .nym-home-heading h2 { font-size: 23px; }

  .nymphaea-home-experience .nym-home-view-all {
    min-height: 0;
    padding: 3px 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(20,18,16,.35);
    border-radius: 0;
    background: transparent;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .rtl.nymphaea-home-experience .nym-home-view-all,
  [dir="rtl"] .nymphaea-home-experience .nym-home-view-all {
    letter-spacing: 0;
    text-transform: none;
  }

  .nymphaea-home-experience .nym-home-view-all:hover,
  .nymphaea-home-experience .nym-home-view-all:focus-visible {
    color: var(--nym-ink);
    background: transparent;
    transform: none;
  }

  .nymphaea-home-experience .nym-home-view-all i { display: none; }

  .nymphaea-home-experience .nym-home-categories__rail {
    grid-auto-columns: 88px;
    gap: 12px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .nymphaea-home-experience .nym-home-category__name { font-size: 10px; }

  .nymphaea-home-experience .nym-home-rail__viewport {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products { gap: 8px; }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex: 0 0 clamp(112px, 34vw, 148px) !important;
    width: clamp(112px, 34vw, 148px) !important;
    max-width: clamp(112px, 34vw, 148px) !important;
  }

  .nymphaea-home-experience .nym-home-rail .product-thumbnail { aspect-ratio: 3 / 4; }
  .nymphaea-home-experience .nym-home-rail .product-body { padding: 9px 8px 8px; }
  .nymphaea-home-experience .nym-home-rail .woocommerce-loop-product__title { min-height: 32px; font-size: 9px !important; }
  .nymphaea-home-experience .nym-home-rail .price { font-size: 8px !important; }
  .nymphaea-home-experience .nym-home-rail .product-button { margin-top: 6px; }
  .nymphaea-home-experience .nym-home-rail .button { min-height: 30px; font-size: 8px !important; }

  .nymphaea-home-experience .nym-home-editorial.has-three-panels .nym-home-editorial__grid,
  .nymphaea-home-experience .nym-home-editorial.has-two-panels .nym-home-editorial__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .nymphaea-home-experience .nym-home-editorial__media--primary {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .nymphaea-home-experience .nym-home-editorial__media--secondary { display: none; }
  .nymphaea-home-experience .nym-home-editorial__content { min-height: 320px; padding: 34px 22px 40px; }
  .nymphaea-home-experience .nym-home-editorial__content h2 { font-size: 34px; }
}

@media (max-width: 390px) {
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex-basis: 35vw !important;
    width: 35vw !important;
    max-width: 35vw !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li img,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li video,
  .nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal],
  .nym-reveal-enabled .nymphaea-home-experience [data-nym-card] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Card-by-card motion variants observed in the reviewed reference flow. */
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="left"] { transform: translate3d(-24px, 0, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="right"] { transform: translate3d(24px, 0, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="scale"] { transform: scale(.94); clip-path: inset(0 0 9% 0 round 16px); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="rise"] { transform: translate3d(0, 24px, 0); }
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card].is-revealed { transform: none; clip-path: inset(0 0 0 0 round 0); }

/* ========================================================================
   Nymphaea 1.2.2 — mobile storefront corrections
   Keeps the safe fail-open motion system while restoring the intended
   two-card collection rhythm and a full first-screen fashion hero.
   ======================================================================== */

@media (max-width: 767px) {
  .nymphaea-home-experience .home-slideshow {
    min-height: clamp(520px, calc(100svh - 62px), 780px);
    background: #eee9e3;
  }

  .nymphaea-home-experience .home-slideshow .uk-slideshow-items {
    height: clamp(520px, calc(100svh - 62px), 780px) !important;
    min-height: clamp(520px, calc(100svh - 62px), 780px) !important;
  }

  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li > .uk-position-cover:first-child {
    height: 100%;
    min-height: 100%;
  }

  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li img,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items > li video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .nymphaea-home-experience .home-slideshow .slideshow-title {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.08;
  }

  .nymphaea-home-experience .home-slideshow .slideshow-desc {
    max-width: min(86vw, 420px);
    font-size: 14px !important;
    line-height: 1.65;
  }

  .nymphaea-home-experience .nym-home-section,
  .nymphaea-home-experience .nym-home-categories {
    padding: 42px 0 46px;
  }

  .nymphaea-home-experience .nym-home-heading,
  .nymphaea-home-experience .nym-home-heading--compact {
    margin-bottom: 20px;
  }

  .nymphaea-home-experience .nym-home-heading h2 {
    font-size: clamp(23px, 6.6vw, 29px);
  }

  .nymphaea-home-experience .nym-home-categories__rail {
    grid-auto-columns: 96px;
    gap: 13px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .nymphaea-home-experience .nym-home-category__name {
    min-height: 28px;
    font-size: 11px;
  }

  .nymphaea-home-experience .nym-home-rail__viewport {
    padding-right: 16px;
    padding-left: 16px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 10px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex: 0 0 clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
    width: clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
    max-width: clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
  }

  .nymphaea-home-experience .nym-home-rail .product-block,
  .nymphaea-home-experience .nym-home-view-all-tile > a {
    border-radius: 15px;
  }

  .nymphaea-home-experience .nym-home-rail .product-thumbnail {
    aspect-ratio: 4 / 5;
  }

  .nymphaea-home-experience .nym-home-rail .product-body {
    padding: 11px 10px 11px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce-loop-product__title {
    min-height: 36px;
    font-size: 12px !important;
    line-height: 1.5;
  }

  .nymphaea-home-experience .nym-home-rail .price {
    margin-top: 5px !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  .nymphaea-home-experience .nym-home-rail .product-button {
    gap: 6px;
    margin-top: 8px;
  }

  .nymphaea-home-experience .nym-home-rail .button {
    min-height: 35px;
    padding: 7px 6px 8px !important;
    font-size: 10.5px !important;
  }

  .nymphaea-home-experience .nym-home-rail .custom-badge,
  .nymphaea-home-experience .nym-home-rail .onsale {
    top: 8px !important;
    left: 8px !important;
    padding: 4px 7px !important;
    font-size: 8.5px !important;
  }

  .rtl.nymphaea-home-experience .nym-home-rail .custom-badge,
  .rtl.nymphaea-home-experience .nym-home-rail .onsale,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail .custom-badge,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail .onsale {
    right: 8px !important;
    left: auto !important;
  }

  .nymphaea-home-experience .nym-home-view-all-tile > a {
    min-height: 100%;
    padding: 20px 12px;
  }

  .nymphaea-home-experience .nym-home-view-all-tile__circle {
    width: 48px;
    height: 48px;
  }

  .nymphaea-home-experience .nym-home-view-all-tile strong {
    font-size: 13px;
  }

  .nymphaea-home-experience .nym-home-view-all-tile small {
    font-size: 10px;
  }
}

@media (max-width: 340px) {
  .nymphaea-home-experience .nym-home-rail__viewport {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 8px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex-basis: calc((100vw - 36px) / 2) !important;
    width: calc((100vw - 36px) / 2) !important;
    max-width: calc((100vw - 36px) / 2) !important;
  }
}

@media (orientation: landscape) and (max-width: 959px) and (max-height: 540px) {
  .nymphaea-home-experience .home-slideshow,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items {
    height: min(82vh, 520px) !important;
    min-height: 360px !important;
  }
}

/* A softer but clearly visible collection-entry motion. */
.nym-reveal-enabled .nymphaea-home-experience [data-nym-reveal],
.nym-reveal-enabled .nymphaea-home-experience [data-nym-card] {
  transition-duration: .66s, .72s, .76s;
  transition-timing-function: cubic-bezier(.18, .72, .24, 1);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="left"] {
  transform: translate3d(-28px, 0, 0) rotate(-.35deg);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="right"] {
  transform: translate3d(28px, 0, 0) rotate(.35deg);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="scale"] {
  transform: scale(.93);
  clip-path: inset(0 0 10% 0 round 18px);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-card="rise"] {
  transform: translate3d(0, 30px, 0);
}

.nym-reveal-enabled .nymphaea-home-experience [data-nym-card].is-revealed {
  transform: none;
}

/* ========================================================================
   Nymphaea 1.2.3 — premium fashion rhythm and reliable hero fitting
   ======================================================================== */
.nymphaea-home-experience .nym-home-hero,
.nymphaea-home-experience .nym-home-hero .uk-slideshow-items,
.nymphaea-home-experience .nym-home-hero__slide {
  position: relative;
  overflow: hidden;
}

.nymphaea-home-experience .nym-home-hero__media,
.nymphaea-home-experience .nym-home-hero__picture,
.nymphaea-home-experience .nym-home-hero__image,
.nymphaea-home-experience .nym-home-hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.nymphaea-home-experience .nym-home-hero__image,
.nymphaea-home-experience .nym-home-hero__video {
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
}

.nymphaea-home-experience .nym-home-hero__content {
  z-index: 4;
  width: min(90%, 760px);
}

.nymphaea-home-experience .nym-home-hero__media--kenburns .nym-home-hero__image {
  animation: nym-hero-kenburns 10s ease-out both;
  transform-origin: 50% 45%;
}

@keyframes nym-hero-kenburns {
  from { transform: scale(1.015); }
  to { transform: scale(1.085); }
}

.nymphaea-home-experience .nym-home-section,
.nymphaea-home-experience .nym-home-categories {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border: 0;
}

.nymphaea-home-experience .nym-home-section::before,
.nymphaea-home-experience .nym-home-categories::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: clamp(18px, 7vw, 110px);
  left: clamp(18px, 7vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(68, 51, 42, .13), transparent);
  content: "";
}

.nymphaea-home-experience .nym-home-section::after,
.nymphaea-home-experience .nym-home-categories::after {
  position: absolute;
  z-index: -1;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 164, 149, .11), transparent 67%);
  content: "";
  pointer-events: none;
  inset-inline-end: -18vw;
  top: -22%;
}

.nymphaea-home-experience .nym-home-section[data-nym-tone="ivory"] {
  background: linear-gradient(180deg, #fff 0%, #fcfaf7 100%);
}

.nymphaea-home-experience .nym-home-section[data-nym-tone="blush"] {
  background: linear-gradient(145deg, #fbf6f4 0%, #f7f0eb 100%);
}

.nymphaea-home-experience .nym-home-section[data-nym-tone="sand"] {
  background: linear-gradient(145deg, #f8f4ee 0%, #fff 100%);
}

.nymphaea-home-experience .nym-home-categories {
  background: linear-gradient(150deg, #f8f1eb 0%, #fbf8f4 62%, #f4ebe5 100%);
}

.nymphaea-home-experience .nym-home-heading,
.nymphaea-home-experience .nym-home-heading__copy,
.nymphaea-home-experience .nym-home-heading h2 {
  overflow: visible;
}

.nymphaea-home-experience .nym-home-heading__copy {
  position: relative;
  padding-inline-start: 14px;
}

.nymphaea-home-experience .nym-home-heading__copy::before {
  position: absolute;
  top: .2em;
  bottom: .25em;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c99b8e, #7c6257);
  content: "";
}

.nymphaea-home-experience .nym-home-heading h2 {
  margin: 0;
  padding: .06em 0 .18em;
  color: #1a1613;
  line-height: 1.42 !important;
  text-wrap: balance;
}

.nymphaea-home-experience .nym-home-categories .nym-home-heading h2 {
  padding-bottom: .24em;
  line-height: 1.52 !important;
}

.nymphaea-home-experience .nym-home-heading p {
  margin-top: 3px;
  line-height: 1.65;
}

.nymphaea-home-experience .nym-home-view-all {
  flex: 0 0 auto;
  border-color: rgba(36, 28, 23, .12);
  color: #28211c;
  background: rgba(255,255,255,.7);
  box-shadow: 0 6px 18px rgba(44, 33, 27, .045);
}

.nymphaea-home-experience .nym-home-view-all:hover,
.nymphaea-home-experience .nym-home-view-all:focus-visible {
  border-color: #28211c;
  color: #fff;
  background: #28211c;
}

/* Only the header link and terminal tile remain; the third repeated CTA is removed. */
.nymphaea-home-experience .nym-home-rail__mobile-view-all { display: none !important; }

.nymphaea-home-experience .nym-home-rail .product-block {
  border-color: rgba(45, 34, 28, .075);
  box-shadow: 0 12px 30px rgba(49, 37, 30, .055);
}

.nymphaea-home-experience .nym-home-rail .product-thumbnail { background: #eee8e3; }

.nymphaea-home-experience .nym-home-view-all-tile > a {
  border-color: rgba(45, 34, 28, .09);
  background: linear-gradient(155deg, rgba(255,255,255,.95), rgba(244,235,228,.92));
}

@media (max-width: 767px) {
  .nymphaea-home-experience .home-slideshow,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items {
    height: clamp(520px, calc(100svh - 93px), 780px) !important;
    min-height: clamp(520px, calc(100svh - 93px), 780px) !important;
  }

  .nymphaea-home-experience .nym-home-hero__image,
  .nymphaea-home-experience .nym-home-hero__video {
    object-position: 50% 50%;
  }

  .nymphaea-home-experience .nym-home-hero__content {
    width: calc(100% - 38px);
    max-width: 520px;
  }

  .nymphaea-home-experience .nym-home-section,
  .nymphaea-home-experience .nym-home-categories {
    padding: 38px 0 42px;
  }

  .nymphaea-home-experience .nym-home-heading,
  .nymphaea-home-experience .nym-home-heading--compact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 17px;
    padding-right: 16px;
    padding-left: 16px;
    text-align: start;
  }

  .nymphaea-home-experience .nym-home-heading__copy {
    min-width: 0;
    flex: 1;
    padding-inline-start: 11px;
  }

  .nymphaea-home-experience .nym-home-heading__copy::before {
    top: .25em;
    bottom: .35em;
    width: 2px;
  }

  .nymphaea-home-experience .nym-home-heading h2 {
    padding-bottom: .2em;
    font-size: clamp(21px, 6vw, 27px);
    line-height: 1.48 !important;
  }

  .nymphaea-home-experience .nym-home-categories .nym-home-heading h2 {
    padding-bottom: .28em;
    line-height: 1.58 !important;
  }

  .nymphaea-home-experience .nym-home-heading p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #8a7e76;
    font-size: 10px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .nymphaea-home-experience .nym-home-view-all {
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    white-space: nowrap;
  }

  .nymphaea-home-experience .nym-home-view-all i { font-size: 15px; }

  .nymphaea-home-experience .nym-home-categories__rail {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nymphaea-home-experience .nym-home-rail,
  .nymphaea-home-experience .nym-home-rail__viewport,
  .nymphaea-home-experience .nym-home-rail .woocommerce,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    max-width: 100%;
  }

  .nymphaea-home-experience .nym-home-rail__viewport {
    width: 100%;
    margin: 0;
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 10px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex: 0 0 clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
    width: clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
    max-width: clamp(139px, calc((100vw - 42px) / 2), 196px) !important;
  }

  .nymphaea-home-experience .nym-home-rail .product-thumbnail { aspect-ratio: 4 / 5; }

  .nymphaea-home-experience .nym-home-rail .product-body { padding: 11px 10px; }

  .nymphaea-home-experience .nym-home-rail .woocommerce-loop-product__title {
    min-height: 36px;
    font-size: 12px !important;
    line-height: 1.5;
  }

  .nymphaea-home-experience .nym-home-rail .price {
    margin-top: 5px !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  .nymphaea-home-experience .nym-home-rail .button {
    min-height: 35px;
    padding: 7px 6px 8px !important;
    font-size: 10.5px !important;
  }

  .nymphaea-home-experience .nym-home-view-all-tile > a {
    min-height: 100%;
    padding: 20px 12px;
  }

  .nymphaea-home-experience .nym-home-view-all-tile__circle {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 340px) {
  .nymphaea-home-experience .nym-home-rail__viewport {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products { gap: 8px; }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex-basis: calc((100vw - 36px) / 2) !important;
    width: calc((100vw - 36px) / 2) !important;
    max-width: calc((100vw - 36px) / 2) !important;
  }
}

@media (orientation: landscape) and (max-width: 959px) and (max-height: 540px) {
  .nymphaea-home-experience .home-slideshow,
  .nymphaea-home-experience .home-slideshow .uk-slideshow-items {
    height: min(82vh, 520px) !important;
    min-height: 360px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nymphaea-home-experience .nym-home-hero__media--kenburns .nym-home-hero__image {
    animation: none !important;
  }
}
/* Win over older theme slider selectors that used center-top positioning. */
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li .nym-home-hero__image,
.nymphaea-home-experience .home-slideshow .uk-slideshow-items > li .nym-home-hero__video {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
}


/* ========================================================================
   Nymphaea 1.2.4 — discoverable fashion rails and consistent motion
   ======================================================================== */
.nymphaea-home-experience .nym-home-rail {
  --nym-rail-edge: 38px;
  position: relative;
}

.nymphaea-home-experience .nym-home-rail__cue {
  display: none;
}

@media (max-width: 767px) {
  .nymphaea-home-experience .nym-home-rail__viewport {
    position: relative;
    margin-inline: calc(50% - 50vw);
    padding-inline: 16px 34px;
    scroll-padding-inline: 16px;
    overscroll-behavior-inline: contain;
  }

  .rtl.nymphaea-home-experience .nym-home-rail__viewport,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail__viewport {
    padding-inline: 16px 34px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 11px !important;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products > li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex: 0 0 clamp(142px, 42.5vw, 184px) !important;
    width: clamp(142px, 42.5vw, 184px) !important;
    max-width: none !important;
    scroll-snap-align: start;
  }

  .nymphaea-home-experience .nym-home-rail .product-thumbnail,
  .nymphaea-home-experience .nym-home-view-all-tile > a {
    aspect-ratio: 3 / 4 !important;
  }

  .nymphaea-home-experience .nym-home-rail .product-thumbnail img {
    object-fit: cover !important;
    object-position: center top !important;
  }

  .nymphaea-home-experience .nym-home-rail.has-overflow:not(.is-interacted)::after {
    position: absolute;
    top: 0;
    bottom: 36px;
    inset-inline-end: -1px;
    z-index: 4;
    width: 32px;
    pointer-events: none;
    background: linear-gradient(to var(--nym-inline-fade, left), rgba(250,247,243,0), rgba(250,247,243,.8));
    content: "";
  }

  .rtl.nymphaea-home-experience .nym-home-rail,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail {
    --nym-inline-fade: right;
  }

  .nymphaea-home-experience .nym-home-rail.has-overflow .nym-home-rail__cue {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 5px;
    margin: 10px auto 0;
    padding: 5px 10px;
    border: 1px solid rgba(31,26,22,.08);
    border-radius: 999px;
    color: rgba(31,26,22,.6);
    background: rgba(255,255,255,.66);
    font-size: 10px;
    font-weight: 600;
    opacity: 1;
    transition: opacity .25s ease, transform .25s ease;
    animation: nymRailCue 1.8s ease-in-out 1.1s 2;
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__cue,
  .nymphaea-home-experience .nym-home-rail.is-at-end .nym-home-rail__cue {
    opacity: 0;
    transform: translateY(-3px);
    pointer-events: none;
  }

  @keyframes nymRailCue {
    0%,100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
  }

  .rtl.nymphaea-home-experience .nym-home-rail__cue,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail__cue {
    animation-name: nymRailCueRtl;
  }

  @keyframes nymRailCueRtl {
    0%,100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
  }

  .nymphaea-home-experience .nym-home-view-all-tile__circle i {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nymphaea-home-experience .nym-home-rail__cue { animation: none !important; }
}

/* ========================================================================
   Nymphaea 1.2.6 — unmistakable mobile rail affordance
   ======================================================================== */
.nymphaea-home-experience .nym-direction-arrow {
  display: block;
  width: 25px;
  height: 25px;
  transform: none !important;
}

.nymphaea-home-experience .nym-home-view-all-tile__circle .nym-direction-arrow {
  width: 26px;
  height: 26px;
}

@media (max-width: 767px) {
  .nymphaea-home-experience .nym-home-rail {
    --nym-mobile-card: clamp(142px, calc((100vw - 80px) / 2), 184px);
    padding-top: 0;
  }

  .nymphaea-home-experience .nym-home-rail__cue {
    display: none !important;
  }

  .nymphaea-home-experience .nym-home-rail.has-overflow .nym-home-rail__cue {
    position: relative;
    display: grid !important;
    width: calc(100% - 32px);
    min-height: 50px;
    grid-template-columns: 38px minmax(0, 1fr) 54px;
    gap: 9px;
    align-items: center;
    margin: 0 16px 13px;
    padding: 7px 9px 7px 8px;
    overflow: hidden;
    border: 1px solid rgba(46, 35, 29, .11);
    border-radius: 16px;
    color: #241d19;
    background:
      linear-gradient(110deg, rgba(255,255,255,.96), rgba(246,237,231,.92)),
      #fff;
    box-shadow: 0 8px 24px rgba(47, 36, 29, .06);
    font: inherit;
    text-align: start;
    cursor: pointer;
    opacity: 1 !important;
    transform: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    animation: none !important;
  }

  .nymphaea-home-experience .nym-home-rail__cue:hover,
  .nymphaea-home-experience .nym-home-rail__cue:focus-visible {
    border-color: rgba(36, 29, 25, .28);
    outline: 0;
    box-shadow: 0 10px 28px rgba(47, 36, 29, .1);
    transform: translateY(-1px) !important;
  }

  .nymphaea-home-experience .nym-home-rail__cue-icon {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #211b17;
    box-shadow: 0 6px 16px rgba(33, 27, 23, .17);
  }

  .nymphaea-home-experience .nym-home-rail__cue-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: nymRailHand 1.7s cubic-bezier(.4, 0, .2, 1) .45s 3;
  }

  .nymphaea-home-experience .nym-home-rail__cue-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
  }

  .nymphaea-home-experience .nym-home-rail__cue-copy strong {
    overflow: hidden;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nymphaea-home-experience .nym-home-rail__cue-copy small {
    color: #8c7e75;
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1.35;
  }

  .nymphaea-home-experience .nym-home-rail__cue-progress {
    position: relative;
    display: block;
    width: 50px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(36, 29, 25, .12);
  }

  .nymphaea-home-experience .nym-home-rail__cue-progress > span {
    display: block;
    width: calc(var(--nym-rail-progress, .16) * 100%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #c99a8c, #2a211c);
    transition: width .2s ease;
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__cue {
    min-height: 42px;
    grid-template-columns: 32px minmax(0,1fr) 70px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 5px 16px rgba(47,36,29,.035);
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__cue-icon {
    width: 32px;
    height: 32px;
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__cue-icon svg {
    width: 18px;
    height: 18px;
    animation: none;
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__cue-copy small {
    display: none;
  }

  .nymphaea-home-experience .nym-home-rail__viewport {
    padding-inline: 16px 24px !important;
    scroll-padding-inline: 16px;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products {
    gap: 11px !important;
  }

  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products > li.product,
  .nymphaea-home-experience .nym-home-rail .woocommerce ul.products li.nym-home-view-all-tile {
    flex: 0 0 var(--nym-mobile-card) !important;
    width: var(--nym-mobile-card) !important;
    max-width: var(--nym-mobile-card) !important;
  }

  .nymphaea-home-experience .nym-home-rail__arrow {
    width: 44px;
    height: 44px;
    border-color: rgba(37,29,24,.12);
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 28px rgba(37,29,24,.18);
  }

  .nymphaea-home-experience .nym-home-rail__arrow--next {
    top: 58%;
    right: auto !important;
    left: auto !important;
    inset-inline-end: 7px;
    display: grid !important;
    place-items: center;
  }

  .nymphaea-home-experience .nym-home-rail__arrow--prev {
    top: 58%;
    right: auto !important;
    left: auto !important;
    inset-inline-start: 7px;
    display: none !important;
    place-items: center;
  }

  .nymphaea-home-experience .nym-home-rail.is-interacted .nym-home-rail__arrow--prev:not([disabled]) {
    display: grid !important;
  }

  .nymphaea-home-experience .nym-home-rail__arrow[disabled] {
    display: none !important;
  }

  .nymphaea-home-experience .nym-home-rail.has-overflow:not(.is-interacted) .nym-home-rail__arrow--next:not([disabled]) {
    animation: nymRailNextPulse 1.8s ease-in-out .65s 3;
  }

  .nymphaea-home-experience .nym-home-rail.has-overflow:not(.is-interacted)::after {
    bottom: 0;
    width: 46px;
  }

  @keyframes nymRailHand {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
  }

  .rtl.nymphaea-home-experience .nym-home-rail__cue-icon svg,
  [dir="rtl"] .nymphaea-home-experience .nym-home-rail__cue-icon svg {
    animation-name: nymRailHandRtl;
  }

  @keyframes nymRailHandRtl {
    0%, 100% { transform: translateX(0); }
    45% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
  }

  @keyframes nymRailNextPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.09); }
  }
}

@media (max-width: 340px) {
  .nymphaea-home-experience .nym-home-rail {
    --nym-mobile-card: 142px;
  }

  .nymphaea-home-experience .nym-home-rail__cue {
    grid-template-columns: 34px minmax(0,1fr) 44px;
    margin-inline: 12px;
    width: calc(100% - 24px);
  }

  .nymphaea-home-experience .nym-home-rail__cue-copy strong {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nymphaea-home-experience .nym-home-rail__cue-icon svg,
  .nymphaea-home-experience .nym-home-rail__arrow {
    animation: none !important;
  }
}

@media (max-width: 767px) {
  .nym-rail-educated .nymphaea-home-experience .nym-home-rail__cue {
    min-height: 42px;
    grid-template-columns: 32px minmax(0,1fr) 70px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 5px 16px rgba(47,36,29,.035);
  }

  .nym-rail-educated .nymphaea-home-experience .nym-home-rail__cue-icon {
    width: 32px;
    height: 32px;
  }

  .nym-rail-educated .nymphaea-home-experience .nym-home-rail__cue-icon svg {
    width: 18px;
    height: 18px;
    animation: none;
  }

  .nym-rail-educated .nymphaea-home-experience .nym-home-rail__cue-copy small {
    display: none;
  }
}

/* ========================================================================
   Nymphaea 1.2.8 — slider scope correction and desktop media fallback
   The slider is rendered before .nymphaea-home-experience, so these selectors
   intentionally target the hero directly instead of relying on that wrapper.
   ======================================================================== */
.home-slideshow.nym-home-hero,
.home-slideshow.nym-home-hero .uk-slideshow-items,
.home-slideshow.nym-home-hero .nym-home-hero__slide {
  position: relative;
  overflow: hidden;
}

.home-slideshow.nym-home-hero {
  width: 100%;
  background: linear-gradient(135deg, #eee8e3, #f7f2ee);
}

.home-slideshow.nym-home-hero .nym-home-hero__media,
.home-slideshow.nym-home-hero .nym-home-hero__picture,
.home-slideshow.nym-home-hero .nym-home-hero__image,
.home-slideshow.nym-home-hero .nym-home-hero__video,
.home-slideshow.nym-home-hero .nym-home-hero__fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-slideshow.nym-home-hero .nym-home-hero__image,
.home-slideshow.nym-home-hero .nym-home-hero__video {
  max-width: none !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
}

.home-slideshow.nym-home-hero .nym-home-hero__fallback {
  background:
    radial-gradient(circle at 76% 22%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(135deg, #e8ded7, #f8f3ef 54%, #eadfd8);
}

.home-slideshow.nym-home-hero .nym-home-hero__content {
  z-index: 4;
  width: min(90%, 760px);
}

.home-slideshow.nym-home-hero .nym-home-hero__media--kenburns .nym-home-hero__image {
  animation: nym-hero-kenburns 10s ease-out both;
  transform-origin: 50% 45%;
}

.home-slideshow.nym-home-hero .uk-slideshow-items > li.uk-active .nym-home-hero__image,
.home-slideshow.nym-home-hero .uk-slideshow-items > li.uk-active .nym-home-hero__video {
  opacity: 1;
}

@media (min-width: 768px) {
  .home-slideshow.nym-home-hero .uk-slideshow-items {
    min-height: 340px;
  }

  .home-slideshow.nym-home-hero .nym-home-hero__image,
  .home-slideshow.nym-home-hero .nym-home-hero__video {
    object-position: center center !important;
  }

  .home-slideshow.nym-home-hero .slideshow-title {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .home-slideshow.nym-home-hero,
  .home-slideshow.nym-home-hero .uk-slideshow-items {
    height: clamp(520px, calc(100svh - 96px), 780px) !important;
    min-height: clamp(520px, calc(100svh - 96px), 780px) !important;
  }

  .home-slideshow.nym-home-hero .nym-home-hero__image,
  .home-slideshow.nym-home-hero .nym-home-hero__video {
    object-position: 50% 50% !important;
  }

  .home-slideshow.nym-home-hero .nym-home-hero__content {
    width: calc(100% - 38px);
    max-width: 520px;
  }

  .home-slideshow.nym-home-hero .slideshow-title {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.08;
  }

  .home-slideshow.nym-home-hero .slideshow-desc {
    max-width: min(86vw, 420px);
    font-size: 14px !important;
    line-height: 1.65;
  }
}

@media (orientation: landscape) and (max-width: 959px) and (max-height: 540px) {
  .home-slideshow.nym-home-hero,
  .home-slideshow.nym-home-hero .uk-slideshow-items {
    height: min(82vh, 520px) !important;
    min-height: 360px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-slideshow.nym-home-hero .nym-home-hero__media--kenburns .nym-home-hero__image {
    animation: none !important;
  }
}

/* ========================================================================
   Nymphaea 1.2.8 — independent desktop hero
   The mobile UIkit slider remains untouched. Desktop progressively enhances
   its own first-slide-visible carousel so a JS/UIkit failure cannot create a
   blank first viewport.
   ======================================================================== */
.nym-desktop-hero {
  display: none;
}

@media (min-width: 768px) {
  .home-slideshow.nym-home-hero--mobile {
    display: none !important;
  }

  .nym-desktop-hero {
    --nym-hero-accent: #fff;
    position: relative;
    display: block;
    width: 100%;
    min-height: clamp(360px, 42.85vw, 720px);
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: linear-gradient(135deg, #e9dfd8 0%, #f8f3ef 52%, #e8ddd6 100%);
  }

  .nym-desktop-hero__viewport {
    position: relative;
    min-height: clamp(360px, 42.85vw, 720px);
    aspect-ratio: 21 / 9;
  }

  .nym-desktop-hero__slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: grid;
    min-width: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity .62s ease, transform 1.1s cubic-bezier(.2,.72,.2,1), visibility 0s linear .65s;
  }

  .nym-desktop-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition-delay: 0s;
  }

  .nym-desktop-hero__media,
  .nym-desktop-hero__picture,
  .nym-desktop-hero__image,
  .nym-desktop-hero__video,
  .nym-desktop-hero__fallback {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .nym-desktop-hero__image,
  .nym-desktop-hero__video {
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
  }

  .nym-desktop-hero__media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(20,15,12,.25), rgba(20,15,12,.035) 42%, rgba(20,15,12,.18));
  }

  html[dir="rtl"] .nym-desktop-hero__media::after {
    background: linear-gradient(270deg, rgba(20,15,12,.25), rgba(20,15,12,.035) 42%, rgba(20,15,12,.18));
  }

  .nym-desktop-hero:not(.has-overlay) .nym-desktop-hero__slide--center .nym-desktop-hero__media::after {
    background: linear-gradient(180deg, rgba(20,15,12,.05), rgba(20,15,12,.24));
  }

  .nym-desktop-hero__fallback {
    background:
      radial-gradient(circle at 78% 24%, rgba(255,255,255,.72), transparent 30%),
      linear-gradient(135deg, #e5d9d1, #f8f3ef 54%, #eaded6);
  }

  .nym-desktop-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1480px);
    height: 100%;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 84px) clamp(72px, 8vw, 144px);
    text-align: center;
  }

  .nym-desktop-hero__slide--right .nym-desktop-hero__content {
    justify-content: flex-end;
    text-align: right;
  }

  .nym-desktop-hero__slide--left .nym-desktop-hero__content {
    justify-content: flex-start;
    text-align: left;
  }

  .nym-desktop-hero__slide--bottom .nym-desktop-hero__content {
    align-items: flex-end;
    padding-bottom: clamp(54px, 7vw, 112px);
  }

  .nym-desktop-hero__copy {
    width: min(720px, 62vw);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease .22s, transform .68s cubic-bezier(.2,.72,.2,1) .22s;
  }

  .nym-desktop-hero__slide.is-active .nym-desktop-hero__copy {
    opacity: 1;
    transform: translateY(0);
  }

  .nym-desktop-hero__copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(38px, 4.2vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.025em;
    text-shadow: 0 3px 24px rgba(0,0,0,.22);
  }

  .nym-desktop-hero__description {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.94);
    font-size: clamp(15px, 1.25vw, 20px);
    line-height: 1.75;
    text-shadow: 0 2px 18px rgba(0,0,0,.25);
  }

  .nym-desktop-hero__slide--right .nym-desktop-hero__description,
  .nym-desktop-hero__slide--left .nym-desktop-hero__description {
    margin-inline: 0;
  }

  .nym-desktop-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }

  .nym-desktop-hero__slide--right .nym-desktop-hero__actions { justify-content: flex-end; }
  .nym-desktop-hero__slide--left .nym-desktop-hero__actions { justify-content: flex-start; }

  .nym-desktop-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }

  .nym-desktop-hero__button:hover,
  .nym-desktop-hero__button:focus-visible {
    outline: none;
    transform: translateY(-2px);
  }

  .nym-desktop-hero__button--primary {
    color: #fff !important;
    background: #111;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
  }

  .nym-desktop-hero__button--primary:hover,
  .nym-desktop-hero__button--primary:focus-visible { background: #28211d; }

  .nym-desktop-hero__button--secondary {
    border-color: rgba(255,255,255,.72);
    color: #fff !important;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
  }

  .nym-desktop-hero__button--secondary:hover,
  .nym-desktop-hero__button--secondary:focus-visible {
    color: #17120f !important;
    background: #fff;
  }

  .nym-desktop-hero__button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nym-desktop-hero__control {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 50%;
    color: #fff;
    background: rgba(20,15,12,.26);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    cursor: pointer;
    opacity: .72;
    transform: translateY(-50%);
    backdrop-filter: blur(9px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
  }

  .nym-desktop-hero:hover .nym-desktop-hero__control,
  .nym-desktop-hero:focus-within .nym-desktop-hero__control { opacity: 1; }

  .nym-desktop-hero__control:hover,
  .nym-desktop-hero__control:focus-visible {
    outline: none;
    background: rgba(20,15,12,.55);
    transform: translateY(-50%) scale(1.04);
  }

  .nym-desktop-hero__control:disabled {
    opacity: .28;
    cursor: default;
    transform: translateY(-50%);
  }

  .nym-desktop-hero__control--previous { left: clamp(18px, 2.4vw, 42px); }
  .nym-desktop-hero__control--next { right: clamp(18px, 2.4vw, 42px); }

  .nym-desktop-hero__control svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nym-desktop-hero__dots {
    position: absolute;
    z-index: 5;
    right: 50%;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(20,15,12,.22);
    transform: translateX(50%);
    backdrop-filter: blur(9px);
  }

  .nym-desktop-hero__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
  }

  .nym-desktop-hero__dot.is-active {
    width: 24px;
    background: #fff;
  }

  .nym-desktop-hero__media.has-kenburns .nym-desktop-hero__image {
    transform: scale(1.04);
    transition: transform 8s ease-out;
  }

  .nym-desktop-hero__slide.is-active .nym-desktop-hero__media.has-kenburns .nym-desktop-hero__image {
    transform: scale(1.1);
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .nym-desktop-hero__content {
    padding-inline: 76px;
  }

  .nym-desktop-hero__copy {
    width: min(620px, 70vw);
  }
}

@media (max-width: 767px) {
  .nym-desktop-hero {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nym-desktop-hero__slide,
  .nym-desktop-hero__copy,
  .nym-desktop-hero__media.has-kenburns .nym-desktop-hero__image,
  .nym-desktop-hero__button,
  .nym-desktop-hero__control,
  .nym-desktop-hero__dot {
    transition: none !important;
    animation: none !important;
  }
}
