@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Baloo+2:wght@700;800&family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --ink: #20332d;
  --ink-soft: #5f6e68;
  --cream: #f7f2e9;
  --paper: #fffdf8;
  --white: #fff;
  --sage: #dfe8dc;
  --sage-deep: #3f6257;
  --terracotta: #c96f55;
  --rose: #eec8bd;
  --yellow: #f1d883;
  --blue: #bed9d7;
  --plum: #432442;
  --violet: #8f52d2;
  --berry: #d84692;
  --berry-soft: #f9e5f1;
  --lavender: #eadff2;
  --apricot: #ffbf67;
  --line: rgba(32, 51, 45, .14);
  --shadow: 0 24px 70px rgba(52, 47, 38, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.cart-open, body.preview-lightbox-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.preview-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 20px;
  color: #5b351e;
  background: #ffe7b3;
  font-size: 13px;
  text-align: center;
}
.preview-bar strong { text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }

.site-header, .checkout-header {
  max-width: 1440px;
  min-height: 82px;
  margin: 0 auto;
  padding: 15px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--paper);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark {
  width: 46px;
  height: 58px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(48, 25, 54, .13));
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: "Fraunces", serif; font-size: 19px; }
.brand small { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.main-nav a { position: relative; color: #394b45; font-size: 14px; font-weight: 600; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--terracotta); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.cart-button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.cart-button strong { width: 26px; height: 26px; display: grid; place-items: center; color: white; background: var(--terracotta); border-radius: 50%; font-size: 12px; }
.cart-button--floating {
  position: fixed;
  z-index: 80;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  padding: 11px 12px 11px 18px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 14px 38px rgba(32, 51, 45, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.96);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cart-button--floating.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: floating-cart-wobble 3.8s .25s ease-in-out infinite;
}
body.cart-open .cart-button--floating { opacity: 0; visibility: hidden; pointer-events: none; }

.eyebrow { margin: 0 0 15px; color: var(--terracotta); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "Fraunces", Georgia, serif; letter-spacing: -.025em; }

.hero {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 105px) clamp(20px, 5vw, 72px) clamp(72px, 8vw, 120px);
  background:
    radial-gradient(circle at 92% 8%, rgba(238, 200, 189, .6), transparent 30%),
    radial-gradient(circle at 4% 92%, rgba(190, 217, 215, .55), transparent 28%),
    var(--cream);
}
.hero::before { content: ""; position: absolute; width: 220px; height: 220px; right: -110px; bottom: -110px; border: 1px solid rgba(32,51,45,.13); border-radius: 50%; box-shadow: 0 0 0 38px rgba(32,51,45,.03), 0 0 0 76px rgba(32,51,45,.025); }
.hero__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: 52px;
}
.hero__copy { min-width: 0; max-width: 720px; }
.hero h1 { max-width: 760px; margin-bottom: 23px; font-size: clamp(46px, 6.1vw, 86px); line-height: .98; }
.hero__lead { max-width: 680px; margin: 0; color: var(--ink-soft); font-size: clamp(17px, 2vw, 21px); line-height: 1.55; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 18px 30px; margin-top: 30px; color: #3a5149; font-size: 13px; font-weight: 600; }
.hero__proof span { display: flex; align-items: center; gap: 8px; }
.hero__proof i { width: 21px; height: 21px; display: grid; place-items: center; color: white; background: var(--berry); border-radius: 50%; font-size: 11px; font-style: normal; }
.hero__mood {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(52, 47, 38, .18);
}
.hero__mood::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: inherit;
  pointer-events: none;
}
.hero__mood img { width: 100%; height: 100%; display: block; object-fit: cover; }

