@import url("https://fonts.googleapis.com/css2?family=Allura&family=Lora:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #241f1d;
  --text: #2f2a28;
  --muted: #756c68;
  --paper: #fffdfc;
  --cream: #f7f1ed;
  --cream-2: #efe6e0;
  --line: #d8ccc3;
  --rose: #c9959d;
  --rose-deep: #a97880;
  --taupe: #b3a297;
  --coffee: #241f1d;
  --coffee-2: #312926;
  --shadow: 0 22px 70px rgba(36, 31, 29, .13);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body.mft-shop-body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 253, 252, .82), rgba(247, 241, 237, .9)),
    var(--cream);
  font-family: Lora, Georgia, serif;
  letter-spacing: 0;
}

body.mft-shop-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(36, 31, 29, .04), transparent 20%, rgba(201, 149, 157, .08)),
    radial-gradient(circle at 18% 0%, rgba(255, 253, 252, .72), transparent 30%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

body.mft-shop-body > main,
.mft-header,
.mft-footer {
  width: min(1200px, calc(100vw - 36px));
  margin-right: auto;
  margin-left: auto;
}

.mft-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(179, 162, 151, .35);
  background: var(--coffee);
  box-shadow: 0 18px 55px rgba(36, 31, 29, .16);
}

.brand-lockup {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0 9px 16px;
  color: #fffdfc;
  text-decoration: none;
}

.brand-lockup img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 253, 252, .92);
}

.brand-lockup span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 800;
  line-height: .96;
  text-transform: uppercase;
}

.brand-lockup::after {
  content: "Built from real life, not perfect plans.";
  color: var(--rose);
  font-family: Allura, cursive;
  font-size: 22px;
  line-height: 1;
  transform: translateY(3px);
}

.mft-header nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 25px);
  padding: 0 18px 0 0;
  overflow-x: auto;
  background: transparent;
  color: #fffdfc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  scrollbar-width: none;
}

.mft-header nav::-webkit-scrollbar {
  display: none;
}

.mft-header nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 28px 0;
  text-decoration: none;
}

.mft-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.mft-header nav a:hover::after,
.mft-header nav a:focus-visible::after,
.mft-header nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

main {
  border-right: 1px solid rgba(179, 162, 151, .35);
  border-left: 1px solid rgba(179, 162, 151, .35);
  background: var(--paper);
  box-shadow: 0 20px 80px rgba(36, 31, 29, .08);
}

.hero-shell,
.product-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 10px solid var(--paper);
  background: var(--coffee);
}

.hero-shell {
  min-height: 560px;
  grid-template-columns: minmax(0, .98fr) minmax(430px, .88fr);
}

.product-hero {
  min-height: 620px;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .62fr);
}

.hero-shell::before,
.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 253, 252, .12), rgba(255, 253, 252, .38) 44%, rgba(36, 31, 29, 0) 49%),
    linear-gradient(90deg, transparent 0 48%, var(--coffee) 48% 100%);
}

.hero-panel,
.product-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  align-self: center;
  padding: clamp(42px, 5.3vw, 70px);
  color: #fffdfc;
}

.product-copy {
  grid-column: 1;
}

.product-hero::before {
  background:
    linear-gradient(90deg, rgba(36, 31, 29, .98) 0 58%, rgba(255, 253, 252, .2) 58% 100%),
    linear-gradient(90deg, transparent, rgba(36, 31, 29, .08));
}

.eyebrow {
  margin: 0 0 13px;
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--coffee);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-panel h1,
.product-copy h1 {
  max-width: 680px;
  color: #fffdfc;
  font-size: clamp(45px, 4.75vw, 67px);
  line-height: .98;
}

