/* Homepage builder — section wrappers & layout blocks */

.hp-sec-wrap {
    position: relative;
    isolation: isolate;
    width: 100%;
    background-repeat: no-repeat;
    background-image: var(--hp-sec-bg-image, none);
    color: var(--content-text);
    overflow: clip;
    --section-button-bg: var(--button-primary-background, var(--soc-light-primary-bg));
    --section-button-text: var(--button-primary-text, var(--soc-light-primary-text));
    --section-button-hover-bg: var(--soc-light-hover);
    --section-button-hover-text: var(--soc-light-primary-text);
    --section-control-bg: var(--content-secondary-bg, var(--soc-page-bg));
    --section-control-text: var(--content-secondary-text, var(--soc-accent));
    --section-control-hover-bg: var(--section-button-bg);
    --section-control-hover-text: var(--section-button-text);
    --section-focus-color: var(--soc-light-focus);
    --section-disabled-bg: var(--soc-light-disabled-bg);
}

.hp-sec-wrap > *:not(.hp-sec-bg-video) {
    position: relative;
    z-index: 2;
}

.hp-sec-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hp-sec-wrap--overlay-dark::before,
.hp-sec-wrap--overlay-light::before,
.hp-sec-wrap--overlay-custom::before {
    background: rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35));
}

.hp-sec-wrap--overlay-gradient_start::before {
    background: linear-gradient(to right, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%);
}

.hp-sec-wrap--overlay-gradient_end::before {
    background: linear-gradient(to left, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%);
}

[dir="rtl"] .hp-sec-wrap--overlay-gradient_start::before { background: linear-gradient(to left, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%); }
[dir="rtl"] .hp-sec-wrap--overlay-gradient_end::before { background: linear-gradient(to right, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%); }

.hp-sec-wrap--overlay-gradient_top::before {
    background: linear-gradient(to bottom, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%);
}

.hp-sec-wrap--overlay-gradient_bottom::before {
    background: linear-gradient(to top, rgba(var(--hp-sec-overlay-rgb, 0,0,0), var(--hp-sec-overlay-strength, .35)), transparent 72%);
}

.hp-sec-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hp-sec-wrap--height-short { min-height: 320px; }
.hp-sec-wrap--height-medium { min-height: 520px; }
.hp-sec-wrap--height-tall { min-height: 720px; }
.hp-sec-wrap--height-screen { min-height: min(100svh, 960px); }

.hp-sec-wrap--height-short,
.hp-sec-wrap--height-medium,
.hp-sec-wrap--height-tall,
.hp-sec-wrap--height-screen {
    display: flex;
    flex-direction: column;
}

.hp-sec-wrap--valign-start > *:first-child { margin-block-end: auto; }
.hp-sec-wrap--valign-center > *:first-child { margin-block: auto; }
.hp-sec-wrap--valign-end > *:first-child { margin-block-start: auto; }

.hp-sec-wrap--text-narrow > *:first-child :is(.section-copy, .section-content, .hp-copy, .pb-text) { max-width: 42rem; }
.hp-sec-wrap--text-wide > *:first-child :is(.section-copy, .section-content, .hp-copy, .pb-text) { max-width: 72rem; }

.hp-sec-wrap--button-secondary {
    --button-primary-background: var(--content-secondary-bg);
    --button-primary-text: var(--content-secondary-text);
    --section-button-hover-bg: var(--soc-light-hover);
    --section-button-hover-text: var(--soc-light-primary-text);
}

.hp-sec-wrap--button-contrast {
    --button-primary-background: var(--content-heading);
    --button-primary-text: var(--soc-page-bg);
}

.hp-sec-wrap--content-light_text.hp-sec-wrap--button-contrast,
.store-theme--dark.hp-sec-wrap--button-contrast {
    --button-primary-background: var(--soc-page-bg);
    --button-primary-text: var(--soc-accent);
    --section-button-hover-bg: var(--soc-dark-hover);
    --section-button-hover-text: var(--soc-dark-primary-text);
}

.hp-sec-wrap--button-text {
    --button-primary-background: transparent;
    --button-primary-text: var(--content-link);
    --section-button-hover-bg: transparent;
    --section-button-hover-text: var(--content-heading);
}

.hp-sec-wrap--content-light_text,
.store-theme--dark.hp-sec-wrap {
    --section-focus-color: var(--soc-dark-focus);
    --section-disabled-bg: var(--soc-dark-disabled-bg);
}

.hp-sec-wrap--full > *:first-child {
    max-width: none;
}

.hp-sec-wrap--wide > *:first-child .container {
    max-width: min(1440px, 96vw);
}

.hp-sec-wrap--align-center > *:first-child {
    text-align: center;
}

.hp-sec-wrap--align-end > *:first-child {
    text-align: end;
}

@media (max-width: 767px) {
    .hp-sec-wrap { background-image: var(--hp-sec-bg-image-mobile, var(--hp-sec-bg-image, none)); }
    .hp-sec-wrap--mobile-height-auto { min-height: 0; }
    .hp-sec-wrap--mobile-height-short { min-height: 260px; }
    .hp-sec-wrap--mobile-height-medium { min-height: 420px; }
    .hp-sec-wrap--mobile-height-tall { min-height: 620px; }
    .hp-sec-wrap--mobile-height-screen { min-height: 100svh; }
}