.configurator {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(350px, .9fr) minmax(520px, 1.1fr);
  min-height: 650px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(32,51,45,.1);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.product-preview-wrap { min-width: 0; display: flex; flex-direction: column; background: #f3e9ee; }
.product-preview {
  position: relative;
  flex: 1;
  min-height: 630px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 65px 35px 55px;
  overflow: hidden;
  background: linear-gradient(145deg, #f6e9f1 0%, var(--lavender) 52%, #f7eadf 100%);
}
.product-preview-note { margin: 0; padding: 11px 24px 13px; color: rgba(54,80,71,.72); border-top: 1px solid rgba(32,51,45,.08); font-size: 10px; line-height: 1.45; text-align: center; }
.product-preview::before { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.14), 0 0 0 84px rgba(255,255,255,.09); }
.product-preview__asset { position: relative; z-index: 1; }
.product-preview__asset--jar { width: min(100%, 410px); }
.product-preview__asset--sticker { width: min(100%, 470px); }
.product-preview__asset--personalization { width: min(100%, 520px); overflow: hidden; border: 10px solid rgba(255,255,255,.88); border-radius: 18px; box-shadow: 0 24px 45px rgba(49,55,48,.18); }
.product-preview__design-image { width: 100%; max-height: 535px; display: block; object-fit: contain; border-radius: 22px; box-shadow: 0 24px 45px rgba(49,55,48,.2); }
.product-preview__sticker-image { width: 100%; max-height: 360px; display: block; object-fit: contain; border: 10px solid rgba(255,255,255,.88); border-radius: 18px; box-shadow: 0 24px 45px rgba(49,55,48,.18); user-select: none; -webkit-user-drag: none; }
.product-preview__personalization-image { width: 100%; display: block; aspect-ratio: 1280 / 533; object-fit: cover; }
.personalization-preview {
  position: absolute;
  z-index: 3;
  left: 50%;
  width: 76%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b3d18;
  text-align: center;
  line-height: .92;
  pointer-events: none;
  isolation: isolate;
}
.personalization-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22% -15%;
  background: radial-gradient(ellipse, rgba(255,255,255,.98) 0 47%, rgba(255,255,255,.82) 65%, transparent 76%);
}
.personalization-preview [data-personalization-preview-line1],
.personalization-preview [data-personalization-preview-line2] {
  width: 100%;
  display: block;
  text-align: center;
  transform-origin: 50% 50%;
}
.personalization-preview [data-personalization-preview-line1] { max-width: 100%; font-family: "Alex Brush", cursive; font-size: clamp(37px, 5vw, 62px); font-weight: 400; white-space: nowrap; transform: translateX(var(--line-optical-offset, 0px)) scaleX(var(--line1-scale, 1)); }
.personalization-preview [data-personalization-preview-line2] { max-width: 100%; font-family: "Baloo 2", "DM Sans", sans-serif; font-size: clamp(24px, 3.5vw, 42px); font-weight: 800; letter-spacing: -.055em; white-space: nowrap; transform: translateX(var(--line-optical-offset, 0px)) scaleX(var(--line2-scale, 1)); }
.personalization-preview--jar { top: 42%; }
.personalization-preview--sticker { top: 50%; width: 62%; }
.personalization-preview--artwork { top: 50%; width: 56%; gap: 1px; }
.personalization-preview--artwork::before { inset: -31% -16%; border-radius: 50%; background: #fff; }
.personalization-preview--artwork [data-personalization-preview-line1] { font-size: clamp(40px, 4.2vw, 56px); line-height: .78; }
.personalization-preview--artwork [data-personalization-preview-line2] { font-size: clamp(27px, 2.8vw, 38px); line-height: .9; }
.preview-spark { position: absolute; z-index: 2; color: rgba(32,51,45,.35); font-size: 26px; }
.preview-spark--one { top: 16%; left: 15%; }
.preview-spark--two { right: 13%; bottom: 22%; font-size: 17px; }
.preview-caption { position: absolute; left: 25px; bottom: 22px; z-index: 2; padding: 8px 13px; color: #365047; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; backdrop-filter: blur(8px); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.mobile-floating-preview { display: none; }
.mobile-preview-lightbox { position: fixed; z-index: 140; inset: 0; padding: 54px 16px 24px; display: grid; place-items: center; background: rgba(22,29,26,.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.mobile-preview-lightbox__close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--ink); background: white; box-shadow: 0 8px 24px rgba(0,0,0,.22); font-size: 27px; line-height: 1; cursor: pointer; }
.mobile-preview-lightbox figure { max-width: min(92vw, 560px); max-height: calc(100vh - 86px); margin: 0; padding: 10px 10px 8px; display: flex; flex-direction: column; gap: 8px; background: var(--paper); border-radius: 20px; box-shadow: 0 28px 70px rgba(0,0,0,.34); }
.mobile-preview-lightbox__asset { position: relative; display: block; }
.mobile-preview-lightbox img { max-width: 100%; max-height: calc(100vh - 135px); display: block; object-fit: contain; border-radius: 13px; user-select: none; -webkit-user-drag: none; }
.personalization-preview--lightbox { top: 42%; }
.mobile-preview-lightbox figure.is-sticker .personalization-preview--lightbox { top: 50%; width: 62%; }
.mobile-preview-lightbox figure.is-personalization .personalization-preview--lightbox { top: 50%; width: 56%; }
.mobile-preview-lightbox figure.is-personalization .personalization-preview--lightbox::before { inset: -31% -16%; border-radius: 50%; background: #fff; }
.mobile-preview-lightbox figcaption { padding: 0 6px 3px; color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-align: center; }

.jar { position: relative; z-index: 1; width: 290px; filter: drop-shadow(0 28px 25px rgba(50,61,51,.2)); }
.jar__lid { position: relative; z-index: 3; width: 237px; height: 48px; margin: 0 auto -2px; background: linear-gradient(#8a6750 0 18%, #b48b68 19% 56%, #8b654b 57% 65%, #a77d5c 66%); border-radius: 9px 9px 18px 18px; border: 1px solid rgba(62,38,26,.27); box-shadow: inset 0 4px 5px rgba(255,255,255,.2); }
.jar__lid::before { content: ""; position: absolute; inset: 7px 28px 20px; border-radius: 50%; background: rgba(64,43,31,.24); }
.jar__lid span { position: absolute; left: 50%; top: 7px; width: 22px; height: 8px; transform: translateX(-50%); border-radius: 50%; background: #5d4435; box-shadow: inset 0 2px 3px rgba(0,0,0,.3); }
.jar__neck { width: 210px; height: 32px; margin: 0 auto -10px; border: 3px solid rgba(255,255,255,.78); border-bottom: 0; border-radius: 13px 13px 0 0; background: rgba(255,255,255,.3); }
.jar__body { position: relative; height: 385px; overflow: hidden; border: 4px solid rgba(255,255,255,.82); border-radius: 40px 40px 66px 66px; background: linear-gradient(100deg, rgba(255,255,255,.62), rgba(240,249,246,.15) 36%, rgba(255,255,255,.45) 80%); box-shadow: inset 0 -25px 25px rgba(255,255,255,.3); }
.jar__shine { position: absolute; z-index: 4; top: 20px; bottom: 45px; left: 22px; width: 15px; border-radius: 50%; background: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.75), rgba(255,255,255,.12)); transform: rotate(2deg); }
.jar__cookies { position: absolute; inset: auto 9px 5px; height: 172px; opacity: .9; }
.jar__cookies span { position: absolute; width: 78px; height: 64px; border: 2px solid #a96e35; border-radius: 45% 52% 41% 48%; background: radial-gradient(circle at 28% 34%, #8e572b 0 3px, transparent 4px), radial-gradient(circle at 65% 55%, #8e572b 0 3px, transparent 4px), #d79b5a; box-shadow: inset 0 0 0 4px rgba(255,255,255,.15); }
.jar__cookies span:nth-child(1) { left: 12px; bottom: 4px; transform: rotate(-12deg); }
.jar__cookies span:nth-child(2) { left: 75px; bottom: 1px; transform: rotate(15deg); }
.jar__cookies span:nth-child(3) { right: 12px; bottom: 7px; transform: rotate(-5deg); }
.jar__cookies span:nth-child(4) { left: 45px; bottom: 65px; transform: rotate(7deg); }
.jar__cookies span:nth-child(5) { right: 43px; bottom: 67px; transform: rotate(-18deg); }
.jar__cookies span:nth-child(6) { left: 106px; bottom: 106px; transform: rotate(5deg); }
.jar__label, .sticker-sheet__label {
  position: absolute;
  z-index: 3;
  left: 26px;
  right: 26px;
  top: 82px;
  min-height: 145px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 48% 52% 45% 55% / 53% 45% 55% 47%;
  text-align: center;
  transition: background .2s ease, color .2s ease;
  box-shadow: 0 8px 18px rgba(50,45,35,.13);
}
.jar__label strong, .sticker-sheet__label strong { font-family: "Fraunces", serif; font-size: 26px; line-height: 1.05; }
.jar__label small { margin-top: 8px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.label__ornament { margin-bottom: 5px; font-size: 17px; }
.label--classic { color: #4b382b; background: #f1dfbd; border: 2px solid rgba(75,56,43,.3); }
.label--paws { color: #6e3b42; background: #efc4be; border: 2px solid rgba(110,59,66,.25); }
.label--paws .label__ornament::after { content: "  ·  ♡  ·  "; }
.label--confetti { color: #244d53; background: #bcdde0; border: 2px dashed rgba(36,77,83,.45); }

.sticker-sheet { position: relative; z-index: 1; width: 290px; height: 385px; padding: 28px; transform: rotate(-2deg); border: 1px solid rgba(32,51,45,.18); border-radius: 13px; background: #fffdf8; box-shadow: 14px 25px 35px rgba(45,55,48,.18); }
.sticker-sheet::after { content: ""; position: absolute; inset: 11px; border: 1px dashed rgba(32,51,45,.17); border-radius: 8px; }
.sticker-sheet__hint { position: relative; z-index: 2; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.sticker-sheet__label { top: 57px; left: 28px; right: 28px; min-height: 140px; }
.sticker-sheet__label span { font-size: 17px; }
.sticker-sheet i { position: absolute; z-index: 2; display: grid; place-items: center; color: #596b65; background: #e9e2d4; border: 1px dashed #8b8174; font-size: 10px; font-style: normal; text-transform: uppercase; }
.sticker-sheet i:nth-of-type(1) { width: 88px; height: 48px; left: 25px; bottom: 66px; border-radius: 40%; transform: rotate(-5deg); }
.sticker-sheet i:nth-of-type(2) { width: 66px; height: 66px; right: 31px; bottom: 83px; border-radius: 50%; transform: rotate(4deg); }
.sticker-sheet i:nth-of-type(3) { width: 68px; height: 56px; left: 106px; bottom: 18px; border-radius: 48% 52% 50% 50%; }

.configurator__panel { min-width: 0; padding: clamp(30px, 4vw, 55px); display: flex; flex-direction: column; background: var(--white); }
.step-heading { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.step-heading > span { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-family: "Fraunces", serif; font-size: 13px; }
.step-heading div { display: flex; flex-direction: column; gap: 3px; }
.step-heading strong { font-family: "Fraunces", serif; font-size: 18px; }
.step-heading small { color: var(--ink-soft); font-size: 12px; }
.step-heading--compact { margin-bottom: 13px; }
.config-section { margin-top: 27px; padding-top: 24px; border-top: 1px solid var(--line); }
.product-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.product-choice { position: relative; min-height: 105px; padding: 20px 13px 13px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 9px; border: 1px solid var(--line); border-radius: 15px; background: #fff; text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.product-choice:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,55,49,.08); }
.product-choice.is-selected { border: 2px solid var(--ink); padding: 19px 12px 12px; background: #f8faf7; box-shadow: 0 0 0 3px rgba(63,98,87,.08); }
.product-choice em { position: absolute; top: -9px; left: 10px; padding: 3px 8px; color: white; background: var(--terracotta); border-radius: 999px; font-size: 8px; font-weight: 800; font-style: normal; letter-spacing: .04em; text-transform: uppercase; }
.product-choice span { font-size: 13px; font-weight: 700; line-height: 1.2; }
.product-choice > strong { font-family: "Fraunces", serif; font-size: 16px; }
.product-choice > strong small { color: var(--ink-soft); font-family: "DM Sans", sans-serif; font-size: 9px; font-weight: 600; }
.config-option-group { display: flex; flex-direction: column; gap: 9px; }
.config-option-group__label { color: var(--ink-soft); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.size-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.size-choice { min-width: 0; padding: 14px 15px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; color: var(--ink); border: 1px solid var(--line); border-radius: 13px; background: white; text-align: left; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.size-choice:hover { transform: translateY(-1px); box-shadow: 0 7px 16px rgba(42,55,49,.07); }
.size-choice.is-selected { padding: 13px 14px; border: 2px solid var(--ink); background: #f8faf7; box-shadow: 0 0 0 3px rgba(63,98,87,.08); }
.size-choice.is-disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.size-choice strong { font-family: "Fraunces", serif; font-size: 14px; }
.size-choice small { color: var(--ink-soft); font-size: 9px; line-height: 1.4; }
.design-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.design-choice { min-width: 0; min-height: 86px; padding: 10px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: white; text-align: left; cursor: pointer; }
.design-choice.is-selected { border: 2px solid var(--ink); padding: 9px; background: #f8faf7; }
.design-choice i { width: 48px; height: 48px; flex: 0 0 auto; border-radius: 50%; }
.design-choice img { width: 58px; height: 68px; flex: 0 0 auto; object-fit: cover; border-radius: 10px; box-shadow: 0 3px 8px rgba(32,51,45,.15); }
.design-choice img.is-sticker { width: 82px; height: 56px; }
.design-choice span { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.design-choice strong { font-size: 11px; line-height: 1.25; overflow-wrap: anywhere; }
.design-choice small { overflow: hidden; color: var(--ink-soft); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.personalization-switch { display: grid; grid-template-columns: 1fr 1fr; padding: 4px; background: #edf0eb; border-radius: 13px; }
.personalization-switch button { padding: 10px; border: 0; border-radius: 10px; background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.personalization-switch button.is-selected { background: white; box-shadow: 0 3px 10px rgba(40,55,48,.1); }
.personalization-switch button:disabled { opacity: .45; cursor: not-allowed; }
.personalization-fields { margin-top: 13px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.personalization-field { min-width: 0; display: flex; flex-direction: column; gap: 6px; color: var(--ink); font-size: 11px; font-weight: 700; }
.personalization-field input, .card-option input, .card-option select, .form-grid input, .note-label textarea, .coupon-line input { width: 100%; padding: 12px 13px; color: var(--ink); border: 1px solid rgba(32,51,45,.25); border-radius: 10px; outline: none; background: white; }
.personalization-field input:focus, .card-option input:focus, .card-option select:focus, .form-grid input:focus, .note-label textarea:focus, .coupon-line input:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(63,98,87,.12); }
.personalization-field small { color: var(--ink-soft); font-weight: 500; }
.personalization-suggestions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.personalization-suggestions > span { margin-right: 2px; color: var(--ink-soft); font-size: 9px; font-weight: 700; }
.personalization-suggestions > div { display: flex; flex-wrap: wrap; gap: 6px; }
.personalization-suggestions button { padding: 6px 9px; color: var(--sage-deep); border: 1px solid rgba(63,98,87,.2); border-radius: 999px; background: #f5f8f3; font-size: 9px; font-weight: 800; cursor: pointer; }
.personalization-suggestions button:hover, .personalization-suggestions button.is-selected { color: white; border-color: var(--sage-deep); background: var(--sage-deep); }
.personalization-fields__preview { grid-column: 1 / -1; margin: 0; padding: 9px 11px; color: var(--ink-soft); background: var(--cream); border-radius: 9px; font-size: 10px; }
.personalization-fields__preview strong { color: var(--ink); }
.personalization-fields__note { grid-column: 1 / -1; margin: -3px 2px 0; padding-left: 18px; position: relative; color: var(--ink-soft); font-size: 9px; font-weight: 500; line-height: 1.5; }
.personalization-fields__note::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--terracotta); font-size: 10px; }
.product-details__heading { margin-bottom: 13px; display: flex; flex-direction: column; gap: 2px; }
.product-details__heading span { color: var(--terracotta); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-details__heading strong { font-family: "Fraunces", serif; font-size: 17px; }
.product-details dl { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
.product-details dl div { min-width: 0; padding-bottom: 7px; border-bottom: 1px solid var(--line); }
.product-details dt { color: var(--ink-soft); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-details dd { margin: 3px 0 0; font-size: 11px; font-weight: 700; line-height: 1.35; }
.configurator__footer { margin-top: auto; padding-top: 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 20px; }
.configurator__footer > div { display: flex; flex-direction: column; gap: 3px; }
.configurator__footer small { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.configurator__footer > div > strong { max-width: 330px; font-size: 12px; }
.configurator__price { text-align: right; }
.configurator__price strong { font-family: "Fraunces", serif; font-size: 25px !important; }
.stock-notice { grid-column: 1 / -1; justify-self: start; margin: 3px 0 0; padding: 7px 10px; display: inline-flex; align-items: center; gap: 7px; color: #9b4936; background: #fff1ec; border-radius: 999px; font-size: 11px; font-weight: 800; }
.stock-notice::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; background: var(--terracotta); border-radius: 50%; box-shadow: 0 0 0 4px rgba(201,111,85,.13); }
.primary-button { min-height: 48px; padding: 13px 21px; display: inline-flex; align-items: center; justify-content: center; color: white; background: var(--ink); border: 0; border-radius: 999px; box-shadow: 0 8px 16px rgba(32,51,45,.16); font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s, background .18s; }
.primary-button:hover { background: #2d5045; transform: translateY(-1px); }
.primary-button:disabled { opacity: .48; cursor: not-allowed; transform: none; }
.configurator__footer .primary-button { grid-column: 1 / -1; width: 100%; margin-top: 10px; background: var(--terracotta); }
.configurator__footer .primary-button:hover { background: #b75d43; }
.cutter-upsell { margin-top: 20px; padding: 16px; border: 1px solid rgba(63,98,87,.16); border-radius: 17px; background: linear-gradient(135deg, rgba(223,232,220,.72), rgba(255,253,248,.92)); }
.cutter-upsell__heading { margin-bottom: 11px; display: flex; flex-direction: column; gap: 2px; }
.cutter-upsell__heading span { color: var(--terracotta); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cutter-upsell__heading strong { font-family: "Fraunces", serif; font-size: 16px; }
.cutter-upsell__items { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.cutter-upsell__card { min-width: 0; padding: 7px; display: grid; grid-template-columns: 43px minmax(0, 1fr) 26px; align-items: center; gap: 7px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.cutter-upsell__card img { width: 43px; height: 43px; display: block; object-fit: contain; background: #edf0e9; border-radius: 9px; }
.cutter-upsell__card div { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cutter-upsell__card strong { overflow: hidden; font-size: 9px; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.cutter-upsell__card small { color: var(--ink-soft); font-family: "Fraunces", serif; font-size: 11px; font-weight: 700; }
.cutter-upsell__card button { width: 26px; height: 26px; padding: 0; display: grid; place-items: center; color: white; background: var(--violet); border: 0; border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; }
.cutter-upsell > a { margin-top: 11px; display: inline-flex; align-items: center; gap: 5px; color: var(--sage-deep); font-size: 9px; font-weight: 800; text-decoration: none; }
.cutter-upsell--cart { margin: 12px 0; padding: 13px; flex: 0 0 auto; }
.cutter-upsell--cart .cutter-upsell__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cutter-upsell--cart .cutter-upsell__card { grid-template-columns: 40px minmax(0, 1fr) 26px; }
.cutter-upsell--cart .cutter-upsell__card img { width: 40px; height: 40px; }

.benefit-strip { max-width: 1440px; margin: 0 auto; padding: 37px clamp(20px, 5vw, 72px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; color: white; background: var(--plum); }
.benefit-strip article { display: flex; align-items: center; gap: 15px; padding-right: 20px; border-right: 1px solid rgba(255,255,255,.16); }
.benefit-strip article:last-child { border-right: 0; }
.benefit-strip article > span { font-family: "Fraunces", serif; color: var(--apricot); font-size: 26px; }
.benefit-strip article div { display: flex; flex-direction: column; gap: 3px; }
.benefit-strip strong { font-family: "Fraunces", serif; font-size: 15px; }
.benefit-strip small { color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.35; }

.cutters-section { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 9vw, 125px) clamp(20px, 5vw, 72px); background: var(--paper); }
.section-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.section-heading h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(37px, 4.7vw, 65px); line-height: 1.02; }
.section-heading > p { max-width: 390px; margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.section-heading--center { justify-content: center; text-align: center; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-row button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; background: white; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-row button.is-selected { color: white; background: var(--violet); border-color: var(--violet); }
.cutter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.cutter-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .2s, box-shadow .2s; }
.cutter-card:hover { transform: translateY(-4px); box-shadow: 0 17px 40px rgba(44,55,48,.1); }
.cutter-card__image { position: relative; aspect-ratio: 1 / .76; overflow: hidden; background: #edf0e9; }
.cutter-card__image > span { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 5px 9px; color: white; background: var(--terracotta); border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cutter-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; mix-blend-mode: multiply; transition: transform .35s; }
.cutter-card:hover img { transform: scale(1.04); }
.cutter-card__body { flex: 1; padding: 19px; display: flex; flex-direction: column; }
.cutter-card__body > div:first-child small { color: var(--terracotta); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cutter-card h3 { min-height: 42px; margin: 5px 0 0; font-family: "Fraunces", serif; font-size: 18px; line-height: 1.15; }
.cutter-card__body > p:not(.card-message) { flex: 1; margin: 10px 0 15px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.card-option { display: flex; flex-direction: column; gap: 4px; margin-bottom: 9px; font-size: 9px; font-weight: 800; }
.card-option select, .card-option input { padding: 8px 9px; border-radius: 8px; font-size: 11px; }
.cutter-card__details { margin: -3px 0 13px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); }
.cutter-card__details summary { color: var(--sage-deep); font-size: 9px; font-weight: 800; cursor: pointer; }
.cutter-card__details dl { margin: 9px 0 0; display: grid; gap: 5px; }
.cutter-card__details dl div { display: grid; grid-template-columns: 74px 1fr; gap: 7px; font-size: 8px; line-height: 1.35; }
.cutter-card__details dt { color: var(--ink-soft); font-weight: 800; }
.cutter-card__details dd { margin: 0; }
.cutter-card__buy { padding-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); }
.cutter-card__buy strong { font-family: "Fraunces", serif; font-size: 20px; }
.cutter-card__buy button { padding: 9px 12px; border: 0; border-radius: 999px; color: white; background: var(--violet); font-size: 10px; font-weight: 800; cursor: pointer; }
.card-message { min-height: 14px; margin: 7px 0 0; color: #a64638; font-size: 9px; }

.process-section { max-width: 1440px; margin: 0 auto; padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 110px); background: #ecdfd2; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 65px); }
.process-grid article { position: relative; padding: 42px 27px 29px; text-align: center; background: rgba(255,255,255,.44); border: 1px solid rgba(255,255,255,.6); border-radius: 49% 51% 47% 53% / 55% 47% 53% 45%; }
.process-grid article > span { position: absolute; top: 12px; left: 18px; width: 27px; height: 27px; display: grid; place-items: center; color: white; background: var(--violet); border-radius: 50%; font-family: "Fraunces", serif; }
.process-icon { width: 80px; height: 80px; margin: 0 auto 20px; display: grid; place-items: center; color: var(--terracotta); background: var(--paper); border-radius: 50%; font-size: 30px; }
.process-grid h3 { margin-bottom: 8px; font-family: "Fraunces", serif; font-size: 21px; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.more-section { max-width: 1440px; margin: 0 auto; padding: clamp(75px, 9vw, 125px) clamp(20px, 5vw, 72px); background: var(--paper); }
.more-section__heading { max-width: 790px; margin: 0 auto 45px; text-align: center; }
.more-section__heading h2 { margin-bottom: 18px; font-size: clamp(39px, 5vw, 67px); line-height: 1.02; }
.more-section__heading > p:last-child { max-width: 670px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.more-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 34px); }
.more-card { overflow: hidden; min-width: 0; min-height: 385px; display: grid; grid-template-columns: minmax(165px, .78fr) 1.22fr; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 25px; box-shadow: 0 15px 42px rgba(52,47,38,.09); text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.more-card:hover { border-color: rgba(32,51,45,.28); box-shadow: 0 22px 55px rgba(52,47,38,.15); transform: translateY(-4px); }
.more-card:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 5px; }
.more-card__visual { min-height: 100%; display: grid; place-items: center; padding: 30px 20px; }
.more-card--portrait .more-card__visual { background: radial-gradient(circle at 20% 18%, rgba(255,255,255,.8), transparent 34%), var(--lavender); }
.more-card--recipes .more-card__visual { background: radial-gradient(circle at 80% 16%, rgba(255,255,255,.7), transparent 32%), var(--yellow); }
.more-card__body { min-width: 0; padding: clamp(28px, 3vw, 42px) clamp(24px, 3vw, 40px); display: flex; flex-direction: column; align-items: flex-start; }
.more-card__eyebrow { margin-bottom: 13px; color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.more-card h3 { margin-bottom: 16px; font-family: "Fraunces", serif; font-size: clamp(25px, 2.5vw, 34px); line-height: 1.08; }
.more-card p { margin: 0 0 25px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.more-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 800; }
.more-card__cta i { width: 29px; height: 29px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-size: 15px; font-style: normal; transition: transform .2s ease; }
.more-card:hover .more-card__cta i { transform: translateX(3px); }
.portrait-art, .recipe-art { position: relative; isolation: isolate; width: min(145px, 100%); aspect-ratio: 4 / 5; padding: 25px 14px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; border: 1px solid rgba(32,51,45,.18); border-radius: 15px; box-shadow: 0 18px 30px rgba(48,25,54,.15); font-family: "Fraunces", serif; text-align: center; transform: rotate(-3deg); }
.portrait-art { background: linear-gradient(155deg, #fffdf8 0 47%, #e7c7bb 47% 100%); }
.portrait-art::before, .portrait-art::after { content: ""; position: absolute; top: 42px; width: 42px; height: 54px; background: var(--plum); border-radius: 50% 50% 42% 42%; }
.portrait-art::before { left: 26px; transform: rotate(-26deg); }
.portrait-art::after { right: 26px; transform: rotate(26deg); }
.portrait-art i { position: absolute; z-index: 1; top: 57px; width: 68px; height: 68px; display: grid; place-items: center; color: var(--berry); background: #fffaf1; border: 6px solid var(--plum); border-radius: 48% 48% 44% 44%; font-family: "DM Sans", sans-serif; font-size: 15px; font-style: normal; }
.portrait-art strong, .recipe-art strong { position: relative; z-index: 1; font-size: 15px; letter-spacing: .06em; }
.portrait-art small, .recipe-art small { position: relative; z-index: 1; margin-top: 4px; font-family: "DM Sans", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.recipe-art { justify-content: flex-start; color: #5a341f; background: #fff9e6; transform: rotate(3deg); }
.recipe-art::before, .recipe-art::after { content: ""; position: absolute; inset: 7px -8px -7px 8px; z-index: -1; background: #fff4ce; border: 1px solid rgba(90,52,31,.16); border-radius: 15px; transform: rotate(-5deg); }
.recipe-art::after { inset: 13px -13px -13px 13px; z-index: -2; background: #ffe7a0; transform: rotate(-7deg); }
.recipe-art i { width: 68px; height: 68px; margin: 23px 0 27px; display: block; background: radial-gradient(circle at 38% 35%, #fff 0 3px, transparent 4px), radial-gradient(circle at 65% 64%, #fff 0 3px, transparent 4px), radial-gradient(circle at 50% 50%, var(--berry) 0 45%, #fff 46% 58%, var(--terracotta) 59%); border-radius: 50% 45% 52% 48%; box-shadow: 0 8px 0 -5px rgba(90,52,31,.15); }

.future-section { max-width: 1440px; margin: 0 auto; padding: clamp(65px, 8vw, 105px) clamp(20px, 7vw, 105px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; background: linear-gradient(135deg, #352137, var(--plum)); color: white; }
.future-section h2 { max-width: 550px; margin-bottom: 20px; font-size: clamp(39px, 5vw, 68px); line-height: 1; }
.future-section p:last-child { max-width: 580px; color: rgba(255,255,255,.68); line-height: 1.7; }
.future-cards { position: relative; min-height: 280px; }
.future-cards span { position: absolute; width: 210px; height: 255px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 20px; font-family: "Fraunces", serif; font-size: 22px; letter-spacing: .08em; box-shadow: 0 25px 30px rgba(0,0,0,.15); }
.future-cards span:nth-child(1) { left: 5%; top: 10px; background: var(--terracotta); transform: rotate(-10deg); }
.future-cards span:nth-child(2) { left: 32%; top: 0; color: var(--ink); background: var(--yellow); transform: rotate(2deg); }
.future-cards span:nth-child(3) { left: 58%; top: 18px; color: var(--ink); background: var(--blue); transform: rotate(10deg); }

.site-footer { max-width: 1440px; margin: 0 auto; padding: 35px clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #281728; color: white; border-top: 1px solid rgba(255,255,255,.08); }
.brand--footer small { color: rgba(255,255,255,.55); }
.site-footer__links { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; }
.site-footer__links a { color: rgba(255,255,255,.68); font-size: 11px; text-decoration: none; }
.site-footer__links a:hover { color: white; }
.site-footer__links a.site-footer__button {
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--berry);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
  font-weight: 800;
}
.site-footer__links a.site-footer__button:hover { color: white; background: #bd347d; transform: translateY(-1px); }

.cart-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(20,32,27,.47); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; z-index: 100; top: 0; right: 0; bottom: 0; width: min(440px, 100vw); padding: 28px; display: flex; flex-direction: column; background: var(--paper); box-shadow: -15px 0 50px rgba(20,32,27,.19); transform: translateX(105%); transition: transform .25s ease; }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.cart-drawer__head small, .order-summary__head small { color: var(--terracotta); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.cart-drawer__head h2, .order-summary__head h2 { margin: 3px 0 0; font-family: "Fraunces", serif; font-size: 29px; }
.cart-drawer__head button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 23px; cursor: pointer; }
.cart-lines { overflow-y: auto; margin: 0 -7px; padding: 10px 7px; }
.cart-line { padding: 16px 0; display: grid; grid-template-columns: 76px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-line__thumb, .checkout-line__thumb { overflow: hidden; display: grid; place-items: center; background: var(--lavender); border-radius: 13px; }
.cart-line__thumb { width: 76px; height: 86px; }
.cart-line__thumb span, .checkout-line__thumb span { font-family: "Fraunces", serif; font-size: 17px; }
.cart-line__thumb img, .checkout-line__thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.cart-line__content > div:first-child { display: flex; justify-content: space-between; gap: 8px; }
.cart-line__content > div:first-child strong { font-family: "Fraunces", serif; font-size: 15px; }
.cart-line__content > div:first-child button { padding: 0; border: 0; background: none; color: var(--ink-soft); font-size: 19px; cursor: pointer; }
.cart-line__content > small, .checkout-line small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: 9px; }
.cart-line__bottom { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.quantity-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.quantity-control button { width: 28px; height: 26px; padding: 0; border: 0; background: none; cursor: pointer; }
.quantity-control span { width: 22px; text-align: center; font-size: 11px; }
.cart-line__bottom > strong { font-family: "Fraunces", serif; }
.cart-empty { margin: auto 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cart-empty > span { width: 75px; height: 75px; margin-bottom: 20px; display: grid; place-items: center; background: var(--berry-soft); border-radius: 50%; font-size: 26px; }
.cart-empty strong { font-family: "Fraunces", serif; font-size: 20px; }
.cart-empty p { color: var(--ink-soft); font-size: 12px; }
.cart-drawer__footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.cart-drawer__footer > div { display: flex; align-items: center; justify-content: space-between; }
.cart-drawer__footer > div strong { font-family: "Fraunces", serif; font-size: 24px; }
.cart-drawer__footer > small { display: block; margin: 5px 0 17px; color: var(--ink-soft); font-size: 10px; }
.cart-drawer__footer .primary-button { width: 100%; }
.text-button { width: 100%; margin-top: 8px; padding: 10px; border: 0; background: none; font-size: 11px; font-weight: 700; cursor: pointer; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; max-width: calc(100vw - 32px); padding: 12px 18px; color: white; background: var(--ink); border-radius: 999px; box-shadow: 0 12px 28px rgba(20,32,27,.25); font-size: 12px; font-weight: 700; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .2s, transform .2s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Checkout */
.checkout-page, .withdrawal-page { min-height: 100vh; background: var(--cream); }
.checkout-header { max-width: 1260px; background: transparent; }
.checkout-header > a:last-child { color: var(--ink-soft); font-size: 12px; font-weight: 700; text-decoration: none; }
.checkout-shell { max-width: 1260px; margin: 0 auto; padding: 35px clamp(20px, 4vw, 55px) 90px; display: grid; grid-template-columns: minmax(0, 1fr) 440px; align-items: start; gap: 55px; }
.checkout-main > h1 { max-width: 680px; margin-bottom: 13px; font-size: clamp(39px, 5vw, 65px); line-height: 1; }
.checkout-main > p:not(.eyebrow) { max-width: 620px; margin-bottom: 35px; color: var(--ink-soft); line-height: 1.55; }
.checkout-form { display: flex; flex-direction: column; gap: 20px; }
.checkout-form > section:not(.legal-checks) { padding: 27px; background: white; border: 1px solid var(--line); border-radius: 19px; }
.form-section-title { margin-bottom: 20px; display: flex; align-items: center; gap: 11px; }
.form-section-title > span { width: 27px; height: 27px; display: grid; place-items: center; color: white; background: var(--ink); border-radius: 50%; font-family: "Fraunces", serif; }
.form-section-title h2 { margin: 0; font-family: "Fraunces", serif; font-size: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label, .note-label { display: flex; flex-direction: column; gap: 6px; font-size: 10px; font-weight: 800; }
.form-grid__full { grid-column: 1 / -1; }
.form-grid input { min-height: 46px; }
.note-label { margin-top: 14px; }
.note-label textarea { resize: vertical; }
.coupon-line { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.coupon-line button { padding: 0 20px; color: white; background: var(--sage-deep); border: 0; border-radius: 10px; font-weight: 800; cursor: pointer; }
.form-message { min-height: 17px; margin: 8px 0 0; color: var(--ink-soft); font-size: 11px; }
.form-message.is-error { color: #a33b32; }
.form-message.is-success { color: #2f6c51; }
.legal-checks { display: flex; flex-direction: column; gap: 10px; padding: 5px 4px; }
.legal-checks label { display: flex; align-items: flex-start; gap: 9px; color: var(--ink-soft); font-size: 11px; line-height: 1.45; }
.legal-checks input { margin-top: 2px; accent-color: var(--sage-deep); }
.legal-checks a { color: var(--ink); font-weight: 700; }
.primary-button--wide { width: 100%; min-height: 55px; border-radius: 13px; background: var(--terracotta); }
.payment-note { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; color: var(--ink-soft); font-size: 9px; font-weight: 700; }
.payment-note span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 5px; background: rgba(255,255,255,.4); }
.order-summary { position: sticky; top: 24px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.order-summary__head { padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.checkout-line { padding: 17px 0; display: grid; grid-template-columns: 65px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.checkout-line__thumb { width: 65px; height: 70px; }
.checkout-line > div:last-child > strong { font-family: "Fraunces", serif; font-size: 14px; }
.checkout-line > div:last-child > div { margin-top: 8px; display: flex; justify-content: space-between; font-size: 10px; }
.checkout-line > div:last-child > div strong { font-family: "Fraunces", serif; font-size: 13px; }
.checkout-totals { padding-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.checkout-totals > div { display: flex; justify-content: space-between; color: var(--ink-soft); font-size: 12px; }
.checkout-totals__total { margin-top: 8px; padding-top: 14px; align-items: center; color: var(--ink) !important; border-top: 1px solid var(--line); font-weight: 800; }
.checkout-totals__total strong { font-family: "Fraunces", serif; font-size: 25px; }
.checkout-trust { margin: 20px 0 0; padding: 15px 0 0; display: grid; gap: 7px; border-top: 1px solid var(--line); list-style: none; color: var(--ink-soft); font-size: 10px; }
.checkout-trust li::before { content: "✓"; margin-right: 7px; color: var(--sage-deep); font-weight: 800; }
.checkout-empty { padding: 25px 0; text-align: center; }
.checkout-empty a { font-weight: 800; }

.checkout-page .site-footer, .withdrawal-page .site-footer { max-width: 1260px; margin-bottom: 35px; border-radius: 22px; }

.withdrawal-shell { max-width: 880px; margin: 0 auto; padding: 35px 20px 70px; }
.withdrawal-card { padding: clamp(28px, 6vw, 58px); background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.withdrawal-card h1 { max-width: 700px; margin-bottom: 18px; font-size: clamp(40px, 7vw, 68px); line-height: 1; }
.withdrawal-card > p:not(.eyebrow) { color: var(--ink-soft); line-height: 1.65; }
.withdrawal-form { margin-top: 30px; }
.withdrawal-form .form-grid label { font-size: 11px; }
.withdrawal-form .form-grid input { min-height: 50px; }
.withdrawal-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.withdrawal-privacy { margin: 18px 0 0; color: var(--ink-soft); font-size: 11px; }
.withdrawal-privacy a { color: var(--ink); font-weight: 700; }
.withdrawal-note { margin: 15px 0 20px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.withdrawal-error { margin: 22px 0; padding: 13px 15px; color: #8f2f29 !important; background: #fff0ed; border: 1px solid rgba(163,59,50,.22); border-radius: 12px; font-size: 13px; font-weight: 700; }
.withdrawal-statement { margin: 25px 0; padding: 18px; color: #38253b; background: var(--berry-soft); border: 1px solid rgba(216,70,146,.18); border-radius: 14px; font-family: "Fraunces", serif; font-size: 18px; line-height: 1.5; }
.withdrawal-review { margin: 0; border: 1px solid var(--line); border-radius: 16px; }
.withdrawal-review > div { padding: 14px 16px; display: grid; grid-template-columns: minmax(150px, .65fr) 1.35fr; gap: 18px; border-bottom: 1px solid var(--line); }
.withdrawal-review > div:last-child { border-bottom: 0; }
.withdrawal-review dt { color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.withdrawal-review dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 700; text-align: right; }
.withdrawal-actions { margin-top: 24px; display: grid; gap: 10px; }
.secondary-button { min-height: 45px; padding: 11px 18px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 12px; font-size: 12px; font-weight: 800; text-decoration: none; }
.secondary-button:hover { background: var(--cream); }
.withdrawal-receipt { margin: 28px 0 20px; padding: 19px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: white; background: var(--plum); border-radius: 15px; }
.withdrawal-receipt span { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.withdrawal-receipt strong { font-family: "Fraunces", serif; font-size: 22px; }

.simple-page { min-height: 100vh; padding: 35px 20px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; background: var(--cream); }
.simple-page .site-footer { width: min(650px, 100%); margin: 0; padding: 24px; border-radius: 22px; }
.thank-you { width: min(650px, 100%); padding: clamp(28px, 6vw, 55px); background: white; border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow); text-align: center; }
.thank-you__brand { margin-bottom: 35px; }
.thank-you h1 { font-size: clamp(36px, 6vw, 55px); }
.thank-you > p { color: var(--ink-soft); line-height: 1.6; }
.thank-you__box { margin: 25px 0; padding: 18px; background: var(--cream); border-radius: 15px; text-align: left; }
.thank-you__line { padding: 8px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); font-size: 12px; }
.thank-you__line--total { border-bottom: 0; font-size: 15px; font-weight: 800; }

@media (min-width: 861px) {
  .hero { overflow: clip; }
  .configurator { overflow: visible; }
  .product-preview-wrap {
    position: relative;
    align-self: stretch;
    overflow: clip;
    border-radius: 30px 0 0 30px;
  }
  .product-preview {
    position: sticky;
    top: 22px;
    flex: 0 0 auto;
    align-items: flex-start;
    min-height: min(650px, calc(100vh - 88px));
    padding-top: clamp(34px, 5vh, 54px);
  }
  .product-preview__asset--jar,
  .jar {
    transform: translateY(-16px);
  }
  .configurator__panel { border-radius: 0 30px 30px 0; }
}

@media (max-width: 1120px) {
  .configurator { grid-template-columns: .85fr 1.15fr; }
  .product-preview { min-height: 650px; }
  .cutter-grid { grid-template-columns: repeat(3, 1fr); }
  .more-grid { grid-template-columns: 1fr; }
  .more-card { grid-template-columns: minmax(190px, .65fr) 1.35fr; }
  .future-cards span { width: 170px; height: 220px; }
  .checkout-shell { grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero { padding-top: 55px; }
  .hero__intro { grid-template-columns: 1fr; margin-bottom: 34px; }
  .hero__mood { width: min(100%, 480px); justify-self: center; border-radius: 20px; }
  .configurator { grid-template-columns: 1fr; }
  .product-preview { min-height: 500px; }
  .configurator__panel { min-height: 610px; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-strip article { padding: 4px 0 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .benefit-strip article:last-child { border-bottom: 0; }
  .cutter-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .process-grid { gap: 15px; }
  .future-section { grid-template-columns: 1fr; }
  .future-cards { min-height: 245px; }
  .future-cards span { width: 180px; height: 220px; }
  .checkout-shell { grid-template-columns: 1fr; }
  .order-summary { position: static; grid-row: 1; }
}

@media (max-width: 600px) {
  .preview-bar { align-items: flex-start; flex-direction: column; gap: 2px; text-align: left; }
  .site-header, .checkout-header { min-height: 70px; padding: 12px 16px; }
  .brand__mark { width: 40px; height: 50px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 8px; }
  .cart-button { padding: 9px; }
  .cart-button > span { display: none; }
  .cart-button--floating {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 10px 11px 10px 15px;
  }
  .cart-button--floating > span { display: inline; }
  .hero { padding: 46px 15px 65px; }
  .hero__copy { width: min(100%, 340px); }
  .hero .eyebrow { overflow-wrap: anywhere; font-size: 10px; line-height: 1.45; }
  .hero h1 { max-width: 100%; overflow-wrap: break-word; hyphens: auto; font-size: clamp(31px, 8.6vw, 36px); line-height: 1.04; letter-spacing: -.025em; }
  .hero h1 span { display: block; }
  .hero__lead { max-width: 100%; font-size: 16px; }
  .hero__proof { flex-direction: column; gap: 10px; }
  .hero__mood { border-radius: 18px; }
  .configurator { border-radius: 22px; }
  .product-preview { min-height: 435px; padding: 45px 20px; }
  .product-preview-note { padding: 10px 17px 12px; font-size: 9px; }
  .product-preview__asset--jar { width: min(100%, 285px); }
  .product-preview__asset--sticker { width: min(100%, 315px); }
  .product-preview__asset--personalization { width: min(100%, 340px); border-width: 7px; border-radius: 13px; }
  .product-preview__design-image { max-height: 360px; border-radius: 16px; }
  .product-preview__sticker-image { max-height: 250px; border-width: 7px; border-radius: 13px; }
  .personalization-preview [data-personalization-preview-line1] { font-size: clamp(27px, 10vw, 43px); }
  .personalization-preview [data-personalization-preview-line2] { font-size: clamp(22px, 7.8vw, 34px); }
  .mobile-floating-preview:not([hidden]) {
    position: fixed;
    z-index: 40;
    top: 14px;
    right: 12px;
    width: 94px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(32,51,45,.12);
    border-radius: 16px;
    background: rgba(255,253,248,.93);
    box-shadow: 0 13px 32px rgba(32,51,45,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    animation: mobile-preview-enter .18s ease-out, mobile-preview-float 3.2s .18s ease-in-out infinite;
  }
  .mobile-floating-preview__asset { position: relative; display: block; }
  .mobile-floating-preview img { width: 100%; aspect-ratio: 3 / 4; display: block; object-fit: cover; border-radius: 11px; background: var(--lavender); }
  .personalization-preview--floating { top: 42%; width: 78%; }
  .personalization-preview--floating::before { inset: -28% -18%; }
  .personalization-preview--floating [data-personalization-preview-line1] { font-size: 16px; }
  .personalization-preview--floating [data-personalization-preview-line2] { font-size: 12px; }
  .mobile-floating-preview__zoom { position: absolute; top: 12px; right: 12px; width: 29px; height: 29px; display: grid; place-items: center; color: white; background: rgba(32,51,45,.88); border: 2px solid white; border-radius: 50%; box-shadow: 0 5px 13px rgba(32,51,45,.28); }
  .mobile-floating-preview__zoom svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
  .mobile-floating-preview__label { color: var(--ink-soft); font-size: 8px; font-weight: 800; letter-spacing: .11em; line-height: 1; text-align: center; text-transform: uppercase; }
  .mobile-floating-preview.is-sticker { width: 132px; }
  .mobile-floating-preview.is-sticker img { aspect-ratio: 12 / 5; object-fit: contain; background: white; }
  .mobile-floating-preview.is-sticker .personalization-preview--floating { top: 50%; width: 62%; }
  .mobile-floating-preview.is-personalization { width: 150px; }
  .mobile-floating-preview.is-personalization img { aspect-ratio: 1280 / 533; object-fit: cover; background: white; }
  .mobile-floating-preview.is-personalization .personalization-preview--floating { top: 50%; width: 56%; }
  .mobile-floating-preview.is-personalization .personalization-preview--floating::before { inset: -31% -16%; border-radius: 50%; background: #fff; }
  body.cart-open .mobile-floating-preview, body.preview-lightbox-open .mobile-floating-preview { display: none !important; }
  .jar { width: 235px; }
  .jar__lid { width: 195px; }
  .jar__neck { width: 174px; }
  .jar__body { height: 320px; }
  .jar__label { top: 66px; min-height: 126px; }
  .jar__label strong { font-size: 22px; }
  .jar__cookies { transform: scale(.82); transform-origin: bottom center; }
  .sticker-sheet { width: 240px; height: 325px; }
  .sticker-sheet__label { min-height: 120px; }
  .configurator__panel { min-height: 0; padding: 27px 18px; }
  .product-choices { grid-template-columns: 1fr; }
  .product-choice { min-height: 69px; padding: 15px; display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .product-choice.is-selected { padding: 14px; }
  .product-choice em { top: -8px; }
  .size-choices { grid-template-columns: 1fr; }
  .design-choices { grid-template-columns: 1fr; }
  .personalization-fields { grid-template-columns: 1fr; }
  .product-details dl { grid-template-columns: 1fr; }
  .design-choice small { white-space: normal; }
  .configurator__footer { margin-top: 28px; }
  .cutter-upsell--inline { margin-left: -4px; margin-right: -4px; }
  .cutter-upsell--inline .cutter-upsell__items { margin-right: -16px; padding-right: 16px; display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .cutter-upsell--inline .cutter-upsell__items::-webkit-scrollbar { display: none; }
  .cutter-upsell--inline .cutter-upsell__card { min-width: 205px; flex: 0 0 205px; scroll-snap-align: start; }
  .benefit-strip { padding: 30px 20px; }
  .cutters-section { padding-left: 15px; padding-right: 15px; }
  .cutter-grid { grid-template-columns: 1fr; }
  .cutter-card { display: grid; grid-template-columns: 125px 1fr; }
  .cutter-card__image { width: 100%; height: auto; min-height: 0; aspect-ratio: 1; align-self: start; border-bottom-right-radius: 18px; }
  .cutter-card__image img { object-fit: contain; }
  .cutter-card__body { padding: 15px; }
  .cutter-card h3 { min-height: 0; font-size: 17px; }
  .cutter-card__body > p:not(.card-message) { margin-bottom: 11px; }
  .cutter-card__buy { align-items: flex-start; flex-direction: column; }
  .cutter-card__buy button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { border-radius: 22px; }
  .more-section { padding-left: 15px; padding-right: 15px; }
  .more-section__heading { margin-bottom: 32px; text-align: left; }
  .more-section__heading h2 { font-size: clamp(36px, 10vw, 48px); }
  .more-section__heading > p:last-child { font-size: 14px; }
  .more-card { min-height: 0; grid-template-columns: 1fr; }
  .more-card__visual { min-height: 245px; }
  .more-card__body { min-height: 315px; padding: 28px 24px; }
  .more-card h3 { font-size: 29px; }
  .future-section { overflow: visible; padding-left: 20px; padding-right: 20px; }
  .future-cards { width: 100%; min-height: 0; padding: 4px 3px 7px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .future-cards span { position: relative; left: auto; top: auto; width: 100%; height: auto; min-height: 140px; font-size: clamp(11px, 3.6vw, 15px); letter-spacing: .035em; box-shadow: 0 15px 22px rgba(0,0,0,.14); }
  .future-cards span:nth-child(1) { left: auto; top: auto; transform: rotate(-2deg); }
  .future-cards span:nth-child(2) { left: auto; top: auto; transform: rotate(1deg); }
  .future-cards span:nth-child(3) { left: auto; top: auto; transform: rotate(2deg); }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer__links { align-items: flex-start; }
  .site-footer__links a.site-footer__button { flex-basis: 100%; }
  .cart-drawer { padding: 22px 18px; }
  .checkout-page .checkout-header > a:last-child { font-size: 0; }
  .checkout-page .checkout-header > a:last-child::before { content: "←"; font-size: 20px; }
  .checkout-shell { padding: 20px 15px 60px; }
  .withdrawal-shell { padding: 20px 15px 45px; }
  .withdrawal-card { padding: 27px 20px; border-radius: 20px; }
  .withdrawal-review > div { grid-template-columns: 1fr; gap: 5px; }
  .withdrawal-review dd { text-align: left; }
  .withdrawal-receipt { align-items: flex-start; flex-direction: column; gap: 6px; }
  .checkout-page .site-footer, .withdrawal-page .site-footer { margin-bottom: 0; border-radius: 0; }
  .checkout-main > h1 { font-size: 43px; }
  .order-summary, .checkout-form > section:not(.legal-checks) { padding: 20px; border-radius: 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .coupon-line { grid-template-columns: 1fr; }
  .coupon-line button { min-height: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .mobile-floating-preview, .cart-button--floating { animation: none !important; }
}

@keyframes floating-cart-wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-1px) rotate(.45deg); }
  50% { transform: translateY(0) rotate(0); }
  75% { transform: translateY(-1px) rotate(-.45deg); }
}

@keyframes mobile-preview-enter {
  from { opacity: 0; transform: translateY(-8px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mobile-preview-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