.hero-lead {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 253, 252, .88);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.promo-ribbon {
  width: fit-content;
  margin-top: 20px;
  border: 1px solid rgba(255, 253, 252, .36);
  padding: 10px 14px;
  background: rgba(255, 253, 252, .12);
  color: rgba(255, 253, 252, .9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-ribbon strong {
  color: #fffdfc;
}

.button,
.shop-checkout-fallback,
.pin-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 19px;
  background: rgba(255, 253, 252, .96);
  color: var(--coffee);
  box-shadow: 0 14px 34px rgba(36, 31, 29, .12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.shop-checkout-fallback:hover,
.shop-checkout-fallback:focus-visible,
.pin-link:hover,
.pin-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(36, 31, 29, .18);
}

.button-dark,
.shop-checkout-fallback {
  border-color: var(--rose);
  background: var(--rose);
  color: #fffdfc;
}

.pin-link span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #bd081c;
  color: white;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.hero-pin {
  margin-top: 16px;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(30px, 4vw, 54px);
}

.showcase-card,
.page-card,
.detail-grid article,
.product-row article,
.policy-shell {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 252, .96);
  box-shadow: var(--shadow);
}

.page-card,
.detail-grid article,
.product-row article,
.story-band {
  opacity: 1;
  transform: none;
  transition: opacity 540ms ease, transform 540ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card {
  width: min(460px, 100%);
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 148px;
  padding: 14px;
}

.showcase-card:nth-child(2) {
  margin-left: 42px;
}

.showcase-card:nth-child(3) {
  margin-left: 18px;
}

.showcase-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: rgba(247, 241, 237, .66);
}

.showcase-card span,
.price-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.showcase-card strong,
.price-row strong {
  display: block;
  margin-top: 8px;
  color: var(--coffee);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-bottom: 10px solid var(--paper);
  background: var(--coffee);
}

.proof-strip span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 253, 252, .18);
  padding: 14px;
  color: #fffdfc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:last-child {
  border-right: 0;
}

.page-grid,
.detail-grid,
.product-row {
  display: grid;
  gap: 14px;
  padding: 54px 14px 14px;
}

.page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--coffee);
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 810px;
  margin: 0 auto 10px;
  color: #fffdfc;
  text-align: center;
}

.section-heading h2,
.story-band h2,
.detail-grid h2,
.product-row h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.04;
}

.section-heading h2 {
  color: #fffdfc;
}

.page-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 248px minmax(0, 1fr);
  overflow: hidden;
}

.page-card img {
  width: 100%;
  height: 248px;
  object-fit: contain;
  padding: 18px;
  background: rgba(239, 230, 224, .64);
}

.page-card div {
  padding: 24px;
}

.page-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.page-card p,
.story-band p,
.checkout-panel p,
.detail-grid p,
.product-row p,
.policy-shell p,
.policy-shell li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.66;
}

.text-link {
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 58px 64px;
  border-top: 10px solid var(--paper);
  background: var(--coffee);
}

.story-band h2,
.story-band p,
.story-band .eyebrow {
  color: white;
}

.story-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 252, .82);
  font-size: 18px;
}

.checkout-panel {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: center;
  margin: clamp(28px, 4vw, 52px);
  padding: 20px;
}

.cover-art {
  width: min(100%, 315px);
  justify-self: center;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  filter: drop-shadow(0 22px 34px rgba(36, 31, 29, .2));
}

.product-stage {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 253, 252, .46), rgba(239, 230, 224, .2)),
    rgba(255, 253, 252, .22);
  backdrop-filter: blur(8px);
}

.product-stage img {
  width: min(86%, 330px);
  max-height: 330px;
  object-fit: contain;
  animation: productHover 5.8s ease-in-out infinite;
}

.serum-stage img {
  width: min(80%, 290px);
  max-height: 350px;
}

.launch-note {
  margin: 0;
  border-left: 3px solid var(--rose);
  padding: 12px 14px;
  background: rgba(247, 241, 237, .74);
  color: var(--coffee);
  font-size: 14px;
  line-height: 1.55;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.wallet-express-slot {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  animation: payFloat 3.2s ease-in-out infinite;
}

.wallet-express-slot::before,
.shop-checkout-fallback:not(.disabled)::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  background: radial-gradient(circle, rgba(201, 149, 157, .38), transparent 70%);
  opacity: .86;
  filter: blur(10px);
}

.wallet-express-slot span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--coffee);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wallet-express-slot iframe {
  min-height: 52px;
}

.shop-checkout-fallback {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  animation: payFloat 3.2s ease-in-out infinite;
}

.shop-checkout-fallback.disabled,
.shop-checkout-fallback:disabled {
  border-color: #e9ded2;
  background: #e9ded2;
  color: #766a62;
  cursor: default;
  animation: none;
}

.checkout-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
}

.detail-grid article,
.product-row article {
  min-height: 250px;
  padding: 24px;
}

.detail-grid span {
  color: var(--rose-deep);
  font-family: Allura, cursive;
  font-size: 48px;
  line-height: 1;
}