.hp-spacer {
    display: block;
    width: 100%;
    pointer-events: none;
}

.hp-divider {
    border: 0;
    border-top: 1px solid var(--soc-light-border);
    margin: 0;
    opacity: 1;
}

.hp-divider--wide {
    max-width: none;
}

.hp-promo {
    padding: 2.5rem 0;
}

.hp-promo--has-image {
    position: relative;
    overflow: hidden;
}

.hp-promo__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hp-promo__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hp-promo__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
}

.hp-promo--has-image .hp-promo__inner {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hp-promo__inner {
    max-width: 720px;
    margin-inline: auto;
    padding: 1rem 0;
}

.hp-promo__kicker {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    opacity: .85;
}

.hp-promo__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin: 0 0 .75rem;
}

.hp-promo__text {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: .92;
}

.hp-promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.35rem;
    border-radius: 999px;
    background: var(--section-button-bg);
    color: var(--section-button-text);
    text-decoration: none;
    font-weight: 600;
    font-size: .875rem;
    transition: transform .15s, background-color .2s, color .2s;
}

.hp-promo--has-image .hp-promo__btn {
    background: var(--section-button-bg);
    color: var(--section-button-text);
}

.hp-promo__btn:hover {
    transform: translateY(-1px);
    background: var(--section-button-hover-bg);
    color: var(--section-button-hover-text);
}

/* Row / columns layout */
.hp-row {
    width: 100%;
}

.hp-row__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.hp-row--gap-sm .hp-row__grid { gap: .75rem; }
.hp-row--gap-md .hp-row__grid { gap: 1.25rem; }
.hp-row--gap-lg .hp-row__grid { gap: 2rem; }

.hp-row-column {
    flex: 1 1 calc(var(--hp-col-width, 50%) - 1rem);
    max-width: calc(var(--hp-col-width, 50%) - 0.01px);
    min-width: 0;
}

.hp-row-column__blocks {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    min-height: 0;
}

.hp-store-nested-block {
    width: 100%;
    min-width: 0;
}

@media (max-width: 767px) {
    .hp-row-column {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* SOCOTRY hero slider controls — visible, RTL-safe, responsive */
.home-hero__stage { position: relative; }
.home-hero__toolbar {
  position: absolute;
  inset-inline: 0;
  bottom: 24px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.home-hero__counter,
.home-hero__nav-group { pointer-events: auto; }
.home-hero__nav-group { display: flex; gap: 10px; }
.home-hero__nav {
  width: 46px;
  height: 46px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(20,14,11,.52);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.home-hero__nav:hover {
  background: rgba(20,14,11,.82);
  border-color: #fff;
  transform: translateY(-2px);
}
.home-hero__nav svg { width: 21px; height: 21px; }
.home-hero__dots.swiper-pagination {
  position: absolute !important;
  inset-inline-start: auto !important;
  inset-inline-end: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: 36px !important;
  width: auto !important;
  z-index: 9;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
[dir="rtl"] .home-hero__dots.swiper-pagination { transform: translateX(-50%); }
.home-hero__dots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.45);
  opacity: 1;
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.home-hero__dots .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}
@media (max-width: 767px) {
  .home-hero__toolbar { bottom: 18px; padding-inline: 14px; }
  .home-hero__counter { display: none; }
  .home-hero__nav { width: 40px; height: 40px; }
  .home-hero__dots.swiper-pagination { bottom: 27px !important; }
}


/* Balanced presentation when a dynamic product section has only one item */
.sh-products-grid__row:has(> .store-product-card:only-child) {
  display: flex;
  justify-content: center;
}
.sh-products-grid__row:has(> .store-product-card:only-child) > .store-product-card {
  width: min(320px, 100%);
}
.nx-home-products__slider:has(.swiper-slide:only-child) .swiper-wrapper {
  justify-content: center;
}
.nx-home-products__slider:has(.swiper-slide:only-child) .swiper-slide {
  margin-inline: 0 !important;
}
@media (max-width: 767px) {
  .sh-products-grid__row:has(> .store-product-card:only-child) {
    justify-content: stretch;
  }
  .sh-products-grid__row:has(> .store-product-card:only-child) > .store-product-card {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }
}


/* Scent finder: one premium, focused experience instead of duplicated CTA cards. */
.store-section--ctas { padding-block: clamp(56px, 7vw, 96px); }
.store-section--ctas .nx-home-cta-row { display: block; }
.store-scent-quiz {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  min-height: clamp(390px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 24%,transparent);
  border-radius: 24px;
  color: var(--soc-light-text);
  background: var(--section-background-secondary);
  box-shadow: 0 26px 70px rgba(54, 38, 24, .10);
  text-decoration: none;
}
.store-scent-quiz::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 18%,transparent);
  border-radius: 17px;
  pointer-events: none;
}
.store-scent-quiz__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 6vw, 84px);
}
.store-scent-quiz__eyebrow {
  margin-bottom: 18px;
  color: var(--soc-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.store-scent-quiz h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--soc-light-text);
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.12;
}
.store-scent-quiz p {
  max-width: 48ch;
  margin: 20px 0 28px;
  color: var(--soc-light-muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.9;
}
.store-scent-quiz__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--section-button-text);
  background: var(--section-button-bg);
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.store-scent-quiz__action svg { width: 20px; height: 20px; }
.store-scent-quiz:hover .store-scent-quiz__action {
  transform: translateX(-4px);
  background: var(--section-button-hover-bg);
  color: var(--section-button-hover-text);
}
.store-scent-quiz:focus-visible .store-scent-quiz__action {
  outline: 2px solid var(--section-focus-color);
  outline-offset: 3px;
}
.store-scent-quiz__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  color: var(--soc-gold);
  background: var(--section-background-dark);
}
.store-scent-quiz__visual::before,
.store-scent-quiz__visual::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 24%,transparent);
  border-radius: 50%;
}
.store-scent-quiz__visual::before { width: 290px; height: 290px; }
.store-scent-quiz__visual::after { width: 210px; height: 210px; }
.store-scent-quiz__mark { width: min(44%, 168px); color: var(--soc-gold); filter: drop-shadow(0 12px 28px rgba(0,0,0,.28)); }
.store-scent-quiz__orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 45%,transparent);
  border-radius: 50%;
  color: var(--soc-gold);
  background: var(--soc-light-text);
  font-size: .7rem;
  letter-spacing: .08em;
}
.store-scent-quiz__orbit--one { top: 17%; right: 17%; }
.store-scent-quiz__orbit--two { top: 48%; left: 10%; }
.store-scent-quiz__orbit--three { bottom: 14%; right: 23%; }
@media (max-width: 767px) {
  .store-section--ctas { padding-block: 52px; }
  .store-scent-quiz { grid-template-columns: 1fr; min-height: 0; border-radius: 18px; }
  .store-scent-quiz::before { inset: 10px; border-radius: 12px; }
  .store-scent-quiz__content { padding: 42px 28px 36px; }
  .store-scent-quiz h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .store-scent-quiz__visual { min-height: 260px; }
  .store-scent-quiz__visual::before { width: 220px; height: 220px; }
  .store-scent-quiz__visual::after { width: 160px; height: 160px; }
  .store-scent-quiz__mark { width: 120px; }
}


