@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;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.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: "Newly available";
  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-grid-featured {
  max-width: 1120px;
  margin: 0 auto;
}

.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 h1,
.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));
}

.kindle-library {
  padding-top: clamp(38px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .94) 36%, rgba(255, 253, 252, .98)),
    var(--paper);
}

.kindle-library .guide-library-head {
  max-width: 920px;
  margin: 0 auto 8px;
  text-align: center;
}

.kindle-library .guide-library-head p:not(.eyebrow) {
  margin: 0 auto;
}

.kindle-library .guide-shelf {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.kindle-library .guide-card {
  min-height: 0;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .9));
}

.kindle-library .guide-card h3 {
  font-size: clamp(1.25rem, 1.65vw, 1.72rem);
}

.book-cover-frame {
  display: grid;
  place-items: center;
  min-height: 175px;
  margin: 0 0 6px;
  padding: 10px;
  border: 1px solid rgba(179, 162, 151, .35);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 252, .96), transparent 48%),
    linear-gradient(145deg, rgba(239, 230, 224, .6), rgba(255, 253, 252, .7));
}

.book-cover-frame img {
  width: min(100%, 136px);
  max-height: 154px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(36, 31, 29, .2));
}

.guide-card-coming {
  padding: 16px;
}

.guide-card-coming .photo-cover {
  min-height: 168px;
  margin: -2px -2px 2px;
}

.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,
  .coming-guidebook-grid,
  .product-hero,
  .product-row {
    grid-template-columns: 1fr;
  }

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

  .product-copy {
    padding: 24px;
  }

  .checkout-panel {
    margin: 0;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .coming-guidebook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@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;
  }
}

.dental-book-body {
  --dental-blue: #88c9e9;
  --dental-teal: #4fb8b5;
  --dental-coral: #f27665;
  --dental-yellow: #f6c95d;
}

.dental-book-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .48fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(136, 201, 233, .28), rgba(255, 253, 252, .9) 42%, rgba(242, 118, 101, .14)),
    var(--paper);
}

.dental-cover-frame {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(36, 31, 29, .16);
  background: #fff;
  box-shadow: var(--shadow);
}

.dental-cover-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dental-cover-title {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  max-width: 520px;
  color: var(--coffee);
  text-shadow: none;
}

.dental-cover-title p,
.dental-cover-title span {
  width: fit-content;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid rgba(36, 31, 29, .14);
  background: rgba(255, 255, 255, .78);
  font-weight: 800;
  text-transform: uppercase;
}

.dental-cover-title h1 {
  display: none;
}

.dental-cover-title strong {
  display: none;
}

.dental-book-checkout h2,
.shop-cart-panel h2,
.trace-book-controls h2 {
  color: var(--coffee);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.cart-actions,
.cart-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-actions {
  margin: 18px 0;
}

.cart-actions > .button,
.cart-actions > .shop-checkout-fallback {
  flex: 1 1 180px;
}

.embedded-checkout-shell {
  width: 100%;
  min-height: 620px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(36, 31, 29, .18);
  background: #fff;
}

.stripe-verified-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(62, 96, 77, 0.24);
  border-radius: 999px;
  color: #2f5f48;
  background: linear-gradient(135deg, rgba(230, 248, 239, 0.96), rgba(255, 255, 255, 0.92));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.made-for-this-shop-bubble {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.25rem);
  bottom: clamp(0.85rem, 2vw, 1.25rem);
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.52rem;
  width: min(176px, calc(100vw - 24px));
  padding: 0.52rem 0.62rem;
  color: #fffdfc;
  text-decoration: none;
  background: rgba(47, 42, 40, 0.92);
  border: 1px solid rgba(255, 253, 252, 0.22);
  box-shadow: 0 18px 42px rgba(47, 42, 40, 0.26);
  backdrop-filter: blur(16px);
}