.detail-grid h2,
.product-row h2 {
  margin-top: 12px;
  font-size: 28px;
}

.merch-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 300px;
}

.merch-stack img {
  width: 100%;
  min-width: 0;
  height: 300px;
  object-fit: contain;
  background: rgba(255, 253, 252, .18);
  padding: 8px;
}

.product-row {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.product-row article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
}

.product-row img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(255, 253, 252, .42), rgba(239, 230, 224, .12)),
    rgba(255, 253, 252, .16);
}

.product-row article.featured-product {
  border-color: rgba(201, 149, 157, .72);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .84), rgba(247, 241, 237, .66));
  backdrop-filter: blur(14px) saturate(1.06);
}

.product-row article.coming-soon {
  background: rgba(255, 253, 252, .48);
  backdrop-filter: blur(11px) saturate(1.02);
}

.product-row article.coming-soon img {
  filter: saturate(.6) opacity(.74);
}

.product-row article.coming-soon::after {
  content: "Coming soon";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .52);
  color: #fffdfc;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.product-row article.coming-soon > * {
  z-index: 1;
}

.product-card-checkout {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.compact-wallet {
  min-height: 50px;
  animation: none;
}

.compact-wallet span {
  min-height: 48px;
  font-size: 12px;
}

.compact-fallback {
  min-height: 48px;
  padding: 11px 16px;
}

.stripe-method-note {
  margin: -3px 0 0;
  color: rgba(255, 253, 252, .72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.soft-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  background: rgba(255, 253, 252, .88);
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.included-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  border-left: 3px solid var(--rose);
  padding: 4px 0 4px 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--cream);
}

.delivery-steps article {
  min-height: 190px;
}

.policy-wrap {
  padding: 54px 18px;
}

.policy-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
}

.policy-shell h1 {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}

.policy-shell h2 {
  margin-top: 30px;
  font-size: 28px;
}

.mft-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 24px;
  padding: 24px 34px;
  border: 1px solid rgba(179, 162, 151, .35);
  border-top: 0;
  background: var(--coffee);
  color: white;
}

.mft-footer video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .14;
}

.mft-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(36, 31, 29, .96), rgba(36, 31, 29, .82));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(450px, 1.3fr) minmax(300px, .78fr);
  gap: 18px;
  align-items: center;
}

.footer-inner > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-inner img {
  width: 64px;
  height: auto;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.footer-inner p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 253, 252, .78);
  font-size: 11px;
  line-height: 1.45;
}

.footer-inner nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 15px;
}

.footer-inner nav a {
  white-space: nowrap;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social .pin-link {
  background: rgba(255, 253, 252, .1);
  color: white;
  box-shadow: none;
}

@keyframes payFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes wallpaperBreath {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, 0, 0);
  }
}

@keyframes productHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1100px) {
  body.mft-shop-body > main,
  .mft-header,
  .mft-footer {
    width: min(100vw - 18px, 760px);
  }

  .hero-shell,
  .product-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-shell::before,
  .product-hero::before {
    background:
      linear-gradient(180deg, rgba(36, 31, 29, 0) 0 44%, rgba(36, 31, 29, .98) 44% 100%),
      linear-gradient(180deg, rgba(255, 253, 252, .14), rgba(36, 31, 29, .18));
  }

  .hero-panel,
  .product-copy {
    grid-column: 1;
    padding: 42px 34px;
  }

  .hero-panel {
    padding-top: 48%;
  }

  .product-copy {
    padding-top: calc(48% + 38px);
  }

  .hero-showcase {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 18px;
    background: var(--coffee);
  }

  .showcase-card,
  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    width: 100%;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .detail-grid,
  .product-row,
  .page-grid,
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .story-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    margin: 0 34px 34px;
  }
}