/* Readability pass: dark media backgrounds must keep marketing copy legible */
.home-hero__shade {
  background: linear-gradient(90deg, rgba(10,7,5,.12) 0%, rgba(10,7,5,.28) 46%, rgba(10,7,5,.78) 100%) !important;
}
.home-hero__copy,
.home-hero__copy .home-hero__eyebrow,
.home-hero__copy .home-hero__title,
.home-hero__copy .home-hero__cta {
  color: #fff !important;
}
.home-hero__copy .home-hero__eyebrow {
  opacity: .92 !important;
}
.home-hero__copy .home-hero__title {
  text-shadow: 0 2px 24px rgba(0,0,0,.34);
}
.home-hero__copy .home-hero__cta {
  border-color: rgba(255,255,255,.72) !important;
}
.store-section--ctas .store-amo-cta--dark h2 {
  color: #fff !important;
}
.store-section--ctas .store-amo-cta--dark .store-amo-cta__kicker {
  color: var(--soc-gold) !important;
  opacity: 1 !important;
}
.store-section--ctas .store-amo-cta--dark p {
  color: rgba(255,255,255,.86) !important;
}


/* Hero copy composition */
.home-hero__slide {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}
.home-hero__copy-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: clamp(72px, 10vw, 132px);
  pointer-events: none;
}
.home-hero__copy {
  width: min(610px, 52vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: start;
  pointer-events: auto;
}
.home-hero__copy .home-hero__eyebrow {
  display: block;
  max-width: 48ch;
  font-size: clamp(.88rem, 1.15vw, 1.05rem);
  line-height: 1.8;
  letter-spacing: .01em;
}
.home-hero__copy .home-hero__title {
  width: auto;
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 5.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.home-hero__copy .home-hero__cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 4px 7px;
  border-bottom: 1px solid rgba(255,255,255,.76);
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .home-hero__copy-wrap {
    align-items: flex-end;
    padding: 42px 22px 92px;
  }
  .home-hero__copy {
    width: 100%;
    gap: 12px;
  }
  .home-hero__copy .home-hero__eyebrow {
    max-width: 34ch;
    font-size: .82rem;
    line-height: 1.65;
  }
  .home-hero__copy .home-hero__title {
    max-width: 12ch;
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }
}

/* Compatibility for already-compiled Blade markup on production. */
.store-section--ctas .nx-home-cta-row > .store-amo-cta:not(.store-amo-cta--dark) {
  display: none !important;
}
.store-section--ctas .nx-home-cta-row > .store-amo-cta--dark {
  position: relative;
  isolation: isolate;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100% !important;
  min-height: clamp(390px, 38vw, 520px) !important;
  margin: 0 !important;
  padding: clamp(42px, 6vw, 84px) !important;
  overflow: hidden;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 24%,transparent);
  border-radius: 24px !important;
  color: var(--soc-light-text) !important;
  background: var(--section-background-secondary);
  box-shadow: 0 26px 70px rgba(54, 38, 24, .10);
}
.store-section--ctas .nx-home-cta-row > .store-amo-cta--dark::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  z-index: -1;
  width: 35%;
  background: var(--section-background-dark);
}
.store-section--ctas .nx-home-cta-row > .store-amo-cta--dark::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid color-mix(in srgb,var(--soc-gold) 18%,transparent);
  border-radius: 17px;
  pointer-events: none;
}
.store-section--ctas .store-amo-cta--dark > div,
.store-section--ctas .store-amo-cta--dark > .store-amo-cta__action {
  position: relative;
  z-index: 1;
  max-width: 55%;
}
.store-section--ctas .store-amo-cta--dark h2 {
  max-width: 14ch;
  color: var(--soc-light-text) !important;
  font-size: clamp(2.15rem, 4.2vw, 4.4rem) !important;
  font-weight: 500;
  line-height: 1.12;
}
.store-section--ctas .store-amo-cta--dark .store-amo-cta__kicker {
  color: var(--soc-gold) !important;
}
.store-section--ctas .store-amo-cta--dark p {
  color: var(--soc-light-muted) !important;
}
.store-section--ctas .store-amo-cta--dark .store-amo-cta__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  margin-top: 18px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--section-button-text) !important;
  background: var(--section-button-bg);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.store-section--ctas .store-amo-cta--dark .store-amo-cta__action:hover {
  background: var(--section-button-hover-bg);
  color: var(--section-button-hover-text) !important;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .store-section--ctas .nx-home-cta-row > .store-amo-cta--dark {
    min-height: 520px !important;
    justify-content: flex-start;
    padding: 42px 28px 270px !important;
    border-radius: 18px !important;
  }
  .store-section--ctas .nx-home-cta-row > .store-amo-cta--dark::before {
    inset-block: auto 0;
    width: 100%;
    height: 230px;
  }
  .store-section--ctas .nx-home-cta-row > .store-amo-cta--dark::after { inset: 10px; border-radius: 12px; }
  .store-section--ctas .store-amo-cta--dark > div,
  .store-section--ctas .store-amo-cta--dark > .store-amo-cta__action { max-width: 100%; }
  .store-section--ctas .store-amo-cta--dark h2 { font-size: clamp(2rem, 10vw, 3rem) !important; }
}