.made-for-this-shop-bubble__icon {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #3f2a24;
  background: linear-gradient(135deg, #fffdfc, #d9c5bb);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.made-for-this-shop-bubble__copy {
  display: grid;
  gap: 0.08rem;
}

.made-for-this-shop-bubble__copy strong,
.made-for-this-shop-bubble__copy em {
  display: block;
  font-style: normal;
  line-height: 1.1;
}

.made-for-this-shop-bubble__copy strong {
  font-size: 0.84rem;
}

.made-for-this-shop-bubble__copy em {
  color: rgba(255, 253, 252, 0.72);
  font-size: 0.66rem;
}

.shop-cart-panel,
.trace-book-controls,
.educational-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(179, 162, 151, .35);
  background: #fffaf7;
}

.shop-cart-panel .cart-box {
  justify-content: flex-end;
  max-width: 440px;
}

.cart-box [data-cart-summary] {
  flex: 1 0 100%;
  padding: 13px 14px;
  border: 1px solid rgba(36, 31, 29, .14);
  background: rgba(255, 255, 255, .85);
  font-weight: 700;
}

.trace-book {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 34px);
  background: var(--cream);
}

.trace-page {
  min-height: 720px;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(36, 31, 29, .14);
  background:
    linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(79, 184, 181, .18) 58px 60px);
  box-shadow: 0 16px 50px rgba(36, 31, 29, .08);
}

.trace-page-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.trace-letter {
  display: grid;
  place-items: center;
  min-height: 140px;
  border: 4px dashed rgba(79, 184, 181, .5);
  color: transparent;
  -webkit-text-stroke: 2px var(--coffee);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(62px, 10vw, 110px);
  font-weight: 800;
  line-height: .85;
  background: rgba(255, 255, 255, .76);
}

.trace-page h2 {
  color: var(--coffee);
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
}

.trace-page p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.trace-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
  padding: 10px 0 18px;
  border-bottom: 3px solid rgba(36, 31, 29, .28);
}

.trace-line span {
  display: grid;
  place-items: center;
  min-height: 108px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(36, 31, 29, .55);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(60px, 9vw, 104px);
  font-weight: 800;
}

.color-box {
  min-height: 180px;
  margin-top: 28px;
  padding: 20px;
  border: 3px dashed rgba(242, 118, 101, .42);
  background: rgba(255, 255, 255, .65);
  color: var(--coffee);
  font-weight: 800;
}

.educational-note {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

/* July 2026 official Made For This shop refresh */
body.mft-shop-body[data-page="home"],
body.mft-shop-body[data-page="shop"] {
  background:
    linear-gradient(115deg, rgba(255, 253, 252, .95), rgba(247, 241, 237, .9) 42%, rgba(232, 219, 210, .82)),
    var(--cream);
}

body.mft-shop-body[data-page="home"] main,
body.mft-shop-body[data-page="shop"] main {
  overflow: hidden;
  border-color: rgba(179, 162, 151, .26);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 253, 252, .92), transparent 28%),
    linear-gradient(180deg, #fffdfc, #f6eee9 54%, #fffaf8);
}

body.mft-shop-body[data-page="home"] .mft-header,
body.mft-shop-body[data-page="shop"] .mft-header {
  border-radius: 0;
  background:
    linear-gradient(100deg, rgba(36, 31, 29, .98), rgba(49, 41, 38, .96)),
    var(--coffee);
}

body.mft-shop-body[data-page="home"] .shop-home,
body.mft-shop-body[data-page="shop"] .shop-home {
  position: relative;
  isolation: isolate;
  padding: clamp(32px, 5vw, 68px) clamp(18px, 4vw, 46px) clamp(26px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .82), rgba(255, 250, 248, .94)),
    url("./assets/wallpapers/home-poster.jpg") center / cover no-repeat;
}

body.mft-shop-body[data-page="home"] .shop-home::before,
body.mft-shop-body[data-page="shop"] .shop-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 252, .96), rgba(255, 253, 252, .76) 46%, rgba(36, 31, 29, .16)),
    radial-gradient(circle at 84% 18%, rgba(201, 149, 157, .22), transparent 26%);
}

body.mft-shop-body[data-page="home"] .home-intro,
body.mft-shop-body[data-page="shop"] .home-intro {
  max-width: 880px;
  margin: 0;
  text-align: left;
}

body.mft-shop-body[data-page="home"] .home-intro h1,
body.mft-shop-body[data-page="shop"] .home-intro h1 {
  max-width: 760px;
  color: var(--coffee);
  font-size: clamp(42px, 7vw, 82px);
  line-height: .9;
}