@media (max-width: 760px) {
  body.mft-shop-body > main,
  .mft-header,
  .mft-footer {
    width: calc(100vw - 18px);
  }

  .mft-header {
    top: 0;
    min-height: auto;
    flex-wrap: wrap;
    gap: 0;
  }

  .mft-header nav {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 14px 4px;
    font-size: 11px;
  }

  .mft-header nav a {
    padding: 14px 0;
  }

  .mft-header nav a::after {
    bottom: 8px;
  }

  .brand-lockup {
    width: 100%;
    min-height: 58px;
    padding: 8px 14px 4px;
  }

  .brand-lockup img {
    width: 42px;
    height: 42px;
  }

  .brand-lockup::after {
    display: none;
  }

  .hero-panel,
  .product-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button,
  .pin-link {
    width: 100%;
  }

  .promo-ribbon {
    width: 100%;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-showcase,
  .proof-strip,
  .merch-stack {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .showcase-card img {
    width: 108px;
    height: 108px;
  }

  .story-band,
  .mft-footer,
  .policy-wrap {
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-grid,
  .detail-grid,
  .product-row,
  .delivery-steps {
    padding-top: 42px;
  }

  .page-card {
    min-height: auto;
    grid-template-rows: 210px minmax(0, 1fr);
  }

  .page-card img {
    height: 210px;
  }

  .checkout-panel,
  .policy-shell {
    margin-right: 18px;
    margin-left: 18px;
    padding: 18px;
  }

  .footer-inner {
    gap: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .page-card,
  .detail-grid article,
  .product-row article,
  .story-band {
    opacity: 1;
    transform: none;
  }
}

.mft-shop-body * {
  letter-spacing: 0;
}

body.mft-shop-body {
  background:
    linear-gradient(180deg, #fffdfc 0%, #f6eee9 52%, #fffaf8 100%),
    var(--paper);
}

body.mft-shop-body::before {
  background:
    linear-gradient(115deg, rgba(201, 149, 157, .12), transparent 34%),
    linear-gradient(270deg, rgba(36, 31, 29, .06), transparent 42%);
}

main {
  border-color: rgba(179, 162, 151, .24);
  background: #fffaf8;
}

.shop-home {
  display: grid;
  gap: 24px;
  min-height: auto;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .96), rgba(247, 241, 237, .86)),
    var(--paper);
}

.home-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-intro h1 {
  color: var(--coffee);
  font-size: 3.45rem;
  line-height: .98;
}

.home-intro p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.home-intro .promo-ribbon,
.product-copy .promo-ribbon {
  border-color: rgba(169, 120, 128, .34);
  background: rgba(255, 253, 252, .86);
  color: var(--coffee);
}

.home-intro .promo-ribbon strong,
.product-copy .promo-ribbon strong {
  color: var(--rose-deep);
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.lane-card {
  display: grid;
  grid-template-rows: 240px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(179, 162, 151, .42);
  border-radius: 8px;
  background: rgba(255, 253, 252, .92);
  box-shadow: 0 18px 54px rgba(36, 31, 29, .1);
  animation: cardEnter 620ms ease both;
}

.lane-card:nth-child(2) {
  animation-delay: 90ms;
}

.lane-card:nth-child(3) {
  animation-delay: 180ms;
}

.lane-art {
  display: grid;
  place-items: center;
  padding: 22px;
  background: transparent;
}

.lane-art.transparent-art {
  background: transparent;
}

.lane-art img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(36, 31, 29, .16));
  animation: productHover 5.8s ease-in-out infinite;
}

.lane-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.lane-copy h2 {
  font-size: 2rem;
  line-height: 1;
}

.lane-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}

.lane-copy .button {
  width: 100%;
  margin-top: 8px;
}

.product-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .64fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-bottom: 8px solid var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .86)),
    var(--paper);
}

.product-hero::before {
  display: none;
}

.product-copy {
  grid-column: auto;
  padding: 32px;
  color: var(--coffee);
}

.product-copy h1 {
  max-width: 720px;
  color: var(--coffee);
  font-size: 3.25rem;
  line-height: .98;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.product-copy .hero-lead {
  color: var(--muted);
}

.checkout-panel {
  margin: 0;
  border: 1px solid rgba(179, 162, 151, .42);
  border-radius: 8px;
  background: rgba(255, 253, 252, .92);
  box-shadow: 0 18px 54px rgba(36, 31, 29, .11);
}

.product-stage {
  min-height: 330px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  backdrop-filter: none;
}

.product-stage img,
.product-row img,
.showcase-card img {
  background: transparent !important;
}

.hoodie-stage img {
  width: min(96%, 360px);
  max-height: 340px;
}

.serum-stage img {
  width: min(88%, 300px);
  max-height: 340px;
}

.cover-art {
  border-radius: 6px;
}

.detail-grid,
.delivery-steps,
.product-row {
  gap: 16px;
  padding: 14px;
  background:
    linear-gradient(180deg, #fffaf8, #f7f1ed);
}

.detail-grid article,
.delivery-steps article,
.product-row article {
  border-radius: 8px;
  background: rgba(255, 253, 252, .94);
}

.detail-grid article,
.product-row article {
  min-height: 235px;
}

.product-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.product-row article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: cardEnter 620ms ease both;
}

.product-row article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(36, 31, 29, .14);
}

