:root {
  --mp-navy: #131921;
  --mp-navy-2: #232f3e;
  /* Matteo Party pink for the 2nd nav row (premium, non-neon) */
  --mp-pink-nav: #c2185b;
  --mp-bg: #e3e6e6;
  --mp-card: #ffffff;
  --mp-text: #0f1111;
  --mp-muted: #565959;
  --mp-link: #007185;
  --mp-link-hover: #c7511f;
  --mp-search: #ffffff;
  --mp-search-border: #f3a847;
  --mp-search-btn: #febd69;
  --mp-search-btn-hover: #f3a847;
  --mp-radius: 4px;
  --mp-shadow: 0 2px 5px rgba(15, 17, 17, 0.15);
  --mp-shadow-soft: 0 6px 18px rgba(15, 17, 17, 0.18);
  --mp-max: 1500px;
  --mp-gutter: 14px;
  --mp-rose: #7a1f4a;
  --mp-plum: #4f0f2b;
  /* Reference-tuned plum / magenta (hero headline + CTA) */
  --mp-ref-plum: #9d2053;
  --mp-ref-plum-mid: #8b1d4b;
  --mp-ref-plum-deep: #7a1a42;
  /* Hero + first card row */
  --mp-hero-h-desktop: 360px;
  /* Ideal (comparison): slightly taller horizontal banner */
  --mp-hero-h-ref: clamp(318px, 27vw, 372px);
  /* Hero horizontal inset — floral + type margin */
  --mp-hero-ref-pad-x: var(--mp-gutter);
  --mp-hero-inner-pad-left: calc(var(--mp-gutter) + 94px);
  /* translateY on .mp-hero__copy — negative moves entire text+CTA group up */
  --mp-hero-copy-nudge-y: -14px;
  /* Mobile-only top inset for stacked hero (see 560px rules) */
  --mp-hero-inner-pad-top: 0px;
  /* Premium retail width; ≥561px + nowrap keeps headline to 2 lines */
  --mp-hero-copy-maxw: 580px;
  --mp-hero-copy-max-pct: 58%;
  /* Small heading — ideal: clear lead-in, medium–bold */
  --mp-hero-kicker-fs: clamp(18px, 1.55vw, 22px);
  /* Main headline — ideal: fuller, 2 tight lines (no 3rd wrap: maxw + nowrap) */
  --mp-hero-display-fs: clamp(30px, 2.95vw, 48px);
  --mp-hero-display-row-gap: clamp(6px, 0.68vw, 11px);
  --mp-hero-price-fs: clamp(19px, 1.72vw, 25px);
  --mp-hero-deadline-fs: clamp(16px, 1.2vw, 19px);
  /* Kicker sits closer to headline (ideal) */
  --mp-hero-gap-kicker-display: clamp(6px, 0.82vw, 11px);
  --mp-hero-gap-display-offer: clamp(10px, 1.15vw, 16px);
  --mp-hero-gap-price-deadline: clamp(4px, 0.48vw, 8px);
  /* Slightly tighter = button reads a touch left / closer to offer block */
  --mp-hero-gap-offer-btn: clamp(14px, 1.88vw, 28px);
  --mp-hero-kicker-mt: 3px;
  /* Optical vertical align of SHOP vs. price+date block (negative = nudge up) */
  --mp-hero-btn-nudge-y: -4px;
  /* Horizontal nudge: positive = move SHOP button right (desktop/tablet row only) */
  --mp-hero-btn-nudge-x: 16px;
  /* Extra space above pricing/date/SHOP row only (does not move kicker or headline) */
  --mp-hero-cta-row-mt: 18px;
  /* First-row product cards (ideal ~20–25% taller than 360px base) */
  --mp-ref4-card-min-h: 448px;
  /* First product row: negative margin overlap into hero (tune --mp-topcards-overlap) */
  --mp-topcards-overlap: 54px;
  --mp-ref4-gap: 18px;
  /* Fixed header stack: dark row + pink subnav (must match real .mp-siteHead height to avoid a gap strip) */
  --mp-site-head-h: 110px;
}

/* Standalone page reset (this CSS is only loaded on the landing page) */
html {
  scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--mp-site-head-h) + 8px);
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--mp-bg);
}

.mp-landing {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--mp-text);
  background: var(--mp-bg);
  min-height: 100vh;
}

.mp-landing * {
  box-sizing: border-box;
}

.mp-landing a {
  color: inherit;
  text-decoration: none;
}

/* Hero CTA must stay white (global link rule uses color: inherit) */
.mp-landing a.mp-hero__shopBtn {
  color: #fff;
}

.mp-landing a.mp-hero__hitArea {
  color: transparent;
}

.mp-srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Fixed shell: navy header + pink subnav */
.mp-siteHead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
}

/* Header (row 1) */
.mp-header {
  background: var(--mp-navy);
  color: #fff;
}

.mp-header__inner {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 8px var(--mp-gutter);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 14px;
}

/* Hidden on desktop; shown <1024px with pink bar hidden (see media query) */
.mp-header__navToggle {
  display: none;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.mp-header__navToggle:focus-visible {
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 2px;
}

.mp-header__navToggleBars {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 5px;
  width: 22px;
}

.mp-header__navToggleBar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.mp-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 0 0;
  border-radius: 2px;
  color: #fff;
  min-width: 0;
}