body.mft-shop-body[data-page="home"] .home-intro p,
body.mft-shop-body[data-page="shop"] .home-intro p {
  max-width: 680px;
  margin-left: 0;
  color: #5f534f;
  font-size: clamp(16px, 1.6vw, 20px);
}

body.mft-shop-body[data-page="home"] .lane-grid,
body.mft-shop-body[data-page="shop"] .lane-grid {
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(20px, 3vw, 38px);
}

body.mft-shop-body[data-page="home"] .lane-card,
body.mft-shop-body[data-page="shop"] .lane-card {
  position: relative;
  grid-template-rows: minmax(230px, auto) minmax(0, 1fr);
  border-radius: 0;
  border-color: rgba(179, 162, 151, .44);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .96), rgba(247, 241, 237, .88));
  box-shadow: 0 24px 70px rgba(36, 31, 29, .12);
}

body.mft-shop-body[data-page="home"] .lane-card::before,
body.mft-shop-body[data-page="shop"] .lane-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 253, 252, .72);
}

body.mft-shop-body[data-page="home"] .lane-art,
body.mft-shop-body[data-page="shop"] .lane-art {
  min-height: 230px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 253, 252, .94), transparent 34%),
    linear-gradient(140deg, rgba(239, 230, 224, .62), rgba(255, 253, 252, .36));
}

body.mft-shop-body[data-page="home"] .lane-art img,
body.mft-shop-body[data-page="shop"] .lane-art img {
  max-height: 235px;
  filter: drop-shadow(0 20px 30px rgba(36, 31, 29, .18));
}

body.mft-shop-body[data-page="home"] .lane-copy,
body.mft-shop-body[data-page="shop"] .lane-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-content: stretch;
  padding: 24px;
}

body.mft-shop-body[data-page="home"] .lane-copy h2,
body.mft-shop-body[data-page="shop"] .lane-copy h2 {
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

body.mft-shop-body[data-page="home"] .lane-copy p:not(.eyebrow),
body.mft-shop-body[data-page="shop"] .lane-copy p:not(.eyebrow) {
  line-height: 1.58;
}

body.mft-shop-body[data-page="home"] .lane-copy .button:last-child,
body.mft-shop-body[data-page="shop"] .lane-copy .button:last-child,
body.mft-shop-body[data-page="home"] .lane-copy .cart-actions,
body.mft-shop-body[data-page="shop"] .lane-copy .cart-actions {
  margin-top: auto;
}

body.mft-shop-body[data-page="home"] .cart-actions,
body.mft-shop-body[data-page="shop"] .cart-actions {
  width: 100%;
  margin-bottom: 0;
}

.lane-coming-soon {
  border-style: dashed;
}

.coming-guidebooks {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 52px);
  border-top: 1px solid rgba(179, 162, 151, .35);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .9)),
    var(--paper);
}

.coming-guidebooks__head {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.coming-guidebooks__head h2 {
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: .96;
}

.coming-guidebooks__head p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.coming-guidebook-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

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

.photo-cover {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  overflow: hidden;
  padding: 18px;
  isolation: isolate;
  background-image:
    linear-gradient(180deg, rgba(36, 31, 29, .05) 0%, rgba(36, 31, 29, .22) 38%, rgba(36, 31, 29, .82) 100%),
    var(--cover-image);
  background-position: center;
  background-size: cover;
}

.photo-cover::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 253, 252, .58);
  box-shadow: inset 0 0 0 1px rgba(36, 31, 29, .14);
}

.photo-cover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(36, 31, 29, .9));
}

.photo-cover span,
.photo-cover strong,
.photo-cover em {
  position: relative;
  color: #fffdfc;
  text-shadow: 0 2px 16px rgba(36, 31, 29, .48);
}

.photo-cover span {
  width: fit-content;
  margin-bottom: 7px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 253, 252, .5);
  background: rgba(36, 31, 29, .34);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.photo-cover strong {
  max-width: 12ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 900;
  line-height: .92;
}