.product-row img {
  height: 225px;
  padding: 16px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(36, 31, 29, .13));
}

.product-row article.featured-product {
  border-color: rgba(201, 149, 157, .64);
  background: rgba(255, 253, 252, .96);
  backdrop-filter: none;
}

.product-row article.coming-soon {
  background: rgba(255, 253, 252, .72);
  backdrop-filter: none;
}

.product-row article.coming-soon::after {
  border-radius: 8px;
  background: rgba(0, 0, 0, .56);
  font-size: 2rem;
  letter-spacing: 0;
}

.stripe-method-note {
  color: var(--muted);
  letter-spacing: 0;
}

.guide-library,
.consult-guidebook-lane {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 46px);
  border-top: 1px solid rgba(179, 162, 151, .35);
  background:
    linear-gradient(180deg, #fffdfc 0%, #f7f1ed 100%);
}

.guide-library-head {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.guide-library-head h2,
.consult-guidebook-lane h2 {
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: .98;
}

.guide-library-head p:not(.eyebrow),
.consult-guidebook-lane p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.guide-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(179, 162, 151, .4);
  border-radius: 8px;
  background: rgba(255, 253, 252, .94);
  box-shadow: 0 18px 54px rgba(36, 31, 29, .09);
  animation: cardEnter 620ms ease both;
}

.guide-card:nth-child(2) {
  animation-delay: 90ms;
}

.guide-card:nth-child(3) {
  animation-delay: 180ms;
}

.guide-card > span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(169, 120, 128, .35);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-card h3 {
  font-size: 2rem;
  line-height: 1;
}

.guide-card p,
.guide-card li {
  color: var(--muted);
  line-height: 1.58;
}

.guide-card p,
.guide-card ul {
  margin: 0;
}

.guide-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.guide-card .wallet-express-slot {
  margin-top: auto;
}

.guide-card .button {
  align-self: end;
  width: 100%;
}

.guide-card-free {
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .95));
}

.guide-card-paid {
  border-color: rgba(169, 120, 128, .55);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .96), rgba(239, 230, 224, .98));
}

.consult-guidebook-lane {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) auto;
  align-items: center;
  background: var(--coffee);
  color: #fffdfc;
}

.consult-guidebook-lane h2,
.consult-guidebook-lane .eyebrow {
  color: #fffdfc;
}

.consult-guidebook-lane p {
  color: rgba(255, 253, 252, .78);
}

.consult-guidebook-lane .button {
  white-space: nowrap;
  background: #fffdfc;
  color: var(--coffee);
}

.mft-footer {
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(135deg, rgba(36, 31, 29, .98), rgba(67, 54, 49, .96)),
    var(--coffee);
}

.mft-footer::after {
  display: none;
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .shop-home {
    min-height: auto;
    padding: 24px;
  }

  .home-intro h1,
  .product-copy h1 {
    font-size: 3rem;
  }

  .lane-grid,
  .guide-shelf,
  .product-hero,
  .product-row {
    grid-template-columns: 1fr;
  }

  .consult-guidebook-lane {
    grid-template-columns: 1fr;
  }

  .product-copy {
    padding: 24px;
  }

  .checkout-panel {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .shop-home {
    padding: 18px;
  }

  .home-intro h1,
  .product-copy h1 {
    font-size: 2.5rem;
  }

  .home-intro {
    text-align: left;
  }

  .home-intro .promo-ribbon {
    width: 100%;
  }

  .lane-card {
    grid-template-rows: 230px minmax(0, 1fr);
  }

  .lane-art img {
    max-height: 200px;
  }

  .product-hero {
    padding: 16px;
  }

  .product-copy {
    padding: 12px;
  }

  .product-stage {
    min-height: 270px;
  }

  .product-row img {
    height: 205px;
  }

  .guide-library,
  .consult-guidebook-lane {
    padding-right: 18px;
    padding-left: 18px;
  }

  .guide-card {
    min-height: auto;
    padding: 20px;
  }
}