.mp-header__brand:hover {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 1px;
}

.mp-header__brandLockup {
  display: grid;
  gap: 1px;
  line-height: 1.1;
  min-width: 0;
}

.mp-header__brandName {
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.mp-header__brandTag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08px;
  opacity: 0.92;
  max-width: 260px;
  white-space: normal;
}

.mp-header__searchSlot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.mp-header__searchSlot .mp-search {
  width: min(520px, 100%);
  max-width: 520px;
}

.mp-header__logoMark {
  /* No dark/rounded background behind the logo */
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.mp-header__logoImg {
  height: clamp(42px, 3.9vw, 52px);
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: translateY(0.5px);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

/* Search bar */
.mp-search {
  display: grid;
  grid-template-columns: 64px 1fr 52px;
  align-items: stretch;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--mp-search);
  box-shadow: 0 0 0 2px transparent;
}

.mp-search:focus-within {
  box-shadow: 0 0 0 3px rgba(243, 168, 71, 0.95);
}

.mp-search__selectWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  background: #f3f3f3;
  color: #111;
  font-size: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.mp-search__chev {
  opacity: 0.7;
}

.mp-search__input {
  border: 0;
  outline: 0;
  padding: 0 10px;
  font-size: 14px;
}

.mp-search__btn {
  border: 0;
  background: var(--mp-search-btn);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #111;
}

.mp-search__btn:hover {
  background: var(--mp-search-btn-hover);
}

.mp-search__icon {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Secondary nav (row 2) */
.mp-subnav {
  background: var(--mp-pink-nav);
  color: #fff;
}

.mp-subnav__inner {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 7px var(--mp-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 42px;
}

.mp-subnav__menu {
  overflow: hidden;
}

.mp-subnav__list {
  display: flex;
  gap: 14px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.mp-subnav__link {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 6px;
  border-radius: 2px;
  font-size: 13px;
  /* Reserve 1px for Amazon-style hover frame (no layout shift) */
  border: 1px solid transparent;
  box-sizing: border-box;
}

/* Thin white frame on hover — pointer devices only (touch taps unchanged) */
@media (hover: hover) and (pointer: fine) {
  .mp-subnav__link:hover {
    border-color: #fff;
  }
}

.mp-subnav__link:focus-visible {
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 2px;
}

.mp-subnav__link--trigger[aria-expanded="true"] {
  border-color: #fff;
}

/* Countdown block */
.mp-countdown {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 10px;
}

.mp-countdown__label {
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

.mp-countdown__timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mp-countdown__box {
  width: 44px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding-top: 1px;
}

.mp-countdown__num {
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.2px;
}

.mp-countdown__unit {
  font-size: 9px;
  line-height: 1;
  opacity: 0.8;
  margin-top: 2px;
}

.mp-countdown__sep {
  font-weight: 700;
  opacity: 0.7;
}

/* Countdown in top header row */
.mp-countdown--header {
  justify-self: end;
  gap: 8px;
}

.mp-countdown--header .mp-countdown__label {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  opacity: 0.95;
  letter-spacing: 0.08px;
}

.mp-countdown--header .mp-countdown__box {
  width: 44px;
  height: 30px;
  background: #2f3542;
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mp-countdown--header .mp-countdown__num {
  color: #fff;
  font-size: 13px;
}

.mp-countdown--header .mp-countdown__unit {
  color: rgba(255, 255, 255, 0.72);
}

.mp-countdown--header .mp-countdown__sep {
  color: rgba(255, 255, 255, 0.55);
}

/* Desktop mega menu — docks below fixed .mp-siteHead */
.mp-mega {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(env(safe-area-inset-top, 0px) + var(--mp-site-head-h));
  z-index: 75;
  max-height: calc(100vh - env(safe-area-inset-top, 0px) - var(--mp-site-head-h));
  overflow-y: auto;
  pointer-events: none; /* enable only when open panels exist */
}

.mp-mega:not([hidden]) {
  pointer-events: auto;
}

.mp-mega__panel {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--mp-shadow-soft);
}

.mp-mega__inner {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 18px var(--mp-gutter) 20px;
}

.mp-mega__grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

/* Mega grid columns: set by inline CSS var from JS (no empty "Featured" columns) */
.mp-mega__grid {
  grid-template-columns: repeat(var(--mp-mega-text-cols, 4), minmax(0, 1fr));
}

.mp-mega__grid--promo {
  grid-template-columns:
    repeat(var(--mp-mega-text-cols, 4), minmax(0, 1fr))
    minmax(260px, 1.25fr);
}

.mp-mega__col {
  min-width: 0;
}

.mp-mega__h {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #0f1111;
  margin-bottom: 10px;
}

.mp-mega__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.mp-mega__a {
  font-size: 13px;
  color: #111;
  line-height: 1.25;
}

.mp-mega__a:hover {
  color: var(--mp-link-hover);
  text-decoration: underline;
}

.mp-mega__a:focus-visible {
  outline: 2px solid rgba(243, 168, 71, 0.95);
  outline-offset: 2px;
  border-radius: 3px;
}

.mp-mega__promo {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 22px;
  display: grid;
  gap: 12px;
}

.mp-mega__promoImg {
  border-radius: 6px;
  background: #f2f2f2;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
}

.mp-mega__promoImgLink {
  display: block;
  line-height: 0;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
}

.mp-mega__promoImgLink:focus-visible {
  outline: 2px solid rgba(243, 168, 71, 0.95);
  outline-offset: 2px;
}

.mp-mega__promoBody {
  display: grid;
  gap: 10px;
}

.mp-mega__promoH {
  font-weight: 900;
  letter-spacing: -0.2px;
  font-size: 16px;
  color: #0f1111;
}

.mp-mega__promoLines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: #111;
  font-size: 13px;
  opacity: 0.9;
}

.mp-mega__promoBtn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(254, 189, 105, 0.95);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(243, 168, 71, 0.95);
}

.mp-mega__promoBtn:hover {
  background: rgba(243, 168, 71, 0.95);
}

/* Mobile drawer nav */
.mp-mnav[hidden] {
  display: none;
}

.mp-mnav {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.mp-mnav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.mp-mnav__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(420px, 92vw);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-rows: auto 1fr;
}

.mp-mnav__header {
  background: var(--mp-navy-2);
  color: #fff;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-mnav__title {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.mp-mnav__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.mp-mnav__close:focus-visible {
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 2px;
}

.mp-mnav__body {
  overflow: auto;
  padding: 10px 10px 18px;
}

.mp-mnav__section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mp-mnav__accBtn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 900;
  color: #0f1111;
}

.mp-mnav__accBtn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.mp-mnav__accBtn:focus-visible {
  outline: 2px solid rgba(243, 168, 71, 0.95);
  outline-offset: 2px;
  border-radius: 8px;
}

.mp-mnav__accIcon {
  transition: transform 120ms ease;
}

.mp-mnav__accBtn[aria-expanded="true"] .mp-mnav__accIcon {
  transform: rotate(180deg);
}

.mp-mnav__accPanel {
  padding: 0 10px 14px;
}

.mp-mnav__topLink {
  display: inline-flex;
  margin: 8px 0 12px;
  color: var(--mp-link);
  font-weight: 800;
  font-size: 13px;
}

.mp-mnav__topLink:hover {
  color: var(--mp-link-hover);
  text-decoration: underline;
}

.mp-mnav__group {
  margin-top: 12px;
}

.mp-mnav__groupH {
  font-size: 12px;
  font-weight: 900;
  color: #0f1111;
  opacity: 0.85;
  margin: 0 0 8px;
}

.mp-mnav__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.mp-mnav__a {
  color: #111;
  font-size: 13px;
  line-height: 1.25;
}

.mp-mnav__a:hover {
  color: var(--mp-link-hover);
  text-decoration: underline;
}

.mp-mnav__promo {
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.mp-mnav__promoImg {
  background: #f2f2f2;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
}

.mp-mnav__promoImgLink {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.mp-mnav__promoImgLink:focus-visible {
  outline: 2px solid rgba(243, 168, 71, 0.95);
  outline-offset: 2px;
}

.mp-mnav__promoBody {
  padding: 12px;
  display: grid;
  gap: 8px;
}

.mp-mnav__promoH {
  font-weight: 900;
}

.mp-mnav__promoLines {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.mp-mnav__promoBtn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(254, 189, 105, 0.95);
  color: #111;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(243, 168, 71, 0.95);
}

.mp-mnav__promoBtn:hover {
  background: rgba(243, 168, 71, 0.95);
}

/* Main / hero */
.mp-main {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding-top: calc(env(safe-area-inset-top, 0px) + var(--mp-site-head-h));
}

/* Full-bleed hero: escape .mp-main max-width so the banner spans the viewport */
.mp-main > .mp-hero.mp-hero--ref {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.mp-hero {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Full-banner hit target behind copy; inner uses pointer-events so text area passes through */
.mp-hero__hitArea {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
  text-decoration: none;
}

.mp-hero__hitArea:focus-visible {
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 2px;
  z-index: 2;
}

/* Mobile-only stacked hero image (hidden on desktop ≥561px) */
.mp-hero__mobileTop {
  display: none;
}

/* WhatsApp pill — fixed bottom-right (desktop / ≥561px); mobile ≤560px overrides below */
.mp-hero__wa {
  position: fixed;
  top: auto;
  right: max(14px, env(safe-area-inset-right, 0px));
  left: auto;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 85;
  pointer-events: auto;
  line-height: 0;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(15, 17, 17, 0.2);
}

.mp-hero__wa:hover {
  box-shadow: 0 4px 16px rgba(15, 17, 17, 0.26);
}

.mp-hero__wa:focus-visible {
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 3px;
  border-radius: 999px;
}

.mp-hero__waImg {
  display: block;
  width: auto;
  height: auto;
  max-width: min(200px, 36vw);
  object-fit: contain;
}

/* Hero: photo only — no gradients, tints, or pseudo overlays on the image */
.mp-hero--ref {
  height: var(--mp-hero-h-ref);
  background-color: #f3f3f3;
  background-image: url("./hero-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 74% 50%;
}

.mp-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 0 var(--mp-hero-ref-pad-x) 0 var(--mp-hero-inner-pad-left);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.mp-hero__copy {
  box-sizing: border-box;
  max-width: min(var(--mp-hero-copy-maxw), var(--mp-hero-copy-max-pct));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  transform: translateY(var(--mp-hero-copy-nudge-y));
}

.mp-hero__kickerLine {
  margin: var(--mp-hero-kicker-mt) 0 var(--mp-hero-gap-kicker-display);
  font-size: var(--mp-hero-kicker-fs);
  font-weight: 900;
  letter-spacing: -0.12px;
  line-height: 1.14;
  color: #0f1111;
}

.mp-hero__display {
  margin: 0 0 var(--mp-hero-gap-display-offer);
  font-weight: 900;
  letter-spacing: -0.62px;
  line-height: 0.98;
  color: var(--mp-ref-plum);
  font-size: var(--mp-hero-display-fs);
}

.mp-hero__displayLine {
  display: block;
}

/* Two-row headline: clear separation between lines (ideal) */
.mp-hero__displayLine + .mp-hero__displayLine {
  margin-top: var(--mp-hero-display-row-gap);
}

.mp-hero__ctaRow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: var(--mp-hero-gap-offer-btn);
  row-gap: 4px;
  margin: var(--mp-hero-cta-row-mt) 0 0;
}

.mp-hero__offerCol {
  display: grid;
  gap: var(--mp-hero-gap-price-deadline);
  min-width: 0;
}

.mp-hero__priceLine {
  margin: 0;
  font-size: var(--mp-hero-price-fs);
  font-weight: 900;
  letter-spacing: -0.11px;
  line-height: 1.14;
  color: var(--mp-ref-plum);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.mp-hero__priceSep {
  font-weight: 900;
  opacity: 0.42;
  color: var(--mp-ref-plum);
  padding: 0 clamp(10px, 1.1vw, 16px);
}

.mp-hero__deadline {
  margin: 0;
  font-size: var(--mp-hero-deadline-fs);
  font-weight: 700;
  letter-spacing: -0.035px;
  line-height: 1.18;
  color: #0f1111;
}

.mp-hero__shopBtn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  pointer-events: auto;
  min-height: 46px;
  min-width: 124px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--mp-ref-plum);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.12em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 16px rgba(157, 32, 83, 0.22);
}

.mp-hero__shopBtn:hover {
  background: var(--mp-ref-plum-deep);
  color: #fff;
}

.mp-hero__shopBtn:focus-visible {
  color: #fff;
  outline: 2px solid rgba(254, 189, 105, 0.95);
  outline-offset: 3px;
}

/* Desktop / tablet row: keep headline to 2 visual lines; price + SHOP on one row */
@media (min-width: 561px) {
  .mp-header__brandTag {
    display: inline;
  }

  .mp-header__brandTagSep {
    display: inline;
  }

  .mp-hero__mobileTop {
    display: none !important;
  }

  .mp-hero__displayLine {
    white-space: nowrap;
  }

  .mp-hero__ctaRow {
    flex-wrap: nowrap;
    align-items: center;
  }

  .mp-hero__shopBtn {
    align-self: center;
    transform: translate(
      var(--mp-hero-btn-nudge-x, 0),
      var(--mp-hero-btn-nudge-y, 0)
    );
  }
}

.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.mp-btn--primary {
  background: rgba(254, 189, 105, 0.95);
  border-color: rgba(254, 189, 105, 0.95);
  color: #111;
}

.mp-btn--primary:hover {
  background: rgba(243, 168, 71, 0.95);
  border-color: rgba(243, 168, 71, 0.95);
}

.mp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Card grids (Amazon-like density) */
.mp-cardGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 20px var(--mp-gutter);
}

.mp-cardGrid--hero {
  position: relative;
  /* Bring cards closer to hero like Amazon */
  margin-top: 105px;
  padding-top: 0;
}

.mp-topCards {
  max-width: var(--mp-max);
  margin: 0 auto;
}

/* First card row: negative margin overlaps hero by --mp-topcards-overlap */
.mp-cardGrid--top {
  margin-top: calc(-1 * var(--mp-topcards-overlap));
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.mp-cardGrid--ref4 {
  gap: var(--mp-ref4-gap);
  padding: 16px var(--mp-gutter) 20px;
}

/* Ready-to-Gift Sets — 4-up row (Mother’s Day, below first category row) */
.mp-r2gSets {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 8px var(--mp-gutter) 22px;
}

.mp-r2gSets__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--mp-ref4-gap);
}

.mp-r2gCard {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--mp-card);
  border: 1px solid rgba(15, 17, 17, 0.1);
  border-radius: 0;
  box-shadow: var(--mp-shadow);
}

.mp-r2gCard__bar {
  flex: 0 0 auto;
  margin: 0;
  padding: 11px 12px;
  text-align: center;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #e02887 0%, #c40068 52%, #b0005c 100%);
}

.mp-r2gCard__mediaWrap {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
}

.mp-r2gCard__mediaLink {
  display: block;
  position: relative;
  /* Match current set-*.jpg art (~1107×1139): one ratio for all 4 cards, clean contain framing */
  aspect-ratio: 1107 / 1139;
  overflow: hidden;
  background: linear-gradient(180deg, #faf7f5 0%, #efeae6 55%, #e8e2dd 100%);
  color: inherit;
  text-decoration: none;
  outline: none;
  /* No top padding — keeps photo flush under the magenta bar; no bottom padding so overlays align to image bottom */
  padding: 0 clamp(4px, 1.2vw, 10px) 0;
  box-sizing: border-box;
}

.mp-r2gCard__mediaLink:focus-visible {
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 4px rgba(0, 113, 133, 0.55);
}

.mp-r2gCard__img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.mp-r2gCard__bubble {
  position: absolute;
  z-index: 2;
  left: clamp(8px, 1.4vw, 14px);
  bottom: 0;
  max-width: min(78%, 220px);
  padding: 11px 14px 10px;
  border-radius: 14px 14px 14px 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 14px rgba(15, 17, 17, 0.16);
  display: grid;
  gap: 5px;
}

.mp-r2gCard__name {
  font-size: clamp(14px, 1.12vw, 18px);
  font-weight: 800;
  line-height: 1.15;
  color: #d0006f;
  letter-spacing: -0.02em;
}

.mp-r2gCard__sub {
  font-size: clamp(10.5px, 0.95vw, 12px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--mp-text);
}

.mp-r2gCard__logoWrap {
  position: absolute;
  z-index: 3;
  right: clamp(7px, 1.2vw, 12px);
  bottom: 0;
  pointer-events: none;
  padding: 6px 9px;
  background: #0a0a0a;
  border-radius: 3px;
  line-height: 0;
  box-shadow: 0 2px 8px rgba(15, 17, 17, 0.2);
}

.mp-r2gCard__logoImg {
  display: block;
  height: clamp(18px, 1.75vw, 22px);
  width: auto;
  max-width: 108px;
  object-fit: contain;
}

.mp-r2gCard__footer {
  flex: 0 0 auto;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-r2gCard__meta {
  display: grid;
  gap: 4px;
}

.mp-r2gCard__title {
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 800;
  line-height: 1.15;
  color: #d0006f;
  letter-spacing: -0.02em;
}

.mp-r2gCard__price {
  font-size: 13px;
  font-weight: 700;
  color: #0f1111;
  line-height: 1.25;
}

.mp-r2gCard__note {
  font-size: 12px;
  font-weight: 400;
  color: var(--mp-text);
  line-height: 1.3;
}

.mp-r2gCard__detail {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0f1111;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 17, 17, 0.16);
  box-shadow: 0 1px 4px rgba(15, 17, 17, 0.08);
  transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease,
    transform 120ms ease;
}

.mp-r2gCard__detail:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 17, 17, 0.22);
  box-shadow: 0 2px 10px rgba(15, 17, 17, 0.14);
  transform: translateY(-1px);
}

.mp-r2gCard__detail:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 113, 133, 0.55),
    0 2px 10px rgba(15, 17, 17, 0.14);
}