.photo-cover em {
  margin-top: 10px;
  color: var(--rose);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.photo-cover-light {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 252, .18) 0%, rgba(36, 31, 29, .08) 30%, rgba(36, 31, 29, .7) 100%),
    var(--cover-image);
}

.photo-cover-cool {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 252, .05) 0%, rgba(52, 80, 91, .18) 42%, rgba(36, 31, 29, .82) 100%),
    var(--cover-image);
}

.waitlist-form {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.waitlist-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(179, 162, 151, .45);
  background: rgba(255, 253, 252, .96);
  color: var(--coffee);
  font: 700 14px Lora, Georgia, serif;
  letter-spacing: 0;
  padding: 10px 11px;
  text-transform: none;
}

.waitlist-form .checkout-status {
  min-height: 18px;
  margin: 0;
  color: var(--rose-deep);
  font-size: 12px;
  line-height: 1.35;
}

.waitlist-form-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}

.waitlist-panel,
.upcoming-book-hero,
.waitlist-report-main,
.upcoming-book-main {
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 52px);
  background: var(--paper);
}

.upcoming-book-hero {
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  align-items: center;
}

.upcoming-book-cover {
  display: grid;
  place-items: center;
  min-height: 560px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(179, 162, 151, .42);
  background:
    radial-gradient(circle at 20% 10%, rgba(221, 239, 245, .72), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 252, .98), rgba(240, 231, 224, .92));
  box-shadow: 0 24px 70px rgba(36, 31, 29, .14);
}

.upcoming-book-cover img {
  width: min(100%, 390px);
  max-height: 520px;
  object-fit: contain;
  box-shadow: 0 22px 58px rgba(36, 31, 29, .2);
}

.upcoming-book-hero h1,
.waitlist-report-head h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: .95;
}

.upcoming-book-hero p:not(.eyebrow),
.waitlist-report-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.book-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.book-preview-page {
  position: relative;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(179, 162, 151, .38);
  background:
    radial-gradient(circle at 82% 12%, rgba(188, 221, 233, .52), transparent 24%),
    linear-gradient(145deg, rgba(255, 253, 252, .98), rgba(247, 241, 237, .92));
  box-shadow: 0 18px 46px rgba(36, 31, 29, .1);
}

.book-preview-page[data-tone="2"] {
  background:
    radial-gradient(circle at 16% 16%, rgba(223, 197, 181, .58), transparent 25%),
    linear-gradient(145deg, rgba(255, 251, 247, .98), rgba(239, 232, 224, .95));
}

.book-preview-page[data-tone="3"] {
  background:
    radial-gradient(circle at 84% 20%, rgba(203, 222, 211, .62), transparent 26%),
    linear-gradient(145deg, rgba(253, 253, 248, .99), rgba(236, 242, 236, .94));
}

.book-preview-page[data-tone="4"] {
  background:
    radial-gradient(circle at 14% 82%, rgba(212, 226, 242, .7), transparent 28%),
    linear-gradient(145deg, rgba(253, 251, 247, .99), rgba(232, 238, 244, .94));
}

.book-preview-page[data-tone="5"] {
  background:
    radial-gradient(circle at 80% 80%, rgba(211, 186, 154, .5), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 249, .99), rgba(242, 234, 224, .94));
}

.page-number {
  color: var(--rose-deep);
  font-family: Allura, cursive;
  font-size: 46px;
}

.page-mini-visual {
  display: flex;
  gap: 7px;
  margin: 10px 0 18px;
}

.page-mini-visual span {
  display: block;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: rgba(61, 44, 37, .18);
}

.page-mini-visual span:nth-child(2) {
  width: 76px;
  background: rgba(151, 116, 82, .28);
}

.page-mini-visual span:nth-child(3) {
  width: 34px;
  background: rgba(141, 166, 163, .4);
}

.book-preview-page h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.book-preview-page p {
  color: var(--muted);
  line-height: 1.65;
}

.page-example {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(179, 162, 151, .38);
  background: rgba(255, 255, 255, .66);
}