/* Keep one custom-perfume journey beside the scent finder. */
.store-section--ctas .store-experience-grid {
  display: block;
  width: min(100%, 780px);
  margin-inline: auto;
}
.store-customize-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 39vw, 540px);
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: var(--section-background-dark);
  box-shadow: 0 26px 70px rgba(54,38,24,.12);
  text-decoration: none;
}
.store-customize-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,235,196,.25);
  border-radius: 17px;
}
.store-customize-card__eyebrow { margin-bottom: 18px; color: var(--soc-gold); font-size: .78rem; font-weight: 700; letter-spacing: .14em; }
.store-customize-card h2 { max-width: 12ch; margin: 0; color: #fff; font-size: clamp(2.15rem, 3.5vw, 3.9rem); font-weight: 500; line-height: 1.14; }
.store-customize-card p { max-width: 42ch; margin: 18px 0 26px; color: rgba(255,255,255,.84); line-height: 1.9; }
.store-customize-card__action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--soc-light-text);
  background: #fff;
  font-weight: 700;
}
.store-customize-card__action svg { width: 20px; height: 20px; }
.store-experience-grid .store-scent-quiz {
  grid-template-columns: 1fr;
  min-height: clamp(360px, 34vw, 450px);
}
.store-experience-grid .store-scent-quiz__content { padding: clamp(38px, 5vw, 62px); }
.store-experience-grid .store-scent-quiz__visual {
  position: absolute;
  inset-inline-end: 0;
  inset-block-end: 0;
  width: 38%;
  height: 42%;
  min-height: 0;
  border-start-start-radius: 100%;
  opacity: .95;
}
.store-experience-grid .store-scent-quiz h2 { font-size: clamp(2.05rem, 3.4vw, 3.65rem); }
@media (max-width: 767px) {
  .store-section--ctas .store-experience-grid { grid-template-columns: 1fr; }
  .store-customize-card,
  .store-experience-grid .store-scent-quiz { min-height: 460px; border-radius: 18px; }
  .store-customize-card { padding: 40px 28px; }
  .store-customize-card::before { inset: 10px; border-radius: 12px; }
  .store-experience-grid .store-scent-quiz__visual { width: 100%; height: 210px; border-radius: 0; }
  .store-experience-grid .store-scent-quiz__content { padding: 40px 28px 230px; }
}