.mp-card--refQuad {
  padding: 15px 15px 22px;
  gap: 11px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mp-topCards .mp-card--refQuad .mp-card__title {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 800;
  color: #0f1111;
}

.mp-card--refQuad .mp-card__tiles {
  gap: 10px;
}

.mp-tile__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  background: #f3f3f3;
}

.mp-card--refQuad .mp-tile__label {
  font-size: 12px;
  font-weight: 600;
}

.mp-card__link--shopAll {
  margin-top: 2px;
}

.mp-topCards .mp-card.mp-card--refQuad {
  min-height: var(--mp-ref4-card-min-h);
}

.mp-card--refQuad .mp-card__link--shopAll {
  margin-top: 12px;
}

/* First top row: Box 1 — single large hero image (Mother’s Day) */
.mp-card--topRowHero .mp-card__topHeroWrap {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mp-card--topRowHero .mp-card__topHeroLink {
  display: block;
  flex: 1 1 auto;
  min-height: clamp(220px, 28vw, 320px);
  border-radius: 2px;
  overflow: hidden;
  background: #f3f3f3;
  outline: none;
}

.mp-card--topRowHero .mp-card__topHeroLink:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 123, 180, 0.55);
}

.mp-card--topRowHero .mp-card__topHeroImg {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 320px);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