.page-example strong {
  color: var(--coffee);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-example span {
  color: var(--ink);
  font-size: .95rem;
  line-height: 1.5;
}

.coming-cover {
  min-height: 260px;
}

.coming-cover img {
  width: min(100%, 170px);
  max-height: 240px;
}

.waitlist-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.waitlist-stat {
  padding: 16px;
  border: 1px solid rgba(179, 162, 151, .36);
  background: rgba(255, 253, 252, .94);
}

.waitlist-stat strong {
  display: block;
  color: var(--coffee);
  font-size: 2rem;
}

.waitlist-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(179, 162, 151, .36);
  background: rgba(255, 253, 252, .96);
}

.waitlist-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.waitlist-table th,
.waitlist-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(179, 162, 151, .28);
  text-align: left;
  vertical-align: top;
}

.waitlist-table th {
  color: var(--rose-deep);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coming-soon-cover {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 252, .94), transparent 36%),
    linear-gradient(140deg, rgba(239, 230, 224, .7), rgba(255, 253, 252, .48));
}

.coming-soon-cover img {
  width: min(82%, 190px);
  max-height: 245px;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 22px 38px rgba(36, 31, 29, .18);
  animation: none;
}

.guide-placeholder {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  color: var(--coffee);
}

.guide-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(36, 31, 29, .16);
  background:
    linear-gradient(180deg, rgba(255, 253, 252, .82), rgba(255, 253, 252, .44)),
    repeating-linear-gradient(0deg, rgba(36, 31, 29, .08) 0 1px, transparent 1px 28px);
  box-shadow: inset 0 0 0 10px rgba(255, 253, 252, .45);
}

.guide-placeholder::after {
  content: "Coming Soon";
  position: absolute;
  right: 35px;
  bottom: 36px;
  color: rgba(36, 31, 29, .62);
  font-family: Allura, cursive;
  font-size: 34px;
  line-height: 1;
}

.guide-placeholder span {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 31, 29, .18);
  border-radius: 50%;
  background: rgba(255, 253, 252, .88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 800;
}