/* Featured source becomes one wide hero-product composition. */
.nx-home-product-spotlight { padding-block: clamp(58px, 8vw, 104px); }
.nx-home-product-spotlight__head { display: none; }
.nx-home-product-spotlight__head > span { color: var(--soc-gold); font-size: .78rem; font-weight: 700; letter-spacing: .14em; }
.nx-home-product-spotlight__head h2 { margin: 8px 0 0; color: var(--soc-light-text); font-size: clamp(2rem, 3.4vw, 3.6rem); font-weight: 500; }
.nx-home-product-spotlight__head p { max-width: 52ch; margin: 10px 0 0; color: var(--soc-light-muted); line-height: 1.8; }
.nx-home-product-spotlight__card .store-product-card { width: 100%; max-width: none; }
.nx-home-product-spotlight__card .store-product-card__shell {
  position: relative;
  display: block;
  min-height: clamp(330px, 29vw, 430px);
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--section-background-dark);
  box-shadow: 0 30px 80px rgba(55,29,15,.18);
}
.nx-home-product-spotlight__card .store-product-card__media-wrap {
  position: absolute;
  inset: 0;
  width: 58%;
  min-height: 100%;
  background: transparent;
}
.nx-home-product-spotlight__card .store-product-card__media,
.nx-home-product-spotlight__card .store-product-card__visual,
.nx-home-product-spotlight__card .store-product-card__stage { height: 100%; min-height: 100%; }
.nx-home-product-spotlight__card .store-product-card__img { width: 64%; height: 76%; margin: auto; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(20,8,3,.32)); }
.nx-home-product-spotlight__card .store-product-card__body {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 5%;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
  color: #fff;
  background: transparent;
}
.nx-home-product-spotlight__card .store-product-card__chip { color: var(--soc-gold); border-color: color-mix(in srgb,var(--soc-gold) 40%,transparent); }
.nx-home-product-spotlight__card .store-product-card__title a { color: #fff; font-size: clamp(1.85rem, 2.7vw, 3.1rem); line-height: 1.18; }
.nx-home-product-spotlight__card .store-product-card__excerpt { color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.9; }
.nx-home-product-spotlight__card .store-product-card__signals { color: rgba(255,255,255,.72); }
.nx-home-product-spotlight__card .store-product-card__footer { margin-top: 26px; }
.nx-home-product-spotlight__card .store-product-card__price-current { color: var(--soc-gold); }
.nx-home-product-spotlight__card .store-product-card__details-link { min-height: 48px; padding: 0 24px; border: 0; border-radius: 999px; color: var(--soc-light-text); background: #fff; }
.nx-home-product-spotlight__card .store-product-card__toolbar,
.nx-home-product-spotlight__card .store-product-card__mobile-cta,
.nx-home-product-spotlight__card .store-product-card__shine { display: none !important; }
@media (max-width: 767px) {
  .nx-home-product-spotlight__card .store-product-card__shell { min-height: 0; border-radius: 18px; }
  .nx-home-product-spotlight__card .store-product-card__media-wrap { position: relative; width: 100%; min-height: 280px; }
  .nx-home-product-spotlight__card .store-product-card__body { position: relative; inset: auto; width: 100%; padding: 30px 26px 36px; }
  .nx-home-product-spotlight__card .store-product-card__title a { font-size: clamp(1.8rem, 9vw, 2.6rem); }
}

/* Homepage refinement pass: rhythm, proportions and responsive density. */
.nx-home-products__head h2 {
  font-size: clamp(1.85rem, 2.45vw, 2.2rem);
  line-height: 1.22;
}
.nx-home-product-spotlight {
  padding-block: clamp(48px, 5vw, 70px);
}
.store-section--ctas {
  padding-block: clamp(50px, 5.5vw, 72px);
}
.store-experience-grid .store-scent-quiz h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

@media (min-width: 1024px) {
  .nx-home-products__slider .swiper-slide {
    flex: 0 0 calc((100% - 54px) / 4) !important;
    width: calc((100% - 54px) / 4) !important;
    margin-left: 18px !important;
  }
  .nx-home-products__slider .swiper-slide:last-child {
    margin-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .nx-home-products__head {
    align-items: flex-end;
    gap: 14px;
  }
  .nx-home-products__head h2 {
    font-size: 1.72rem;
  }
  .nx-home-products__slider .swiper-slide {
    flex: 0 0 calc((100% - 12px) / 2) !important;
    width: calc((100% - 12px) / 2) !important;
    margin-left: 12px !important;
  }
  .nx-home-products__slider .swiper-slide:last-child {
    margin-left: 0 !important;
  }
  .sh-trio {
    padding-block: 38px;
  }
  .sh-trio__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .sh-trio__grid::-webkit-scrollbar {
    display: none;
  }
  .sh-trio__card {
    flex: 0 0 min(82vw, 310px);
    width: min(82vw, 310px);
    height: auto;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
  .nx-home-product-spotlight {
    padding-block: 44px;
  }
  .nx-home-product-spotlight__card .store-product-card__media-wrap {
    min-height: 240px;
  }
  .nx-home-product-spotlight__card .store-product-card__body {
    padding: 26px 24px 30px;
  }
  .store-section--ctas {
    padding-block: 46px;
  }
  .store-experience-grid .store-scent-quiz h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }
}

/* Wide featured-fragrance campaign. Keep the image cinematic and make the
   action unmistakable without darkening the product side of the artwork. */
.sh-strip__shade {
  background: linear-gradient(270deg, rgba(18, 8, 3, 0.7) 0%, rgba(18, 8, 3, 0.38) 38%, rgba(18, 8, 3, 0) 66%);
}

.sh-strip__copy em {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 26px;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--section-background-dark);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(14, 6, 2, 0.18);
}

@media (min-width: 768px) {
  .sh-strip {
    padding-block: 32px;
  }
  .sh-strip.sh-strip--bleed .sh-strip__item,
  .sh-strip__media,
  .sh-strip__media .sh-media__image {
    height: clamp(300px, 24vw, 340px);
    min-height: 0;
  }
  .sh-strip__media .sh-media__image {
    object-fit: cover;
    object-position: center 64%;
  }
  .sh-strip__copy {
    max-width: min(42%, 520px);
  }
}

@media (max-width: 767px) {
  .sh-strip__shade {
    background: linear-gradient(0deg, rgba(18, 8, 3, 0.76) 0%, rgba(18, 8, 3, 0.28) 58%, rgba(18, 8, 3, 0) 100%);
  }
  .sh-strip__copy em {
    min-height: 38px;
    padding: 9px 20px;
    font-size: 0.82rem;
  }
}

/* Phase 2: responsive homepage composition; desktop reference remains intact. */
@media(max-width:62rem){
 .hp-sec-wrap .home-hero__copy-wrap{padding:clamp(20px,3vw,40px)}
 .hp-sec-wrap .home-hero__copy{gap:12px;width:min(52%,34rem)}
 .hp-sec-wrap .home-hero__title{font-size:clamp(1.75rem,4.8vw,3.35rem);line-height:1.18}
 .hp-sec-wrap .sh-section-head,.hp-sec-wrap .nx-home-products__head{flex-wrap:wrap;gap:1rem;align-items:center}
 .hp-sec-wrap .sh-section-head__more,.hp-sec-wrap .nx-home-products__head>a{min-height:44px;display:inline-flex;align-items:center}
 .hp-sec-wrap .sh-products-grid__row:has(>article:nth-child(4):last-child){grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:56rem){
 .hp-sec-wrap .sh-trio__grid{display:flex;overflow-x:auto;gap:1rem;scroll-snap-type:x mandatory;overscroll-behavior-x:contain;touch-action:pan-x pan-y;scrollbar-width:thin;padding-bottom:.5rem}
 .hp-sec-wrap .sh-trio__card{flex:0 0 min(82%,20rem);width:min(82%,20rem);height:auto;aspect-ratio:4/5;scroll-snap-align:start}
}
@media(max-width:40rem){
 .hp-sec-wrap .home-hero,.hp-sec-wrap .home-hero__stage,.hp-sec-wrap .home-hero__swiper{height:auto;min-height:0}
 .hp-sec-wrap .home-hero__slide{height:auto;display:flex;flex-direction:column;background:var(--section-background-dark,#23180f)}
 .hp-sec-wrap .home-hero__media{position:relative;inset:auto;height:auto;flex:none}
 .hp-sec-wrap .home-hero__media img{display:block;width:100%;height:auto;object-fit:contain}
 .hp-sec-wrap .home-hero__shade{display:none}
 .hp-sec-wrap .home-hero__copy-wrap{position:relative;inset:auto;align-items:flex-start;padding:1.25rem 1.25rem 1.5rem}
 .hp-sec-wrap .home-hero__copy{width:100%;gap:.625rem}
 .hp-sec-wrap .home-hero__title{max-width:100%;font-size:clamp(1.75rem,5vw,2.2rem)}
 .hp-sec-wrap .home-hero__cta{margin-top:0}
 .hp-sec-wrap .home-hero__spacer{display:none}
}
@media(prefers-reduced-motion:reduce){.hp-sec-wrap .swiper-wrapper{transition-duration:0ms!important}.hp-sec-wrap [class*=__card]{transition:none!important}}

/* Phase 2: editorial, campaign, quiz and social sections. */
@media(max-width:62rem){
 .hp-sec-wrap .sh-products-grid .sh-products-grid__row:has(>article:nth-of-type(4):last-of-type){grid-template-columns:repeat(2,minmax(0,1fr))!important}
 .hp-sec-wrap .sh-editorial__block{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}
 .hp-sec-wrap .sh-editorial__visual{min-height:0;height:auto;aspect-ratio:4/3;align-self:center;order:0}
 .hp-sec-wrap .sh-editorial__media{height:100%}
 .hp-sec-wrap .sh-editorial__copy{padding:clamp(20px,3vw,36px);min-width:0;order:1}
 .hp-sec-wrap .sh-editorial__cta{min-height:44px}
 .hp-sec-wrap .sh-strip__copy em{min-height:44px}
}
@media(max-width:42rem){
 .hp-sec-wrap .sh-editorial__block{grid-template-columns:minmax(0,1fr)}
 .hp-sec-wrap .sh-editorial__visual{width:100%;aspect-ratio:4/3}
 .hp-sec-wrap .sh-editorial__copy{padding:1.5rem}
 .hp-sec-wrap .sh-strip__item{height:auto!important;display:flex;flex-direction:column;background:var(--section-background-dark,#23180f)}
 .hp-sec-wrap .sh-strip__media{position:relative;inset:auto;height:auto!important}
 .hp-sec-wrap .sh-strip__media img{height:auto!important;width:100%;object-fit:contain}
 .hp-sec-wrap .sh-strip__shade{display:none}
 .hp-sec-wrap .sh-strip__copy{position:relative;inset:auto;transform:none;max-width:none;width:100%;padding:1.25rem;gap:.75rem}
 .hp-sec-wrap .store-scent-quiz{min-height:0}
 .hp-sec-wrap .store-scent-quiz__content{padding:1.75rem 1.5rem}
 .hp-sec-wrap .store-scent-quiz__visual{min-height:180px;height:180px}
 .hp-sec-wrap .store-scent-quiz__visual::before{width:160px;height:160px}
 .hp-sec-wrap .store-scent-quiz__visual::after{width:110px;height:110px}
 .hp-sec-wrap .store-scent-quiz__mark{width:84px}
 .hp-sec-wrap .store-scent-quiz h2{font-size:clamp(1.7rem,5.5vw,2.25rem)}
}
@media(max-width:62rem){
 .hp-sec-wrap .stitch-social__mosaic{display:flex;flex-wrap:wrap;justify-content:center;gap:1rem}
 .hp-sec-wrap .stitch-social__hero--instagram{width:min(100%,28rem);height:auto;min-height:0}
 .hp-sec-wrap .stitch-social__embed-scene{position:relative;inset:auto;display:block;padding:0;transform:none}
 .hp-sec-wrap .stitch-social__embed-frame{position:relative;inset:auto;display:block;transform:none!important;width:100%!important;height:clamp(420px,145vw,650px)!important;max-width:100%;pointer-events:auto}
 .hp-sec-wrap .stitch-social__hero-overlay{display:none}
 .hp-sec-wrap .stitch-social__hero-content{position:relative;inset:auto;padding:1rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:.75rem;background:var(--section-background-dark)}
}

/* Phase 2 final review: keep quiz artwork in flow on narrow screens. */
@media(max-width:42rem){
.hp-sec-wrap .store-scent-quiz{display:flex;flex-direction:column;}
.hp-sec-wrap .store-scent-quiz__content{width:100%;max-width:none;flex:none;}
.hp-sec-wrap .store-scent-quiz__visual{position:relative;inset:auto;flex:none;width:100%;height:180px;}
}

/* Phase 2 closure: existing administrator choices, scoped to home blocks. */
.hp-admin-bound {
  --hp-horizontal: flex-start;
  --hp-vertical: center;
  --hp-align: start;
  --hp-overlay: none;
}
.hp-admin-bound.hp-sec-wrap--align-center { --hp-horizontal:center; --hp-align:center; }
.hp-admin-bound.hp-sec-wrap--align-end { --hp-horizontal:flex-end; --hp-align:end; }
.hp-admin-bound.hp-sec-wrap--valign-start { --hp-vertical:flex-start; }
.hp-admin-bound.hp-sec-wrap--valign-end { --hp-vertical:flex-end; }
.hp-admin-bound.hp-sec-wrap--overlay-dark,
.hp-admin-bound.hp-sec-wrap--overlay-light,
.hp-admin-bound.hp-sec-wrap--overlay-custom { --hp-overlay:rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)); }
.hp-admin-bound.hp-sec-wrap--overlay-gradient_start { --hp-overlay:linear-gradient(to right,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
.hp-admin-bound.hp-sec-wrap--overlay-gradient_end { --hp-overlay:linear-gradient(to left,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
[dir="rtl"] .hp-admin-bound.hp-sec-wrap--overlay-gradient_start { --hp-overlay:linear-gradient(to left,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
[dir="rtl"] .hp-admin-bound.hp-sec-wrap--overlay-gradient_end { --hp-overlay:linear-gradient(to right,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
.hp-admin-bound.hp-sec-wrap--overlay-gradient_top { --hp-overlay:linear-gradient(to bottom,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
.hp-admin-bound.hp-sec-wrap--overlay-gradient_bottom { --hp-overlay:linear-gradient(to top,rgba(var(--hp-sec-overlay-rgb),var(--hp-sec-overlay-strength)),transparent 72%); }
.hp-admin-bound .home-hero__copy-wrap { justify-content:var(--hp-horizontal); align-items:var(--hp-vertical); }
.hp-admin-bound :is(.home-hero__copy,.sh-editorial__copy,.sh-strip__copy,.store-scent-quiz__content) { align-items:var(--hp-horizontal); text-align:var(--hp-align); }
.hp-admin-bound .sh-editorial__copy { justify-content:var(--hp-vertical); }
.hp-admin-bound :is(.sh-section-head__copy,.nx-home-products__head>div) { text-align:var(--hp-align); }
.hp-admin-bound.hp-sec-wrap--text-narrow :is(.home-hero__copy,.sh-strip__copy) { width:min(100%,26rem);max-width:min(100%,26rem); }
.hp-admin-bound.hp-sec-wrap--text-wide :is(.home-hero__copy,.sh-strip__copy) { width:min(100%,48rem);max-width:min(100%,48rem); }
.hp-admin-bound.hp-sec-wrap--text-narrow :is(.sh-editorial__copy p,.store-scent-quiz__content p) { max-width:32ch; }
.hp-admin-bound.hp-sec-wrap--text-wide :is(.sh-editorial__copy p,.store-scent-quiz__content p) { max-width:65ch; }
.hp-admin-bound.hp-sec-wrap--full>section>.container { max-width:none;width:100%; }
.hp-admin-bound:not(.hp-sec-wrap--bg-inherit)>section,
.hp-admin-bound:not(.hp-sec-wrap--bg-inherit) :is(.home-hero__slide,.sh-strip__item,.sh-editorial__block,.sh-editorial__copy,.store-scent-quiz) { background-color:transparent; }
.hp-admin-bound:not(.hp-sec-wrap--bg-inherit)>section.bg-white { background-color:transparent!important; }
/* Copy palettes exclude product-card content and purchase controls. */
.hp-admin-bound:not(.hp-sec-wrap--appearance-inherit) :is(.home-hero__title,.sh-editorial__copy h2,.sh-strip__copy strong,.store-scent-quiz h2,.sh-section-head__title,.nx-home-products__head h2,.stitch-social__title) { color:var(--content-heading)!important;text-shadow:none; }
.hp-admin-bound:not(.hp-sec-wrap--appearance-inherit) :is(.home-hero__copy,.home-hero__eyebrow,.sh-strip__copy,.sh-editorial__copy p,.store-scent-quiz p) { color:var(--content-text)!important; }
.hp-admin-bound:not(.hp-sec-wrap--appearance-inherit) :is(.home-hero__cta,.sh-editorial__cta,.sh-strip__copy em) { color:var(--section-button-text)!important;background:var(--section-button-bg);border-color:var(--content-primary-border)!important; }
.hp-admin-bound:is(.hp-sec-wrap--bg-default,.hp-sec-wrap--bg-secondary,.hp-sec-wrap--bg-custom,.hp-sec-wrap--bg-dark) .home-hero__slide { background:transparent; }
.hp-admin-bound.hp-sec-wrap--has-background-media :is(.home-hero__media,.sh-strip__media) { visibility:hidden; }
.hp-admin-bound:is(.hp-sec-wrap--bg-image,.hp-sec-wrap--bg-video) .home-hero { background:transparent; }
.hp-admin-bound:not(.hp-sec-wrap--overlay-none):has(.home-hero,.sh-strip)::before { background:none; }
.hp-admin-bound:not(.hp-sec-wrap--overlay-none) :is(.home-hero__shade,.sh-strip__shade) { display:block;background:var(--hp-overlay)!important; }
.hp-admin-bound:not(.hp-sec-wrap--appearance-inherit).hp-sec-wrap--overlay-none :is(.home-hero__shade,.sh-strip__shade) { background:none!important; }
.hp-admin-bound .sh-media :is(img,video) { object-position:var(--hp-media-position,center); }
/* Reverse remains a real ordering choice when the composition stacks. */
@media(max-width:62rem) {
  .hp-admin-bound .sh-editorial__block--reverse .sh-editorial__copy { order:0; }
  .hp-admin-bound .sh-editorial__block--reverse .sh-editorial__visual { order:1; }
  .hp-admin-bound .sh-products-grid .sh-products-grid__row { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:40rem) {
  .hp-admin-bound .home-hero__stage,.hp-admin-bound .home-hero__swiper,.hp-admin-bound .home-hero__swiper .swiper-wrapper,.hp-admin-bound .home-hero__swiper .swiper-slide { height:auto!important;min-height:0!important; }
  .hp-admin-bound .home-hero__slide { background:transparent; }
  .hp-admin-bound.hp-sec-wrap--appearance-inherit .home-hero__copy :is(.home-hero__eyebrow,.home-hero__title) { color:var(--content-heading)!important;text-shadow:none; }
  .hp-admin-bound.hp-sec-wrap--appearance-inherit .home-hero__copy .home-hero__cta { color:var(--content-link)!important;border-color:currentColor!important; }
  .hp-admin-bound .home-hero__copy { width:100%; }
  .hp-admin-bound .home-hero__media video { position:relative;width:100%;height:auto;aspect-ratio:16/9;object-fit:contain; }
}
@media(max-width:42rem) {
  .hp-admin-bound .sh-strip__item { background:transparent; }
  .hp-admin-bound.hp-sec-wrap--appearance-inherit .sh-strip__copy { color:var(--content-text); }
  .hp-admin-bound.hp-sec-wrap--appearance-inherit .sh-strip__copy strong { color:var(--content-heading); }
  .hp-admin-bound .sh-strip__media video { width:100%;height:auto;aspect-ratio:16/9;object-fit:contain; }
}
/* Small, consistent feedback without changing protected card geometry. */
.hp-admin-bound :is(.home-hero__cta,.sh-editorial__cta,.sh-strip__copy em,.store-scent-quiz__action,.sh-section-head__more,.nx-home-products__head>a) {
  min-height:44px;justify-content:center;line-height:1.4;
  transition:background-color 160ms ease,color 160ms ease,border-color 160ms ease;
}
.hp-admin-bound.hp-sec-wrap--button-text :is(.home-hero__cta,.sh-editorial__cta,.sh-strip__copy em) { background:transparent!important;color:var(--content-link)!important;box-shadow:none;border-color:currentColor!important; }
@media(hover:hover) and (pointer:fine) {
  .hp-admin-bound :is(.sh-editorial__cta,.sh-section-head__more,.nx-home-products__head>a):hover { text-decoration:underline;text-underline-offset:.25em; }
}
.hp-admin-bound :is(a,button):active:not(:disabled) { opacity:.86; }
.hp-admin-bound :is(a,button):focus-visible { outline:3px solid var(--content-focus,var(--soc-gold));outline-offset:3px; }
.stitch-announcement:focus-within .announcement-slider { animation-play-state:paused; }
@media(hover:hover) { .stitch-announcement:hover .announcement-slider { animation-play-state:paused; } }
@media(prefers-reduced-motion:reduce) {
  .stitch-announcement .announcement-slider { animation:none;white-space:normal;flex-wrap:wrap;justify-content:center;gap:1rem; }
  .hp-admin-bound :is(a,button,[class*="__cta"],[class*="__action"]) { transition:none!important; }
}