/* Title as link (Ready-to-Gift Sets): match heading look, no default link chrome */
.mp-card__titleLink {
  color: inherit;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
}

.mp-card__titleLink:hover {
  text-decoration: underline;
}

.mp-card {
  background: var(--mp-card);
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
  padding: 18px 18px 16px;
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.mp-card__title {
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.1px;
}

.mp-card__media {
  overflow: hidden;
  border-radius: 2px;
  background: #f7f7f7;
}

.mp-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mp-card__img--wide {
  aspect-ratio: 16 / 10;
}

.mp-card__tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mp-tile {
  display: grid;
  gap: 6px;
  color: var(--mp-text);
}

.mp-tile .mp-card__img {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  background: #f7f7f7;
}

.mp-tile__label {
  font-size: 12px;
  color: var(--mp-text);
  line-height: 1.2;
}

.mp-card__link {
  color: var(--mp-link);
  font-size: 13px;
  font-weight: 700;
  justify-self: start;
}

.mp-card__link:hover {
  color: var(--mp-link-hover);
  text-decoration: underline;
}

/* Mini-Me / Pinatas / Tee promo row — clickable image block, shared URL with footer link */
.mp-card--promoTrio {
  min-height: 0;
}

.mp-card--promoTrio .mp-card__mediaLink {
  display: block;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  border-radius: 2px;
}

.mp-card--promoTrio .mp-card__media--promoTrio {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
}

.mp-card--promoTrio .mp-card__img--promoTrio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.mp-card--promoTrio .mp-card__mediaLink:hover .mp-card__img--promoTrio {
  transform: scale(1.02);
}

.mp-card--promoTrio .mp-card__link {
  color: #0f1111;
  font-weight: 600;
}

.mp-card--promoTrio .mp-card__link:hover {
  color: var(--mp-link);
  text-decoration: underline;
}

.mp-section {
  padding-bottom: 8px;
}

/* Body rows (Amazon-like mixed layout rhythm) */
.mp-row {
  padding: 0 var(--mp-gutter) 20px;
}

.mp-row--grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.mp-row--grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mp-row--grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mp-row--full {
  padding-top: 2px;
}

/* Party themes row (4 refQuad cards): aligns with top ref4 strip rhythm */
.mp-partyThemesGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--mp-ref4-gap);
  align-items: stretch;
}