.guide-placeholder-reset {
  background: linear-gradient(135deg, #f7f1ed, #e9dcd4);
}

.guide-placeholder-ortho {
  background: linear-gradient(135deg, #edf6fb, #d9e8ee);
}

.guide-placeholder-mom {
  background: linear-gradient(135deg, #fff5f5, #ead8d8);
}

.guide-placeholder-garden {
  background: linear-gradient(135deg, #eef4e7, #dbe7ce);
}

.guide-placeholder-faith {
  background: linear-gradient(135deg, #f7f0ff, #e7dce8);
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) main {
  overflow: visible;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) h1,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) h2,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) h3 {
  line-height: 1.08;
  overflow-wrap: anywhere;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .product-hero {
  align-items: stretch;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .product-copy,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .checkout-panel,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .guide-card,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .cart-box {
  min-width: 0;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .checkout-panel {
  align-self: stretch;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .hero-actions,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .cart-actions {
  align-items: stretch;
}

body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .hero-actions .button,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .cart-actions .button,
body.mft-shop-body:not([data-page="home"]):not([data-page="shop"]) .cart-actions .shop-checkout-fallback {
  flex: 1 1 190px;
}

.guide-shelf {
  align-items: stretch;
}

.guide-card {
  min-width: 0;
  min-height: auto;
}

.guide-card h3 {
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.guide-card .button,
.guide-card button.button,
.guide-card .wallet-express-slot {
  margin-top: 0;
}

.guide-card > .button:first-of-type,
.guide-card > button.button:first-of-type,
.guide-card .wallet-express-slot {
  margin-top: auto;
}

@media (max-width: 1180px) {
  body.mft-shop-body[data-page="home"] .lane-grid,
  body.mft-shop-body[data-page="shop"] .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.mft-shop-body[data-page="guidebook"] > main,
  body.mft-shop-body[data-page="guidebook"] .mft-header,
  body.mft-shop-body[data-page="guidebook"] .mft-footer {
    width: min(100%, calc(100vw - 12px));
  }

  .kindle-library {
    padding: 24px 12px 28px;
  }

  .kindle-library .guide-library-head {
    max-width: 340px;
    margin-bottom: 2px;
  }

  .kindle-library .guide-library-head h1 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: .98;
  }

  .kindle-library .guide-library-head p:not(.eyebrow) {
    font-size: .9rem;
    line-height: 1.45;
  }

  .kindle-library .guide-shelf {
    width: min(100%, 360px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kindle-library .guide-card {
    gap: 10px;
    padding: 12px;
  }

  .kindle-library .guide-card > span {
    padding: 5px 6px;
    font-size: 9px;
    line-height: 1.1;
  }

  .kindle-library .guide-card h3 {
    font-size: clamp(1.28rem, 7vw, 1.8rem);
    line-height: 1.03;
  }

  .kindle-library .guide-card p,
  .kindle-library .guide-card li {
    font-size: .88rem;
    line-height: 1.42;
  }

  .kindle-library .guide-card ul {
    gap: 4px;
    padding-left: 14px;
  }

  .kindle-library .book-cover-frame {
    min-height: 190px;
    padding: 10px;
  }

  .kindle-library .book-cover-frame img {
    width: min(100%, 138px);
    max-height: 168px;
  }

  .kindle-library .guide-card-coming .photo-cover {
    min-height: 210px;
    padding: 14px;
  }

  .kindle-library .photo-cover span {
    padding: 5px 7px;
    font-size: 8px;
  }

  .kindle-library .photo-cover strong {
    max-width: 12ch;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .kindle-library .photo-cover em {
    margin-top: 7px;
    font-size: 9px;
  }

  .kindle-library .wallet-express-slot {
    min-height: 42px;
  }

  .kindle-library .wallet-express-slot span {
    min-height: 40px;
    padding: 8px 6px;
    font-size: 9px;
    line-height: 1.18;
    letter-spacing: .04em;
  }

  .kindle-library .guide-card .button,
  .kindle-library .guide-card button.button {
    min-height: 42px;
    padding: 11px 10px;
    font-size: 11px;
    line-height: 1.15;
  }

  body.mft-shop-body[data-page="guidebook"] .shop-cart-panel {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  body.mft-shop-body[data-page="guidebook"] .shop-cart-panel h2 {
    font-size: clamp(1.65rem, 9vw, 2.25rem);
  }
}

@media (max-width: 680px) {
  body.mft-shop-body[data-page="home"] .shop-home,
  body.mft-shop-body[data-page="shop"] .shop-home {
    padding: 24px 14px;
  }

  body.mft-shop-body[data-page="home"] .lane-grid,
  body.mft-shop-body[data-page="shop"] .lane-grid {
    grid-template-columns: 1fr;
  }

  body.mft-shop-body[data-page="home"] .lane-card,
  body.mft-shop-body[data-page="shop"] .lane-card {
    grid-template-rows: 220px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .upcoming-book-hero,
  .waitlist-panel {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .upcoming-book-cover {
    min-height: 360px;
  }

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

  .waitlist-form-wide,
  .waitlist-stats {
    grid-template-columns: 1fr;
  }

  .waitlist-report-main,
  .upcoming-book-main {
    padding: 16px 8px;
  }

  .dental-book-hero,
  .shop-cart-panel,
  .trace-book-controls {
    grid-template-columns: 1fr;
  }

  .dental-cover-frame {
    min-height: 560px;
  }

  .shop-cart-panel .cart-box {
    justify-content: flex-start;
    max-width: none;
  }

  .trace-page-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .made-for-this-shop-bubble {
    left: auto;
    right: 0.75rem;
    bottom: 0.75rem;
    width: 170px;
  }

  .book-page-grid {
    grid-template-columns: 1fr;
  }

  .book-preview-page {
    min-height: 190px;
  }

  .upcoming-book-hero h1,
  .waitlist-report-head h1 {
    font-size: clamp(2.15rem, 13vw, 3.4rem);
  }
}

@media print {
  .mft-header,
  .mft-footer,
  .dental-book-hero,
  .shop-cart-panel,
  .trace-book-controls,
  .educational-note,
  .codee-suite-toolbar {
    display: none !important;
  }

  body.mft-shop-body,
  main,
  .trace-book {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
  }

  .trace-page {
    min-height: auto;
    width: 8.5in;
    height: 11in;
    page-break-after: always;
    break-after: page;
    box-shadow: none;
  }
}