.mp-partyThemesGrid .mp-card--partyTheme {
  min-height: var(--mp-ref4-card-min-h);
  height: 100%;
}

.mp-partyThemesGrid .mp-card--partyTheme .mp-card__title {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 800;
  color: #0f1111;
}

.mp-row--mixed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  gap: 20px;
  align-items: start;
}

.mp-row--mixed2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  gap: 20px;
  align-items: start;
}

.mp-card--wide {
  min-height: 360px;
}

.mp-card__wideLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
}

.mp-chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(35, 47, 62, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.mp-chip:hover {
  background: rgba(35, 47, 62, 0.1);
  border-color: rgba(0, 0, 0, 0.14);
}

/* Product strip (Amazon-like best-sellers row) */
.mp-strip {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow);
  padding: 16px 18px 14px;
}

.mp-strip--inRow {
  box-shadow: var(--mp-shadow);
}

.mp-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.mp-strip__title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.1px;
}

.mp-strip__link {
  color: var(--mp-link);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.mp-strip__link:hover {
  color: var(--mp-link-hover);
  text-decoration: underline;
}

.mp-strip__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 6px;
  scrollbar-gutter: stable;
}

.mp-strip__item {
  display: grid;
  gap: 8px;
  color: #111;
  padding: 8px;
  border-radius: 8px;
}

.mp-strip__item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.mp-strip__name {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

/* Category strip: 6-up grid (Party Balloons / Party Decorations) */
.mp-strip--category {
  padding: 20px 22px 18px;
}

.mp-categoryGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

/* 8-up personalized gifts row (reference layout) */
.mp-categoryGrid.mp-categoryGrid--gifts8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.mp-strip--personalizedGifts {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.mp-categoryCard__thumb.mp-categoryCard__thumb--square {
  aspect-ratio: 1 / 1;
}

.mp-categoryCard {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
  padding: 8px;
  margin: -8px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
}

.mp-categoryCard:hover {
  background: rgba(0, 0, 0, 0.03);
}

.mp-categoryCard__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.mp-categoryCard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-categoryCard__label {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  hyphens: auto;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .mp-categoryGrid.mp-categoryGrid--gifts8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mp-categoryGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mp-categoryGrid.mp-categoryGrid--gifts8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mp-categoryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mp-categoryGrid.mp-categoryGrid--gifts8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mp-header__brandTag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1.2;
    max-width: 220px;
  }

  .mp-header__brandTagSep {
    display: none;
  }

  .mp-strip--category {
    padding: 16px 14px 14px;
  }
}

@media (max-width: 400px) {
  /* Keep Personalized Party Gifts at 2 columns on narrow phones (match Baby Party tiles rhythm) */
  .mp-categoryGrid.mp-categoryGrid--gifts8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Better placeholders (category/product-shaped, easy to swap later) */
.mp-ph {
  border-radius: 8px;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(180deg, rgba(35, 47, 62, 0.08), rgba(35, 47, 62, 0.03));
  position: relative;
  overflow: hidden;
}

.mp-ph::after {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 17, 17, 0.78);
  background: rgba(255, 255, 255, 0.78);
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mp-ph--tile {
  aspect-ratio: 4 / 3;
}

.mp-ph--heroCard {
  aspect-ratio: 16 / 10;
}

.mp-ph--wide {
  aspect-ratio: 21 / 9;
}

.mp-ph--prod {
  aspect-ratio: 1 / 1;
}

/* Footer (minimal dark band + back-to-top) */
.mp-footer {
  background: #111;
  color: #fff;
  margin-top: 14px;
}

.mp-footer__inner {
  max-width: var(--mp-max);
  margin: 0 auto;
}

.mp-footer__top {
  background: #37475a;
  text-align: center;
}

.mp-footer__backTop {
  display: block;
  padding: 14px var(--mp-gutter);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.mp-footer__backTop:hover {
  background: #445b77;
}

.mp-footer__body {
  background: #111;
  color: #fff;
}

.mp-footer__bodyInner {
  max-width: var(--mp-max);
  margin: 0 auto;
  padding: 48px var(--mp-gutter) 44px;
}

.mp-footer__band {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 52px);
}

.mp-footer__logoCol {
  flex: 0 0 auto;
  max-width: 200px;
  display: grid;
  gap: 10px;
}

.mp-footer__logoImg {
  display: block;
  width: auto;
  max-width: 168px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.mp-footer__logoWord {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.mp-footer__prose {
  flex: 0 1 40rem;
  max-width: 40rem;
  padding-top: 2px;
}

.mp-footer__para {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
}

.mp-footer__para:last-child {
  margin-bottom: 0;
}

.mp-footer__copyright {
  margin: 32px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 700px) {
  .mp-footer__bodyInner {
    padding: 36px var(--mp-gutter) 36px;
  }

  .mp-footer__band {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .mp-footer__logoCol {
    max-width: none;
  }

  .mp-footer__prose {
    flex-basis: auto;
    max-width: none;
    padding-top: 0;
  }

  .mp-footer__copyright {
    margin-top: 28px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .mp-cardGrid:not(.mp-cardGrid--ref4) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mp-countdown:not(.mp-countdown--header) .mp-countdown__label {
    display: none;
  }

  .mp-row--grid4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mp-row--grid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .mp-cardGrid--ref4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-r2gSets__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* <1024px: hamburger + hide pink category row; desktop mega hidden (≥1024 unchanged) */
@media (max-width: 1023px) {
  :root {
    /* Navy header stack only (no pink subnav); overridden again at ≤900 / ≤560 */
    --mp-site-head-h: 126px;
  }

  .mp-mega {
    display: none;
  }

  .mp-subnav {
    display: none;
  }

  .mp-header__navToggle {
    display: inline-flex;
  }

  .mp-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "brand navtoggle"
      "search search"
      "countdown countdown";
    column-gap: 10px;
    row-gap: 10px;
    justify-items: stretch;
    align-items: center;
  }

  .mp-header__navToggle {
    grid-area: navtoggle;
    align-self: center;
    justify-self: end;
  }

  .mp-header__brand {
    grid-area: brand;
    justify-self: start;
    min-width: 0;
  }

  .mp-header__searchSlot {
    grid-area: search;
    width: 100%;
  }

  .mp-header__searchSlot .mp-search {
    width: 100%;
    max-width: none;
  }

  .mp-countdown--header {
    grid-area: countdown;
    justify-self: center;
    width: 100%;
    justify-content: center;
  }

  /* Right slide-out drawer (~2/3 viewport); dimmed page behind */
  .mp-mnav {
    pointer-events: none;
  }

  .mp-mnav.mp-mnav--open {
    pointer-events: auto;
  }

  .mp-mnav__overlay {
    opacity: 0;
    transition: opacity 0.28s ease;
    background: rgba(15, 17, 17, 0.42);
  }

  .mp-mnav.mp-mnav--open .mp-mnav__overlay {
    opacity: 1;
  }

  .mp-mnav__panel {
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: min(66.666vw, calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    max-width: 520px;
    min-width: 260px;
    border-radius: 14px 0 0 14px;
    box-shadow: -10px 0 36px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .mp-mnav.mp-mnav--open .mp-mnav__panel {
    transform: translateX(0);
  }

  .mp-mnav__body {
    padding: 12px 12px 22px;
  }

  .mp-mnav__accBtn {
    min-height: 48px;
    padding: 14px 12px;
    font-size: 15px;
  }

  .mp-mnav__topLink {
    min-height: 44px;
    align-items: center;
    display: inline-flex;
    font-size: 14px;
  }

  .mp-mnav__a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 4px 0;
  }
}

@media (max-width: 900px) {
  :root {
    --mp-hero-h-ref: clamp(312px, 46vw, 400px);
    --mp-hero-inner-pad-left: calc(var(--mp-gutter) + 50px);
    --mp-hero-copy-nudge-y: -12px;
    --mp-ref4-card-min-h: 420px;
    --mp-hero-gap-offer-btn: clamp(12px, 3.2vw, 24px);
    --mp-hero-gap-display-offer: clamp(10px, 1.32vw, 15px);
    --mp-hero-gap-kicker-display: 7px;
    --mp-hero-display-row-gap: clamp(6px, 0.98vw, 10px);
    --mp-hero-kicker-mt: 3px;
    --mp-hero-btn-nudge-y: -3px;
    --mp-hero-btn-nudge-x: 12px;
    --mp-hero-cta-row-mt: 16px;
    --mp-site-head-h: 134px;
  }

  .mp-search {
    grid-template-columns: 64px 1fr 52px;
  }

  .mp-cardGrid:not(.mp-cardGrid--ref4) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-row--grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mp-partyThemesGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mp-row--grid2 {
    grid-template-columns: 1fr;
  }
  .mp-row--grid3 {
    grid-template-columns: 1fr;
  }
  .mp-row--mixed,
  .mp-row--mixed2 {
    grid-template-columns: 1fr;
  }
  .mp-strip__scroller {
    grid-auto-columns: minmax(150px, 1fr);
  }
  .mp-cardGrid--hero {
    margin-top: 148px;
  }

  .mp-hero--ref {
    background-size: cover;
    background-position: 72% 50%;
  }

  .mp-hero__copy {
    max-width: min(var(--mp-hero-copy-maxw), 92%);
  }

  .mp-hero__ctaRow {
    row-gap: 6px;
  }

  .mp-hero__waImg {
    max-width: min(190px, 34vw);
  }
}

@media (max-width: 560px) {
  :root {
    --mp-hero-h-ref: 0px;
    --mp-hero-inner-pad-left: calc(var(--mp-gutter) + 12px);
    --mp-hero-inner-pad-top: 12px;
    --mp-hero-copy-nudge-y: -8px;
    --mp-ref4-card-min-h: 380px;
    --mp-topcards-overlap: 56px;
    --mp-hero-gap-offer-btn: 16px;
    --mp-hero-display-fs: clamp(24px, 5.85vw, 32px);
    --mp-hero-display-row-gap: clamp(6px, 1.75vw, 11px);
    --mp-hero-kicker-fs: clamp(16px, 4.1vw, 20px);
    --mp-hero-price-fs: clamp(16px, 3.95vw, 20px);
    --mp-hero-deadline-fs: clamp(15px, 3.55vw, 18px);
    --mp-hero-gap-kicker-display: clamp(7px, 2.15vw, 11px);
    --mp-hero-gap-display-offer: clamp(11px, 2.2vw, 15px);
    --mp-hero-gap-price-deadline: clamp(4px, 1.35vw, 7px);
    --mp-hero-kicker-mt: 4px;
    --mp-hero-btn-nudge-y: 0px;
    --mp-hero-cta-row-mt: 14px;
    --mp-site-head-h: 148px;
  }

  .mp-cardGrid:not(.mp-cardGrid--ref4) {
    grid-template-columns: 1fr;
  }

  .mp-cardGrid--ref4 {
    grid-template-columns: 1fr;
  }

  .mp-r2gSets__grid {
    grid-template-columns: 1fr;
  }

  .mp-row--grid4 {
    grid-template-columns: 1fr;
  }
  .mp-partyThemesGrid {
    grid-template-columns: 1fr;
  }
  .mp-card {
    min-height: 320px;
  }
  .mp-cardGrid--hero {
    margin-top: 172px;
  }

  .mp-topCards {
    position: relative;
    z-index: 4;
    margin-top: 0;
  }

  /* WhatsApp: fixed bottom-right on mobile (safe margins; desktop ≥561px unchanged) */
  .mp-hero__wa {
    position: fixed;
    top: auto;
    right: max(14px, env(safe-area-inset-right, 0px));
    left: auto;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 85;
  }

  /* —— Mobile hero: image on top, cream text card below (desktop unchanged ≥561px) —— */
  .mp-hero__mobileTop {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    align-self: stretch;
    min-height: 0;
    max-height: none;
    overflow: hidden;
    background: #e8e4dc;
  }

  /* Taller canvas + contain: show more vertical extent without side crop or stretch */
  .mp-hero__mobileHeroImg {
    display: block;
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(90vh, 900px);
    object-fit: contain;
    object-position: center center;
  }

  .mp-hero__mobileHit {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
  }

  .mp-hero__mobileHit:focus-visible {
    outline: 2px solid rgba(254, 189, 105, 0.95);
    outline-offset: -2px;
    z-index: 3;
  }

  .mp-hero__hitArea {
    display: none;
  }

  .mp-hero--ref {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    background-image: none;
    background-color: transparent;
  }

  .mp-hero__inner {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    height: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    align-items: stretch;
    padding: 16px clamp(20px, 6vw, 36px) 64px;
    box-sizing: border-box;
    background: #faf6ec;
    border-top: 0;
  }

  .mp-hero__copy {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    transform: none;
    align-items: stretch;
  }

  .mp-hero__ctaRow {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
  }

  .mp-hero__offerCol {
    flex: 1;
    min-width: 0;
  }

  .mp-hero__shopBtn {
    flex: 0 0 auto;
    min-height: 46px;
    min-width: 118px;
    padding: 0 28px;
    font-size: 15px;
    width: auto;
    justify-content: center;
    align-self: center;
    transform: none;
  }

  .mp-hero__waImg {
    max-width: min(168px, 48vw);
  }
}

/* Responsive nav behavior */
@media (min-width: 1024px) {
  .mp-mnav {
    display: none;
  }
}

/* Mini-Me Plush Dolls for Mom — 10-up row (Mother’s Day) */
.mp-categoryGrid.mp-categoryGrid--miniMe10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
}

/* Full doll visible: contain + slot closer to tall/narrow art (less side letterbox) */
.mp-categoryGrid--miniMe10 .mp-categoryCard__thumb {
  aspect-ratio: 11 / 26;
  background: #fff;
}

.mp-categoryGrid--miniMe10 .mp-categoryCard__img {
  object-fit: contain;
  object-position: center center;
}

/* Tighter horizontal padding so dolls read cleaner on the white strip */
.mp-categoryGrid--miniMe10 .mp-categoryCard {
  padding: 8px 3px;
  margin: -8px -3px;
}

.mp-categoryGrid--miniMe10 .mp-categoryCard__label {
  font-weight: 700;
}

@media (max-width: 1240px) {
  .mp-categoryGrid.mp-categoryGrid--miniMe10 {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(112px, 11vw);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 10px;
    scrollbar-gutter: stable;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .mp-categoryGrid.mp-categoryGrid--miniMe10 {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(118px, 22vw);
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .mp-categoryGrid.mp-categoryGrid--miniMe10 {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(132px, 46vw);
    gap: 10px;
  }
}

