:root {
  --ink: #25201c;
  --muted: #746c64;
  --paper: #f7f1e8;
  --cream: #fffaf2;
  --white: #fffdf9;
  --coral: #ff6846;
  --coral-dark: #df4f30;
  --yellow: #ffd15a;
  --green: #315b55;
  --line: rgba(57, 47, 40, 0.14);
  --shadow: 0 22px 70px rgba(68, 49, 34, 0.13);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
button, textarea, input { font: inherit; }
button { color: inherit; }
button:disabled { cursor: wait; opacity: .7; }
[hidden] { display: none !important; }

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 30;
  border-bottom: 1px solid transparent;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font: 800 24px/1 ui-rounded, "Arial Rounded MT Bold", sans-serif;
  letter-spacing: -1.1px;
}

.brand-mark { width: 31px; height: 31px; position: relative; display: inline-block; }
.brand-mark span { position: absolute; border-radius: 50%; }
.brand-mark span:nth-child(1) { width: 19px; height: 19px; background: var(--coral); top: 1px; left: 0; }
.brand-mark span:nth-child(2) { width: 13px; height: 13px; background: var(--yellow); top: 0; right: 0; }
.brand-mark span:nth-child(3) { width: 21px; height: 21px; background: var(--green); right: 1px; bottom: 0; }

.header-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.nav-link, .back-button, .soft-action, .cart-heading button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
}
.nav-link { font-size: 13px; font-weight: 700; color: #5e5751; padding: 10px 4px; }
.nav-link:hover { color: var(--coral-dark); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.mode-pill {
  padding: 7px 10px;
  color: #6b5143;
  background: #f1dfcd;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.button {
  appearance: none;
  color: var(--ink);
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: white; background: var(--coral); box-shadow: 0 9px 24px rgba(255, 104, 70, .25); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 12px 28px rgba(255, 104, 70, .3); }
.button-quiet { border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.button-light { background: var(--white); color: var(--ink); padding: 14px 20px; }
.button-large { padding: 15px 22px; font-size: 14px; }
.button-full { width: 100%; }

.hero-shell {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  max-width: 1510px;
  margin: 0 auto;
  padding: 40px clamp(22px, 5vw, 78px) 70px;
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 2; padding: 18px 0; }
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-dark);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
}
.eyebrow > span { width: 22px; height: 2px; background: currentColor; display: inline-block; }
.hero-copy h1, .section-heading h2, .steps-copy h2, .modal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}
.hero-copy h1 { font-size: clamp(62px, 6.2vw, 100px); line-height: .88; }
.hero-copy h1 em { color: var(--coral); font-weight: 400; }
.hero-intro {
  max-width: 590px;
  margin: 28px 0 26px;
  color: #5f5750;
  font-size: 17px;
  line-height: 1.65;
}

.idea-card {
  max-width: 620px;
  border-radius: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(103, 79, 60, .12);
  box-shadow: 0 20px 55px rgba(76, 54, 37, .11);
}
.idea-card > label { font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.idea-card textarea {
  display: block;
  width: 100%;
  min-height: 75px;
  resize: none;
  border: 0;
  outline: 0;
  padding: 12px 2px;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.idea-card textarea::placeholder, .composer textarea::placeholder { color: #aca299; }
.idea-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.idea-privacy {
  margin: 11px 2px 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #867b72;
  font-size: 9px;
  line-height: 1.45;
}
.resume-project {
  max-width: 620px; margin-top: 12px; padding: 11px 12px; display: grid;
  grid-template-columns: 36px 1fr auto; align-items: center; gap: 11px;
  border: 1px solid rgba(49,91,85,.16); border-radius: 16px; background: rgba(255,253,249,.66);
}
.resume-mark {
  width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px;
  background: var(--green); color: white; font-weight: 900;
}
.resume-project div > span, .resume-project strong, .resume-project small { display: block; }
.resume-project div > span {
  color: var(--green); font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase;
}
.resume-project strong { margin-top: 3px; font: 500 15px Georgia, serif; }
.resume-project small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.resume-project .button { background: white; }
.upload-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 8px 8px 2px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  color: #5f5750;
}
.upload-button input { position: fixed; left: -9999px; }
.upload-button .plus {
  width: 28px; height: 28px; border: 1px dashed #a89d92; border-radius: 9px;
  display: grid; place-items: center; color: var(--coral); font-size: 18px;
}
.prompt-row { max-width: 620px; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 15px; }
.prompt-row button {
  border: 1px solid rgba(78, 65, 53, .12);
  background: rgba(255,255,255,.45);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  color: #706860;
  cursor: pointer;
}
.prompt-row button:hover { background: white; color: var(--coral-dark); }

.hero-visual {
  min-height: 560px;
  position: relative;
  border-radius: 42% 20px 20px 18%;
  overflow: visible;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -20% -10% -4%;
  border-radius: 50% 0 0 50%;
  background: #f0d9bd;
  z-index: -1;
}
.hero-visual img {
  width: 100%;
  height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 42% 18px 18px 18%;
  box-shadow: var(--shadow);
}
.hero-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border: 1px solid rgba(83, 62, 48, .11);
  background: rgba(255,253,249,.94);
  box-shadow: 0 14px 42px rgba(75, 49, 31, .14);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  font-size: 11px;
  color: #7b7067;
}
.hero-note strong { display: block; color: var(--ink); font-size: 12px; margin-bottom: 2px; }
.note-one { top: 11%; left: -8%; transform: rotate(-2deg); }
.note-two { bottom: 7%; right: 2%; transform: rotate(2deg); }
.note-swatch { width: 34px; height: 34px; border-radius: 10px; display: inline-block; }
.note-swatch.coral { background: linear-gradient(145deg, #ff7252, #ffb654); }
.sparkle { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); font-size: 16px; }

.trust-strip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 3vw, 48px);
  padding: 14px 20px;
  color: #6c625a;
  background: #efe4d6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}
.trust-strip i { width: 4px; height: 4px; background: var(--coral); border-radius: 50%; }

.possibility-section { max-width: 1420px; margin: 0 auto; padding: 110px clamp(22px, 5vw, 76px); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 60px; margin-bottom: 44px; }
.section-heading h2 { font-size: clamp(44px, 4.8vw, 72px); line-height: .98; }
.section-heading > p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 390px; }
.product-editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.editorial-card {
  min-height: 410px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 24px;
  background: var(--card-bg, #ead8c6);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease;
}
.editorial-card:hover { transform: translateY(-4px); }
.editorial-card:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
.editorial-card:nth-child(1) { grid-column: span 5; }
.editorial-card:nth-child(2) { grid-column: span 4; }
.editorial-card:nth-child(3) { grid-column: span 3; }
.editorial-card:nth-child(4),
.editorial-card:nth-child(5),
.editorial-card:nth-child(6) { grid-column: span 4; min-height: 330px; }
.editorial-card .card-copy { position: relative; z-index: 3; max-width: 230px; }
.editorial-card .card-copy span { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--coral-dark); }
.editorial-card .card-copy h3 { margin: 7px 0 5px; font: 500 28px/1.05 Georgia, serif; letter-spacing: -.035em; }
.editorial-card .card-copy p { margin: 0; color: #72675e; font-size: 12px; line-height: 1.5; }
.editorial-card .price-tag {
  position: absolute; z-index: 4; right: 18px; bottom: 18px;
  padding: 9px 11px; border-radius: 999px; background: rgba(255,255,255,.86);
  font-size: 11px; font-weight: 900;
}

.steps-section { min-height: 620px; display: grid; grid-template-columns: 1fr 1fr; background: var(--green); color: white; }
.steps-art { position: relative; overflow: hidden; min-height: 620px; background: #294e49; }
.steps-orbit { position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; left: 12%; top: 12%; }
.orbit-two { width: 260px; height: 260px; left: 28%; top: 29%; }
.steps-heart {
  position: absolute; left: 43%; top: 42%; width: 112px; height: 112px; display: grid;
  place-items: center; border-radius: 38% 62% 45% 55%; background: var(--coral); font-size: 40px;
  box-shadow: 0 20px 55px rgba(0,0,0,.2); transform: rotate(-8deg);
}
.steps-label {
  position: absolute; padding: 10px 15px; background: var(--cream); color: var(--ink);
  border-radius: 12px; font: 500 18px Georgia, serif; box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.label-a { left: 15%; top: 25%; transform: rotate(-7deg); }
.label-b { right: 12%; top: 28%; transform: rotate(6deg); }
.label-c { left: 22%; bottom: 19%; transform: rotate(3deg); }
.steps-copy { padding: 85px clamp(30px, 7vw, 110px); }
.eyebrow.light { color: #f9c49c; }
.steps-copy h2 { font-size: clamp(44px, 4.6vw, 68px); line-height: .98; }
.steps-copy h2 em { color: #ffb18d; font-weight: 400; }
.steps-copy ol { list-style: none; padding: 0; margin: 42px 0 36px; }
.steps-copy li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.steps-copy li > span { color: #ffb18d; font-size: 11px; font-weight: 900; }
.steps-copy li strong { font: 500 19px Georgia, serif; }
.steps-copy li p { margin: 4px 0 0; color: rgba(255,255,255,.65); font-size: 12px; }

/* Studio */
.studio { height: calc(100vh - 76px); min-height: 670px; background: #eee6da; border-top: 1px solid var(--line); overflow: hidden; }
.studio-topline {
  height: 62px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 24px; border-bottom: 1px solid var(--line); background: rgba(255,253,249,.72);
}
.studio-topline > div:first-child { display: flex; align-items: center; gap: 11px; }
.back-button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); }
.project-kicker { display: block; color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.studio-topline strong { display: block; font-size: 12px; margin-top: 2px; }
.studio-progress { display: flex; align-items: center; gap: 8px; color: #a0968d; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.studio-progress span.active { color: var(--coral-dark); }
.studio-progress i { width: 32px; height: 1px; background: #d7cec5; }
.cart-mobile-button { display: none; justify-self: end; }
.studio-layout { height: calc(100% - 62px); display: grid; grid-template-columns: 320px minmax(520px, 1fr) 292px; }

.conversation-panel, .cart-panel { background: var(--white); min-height: 0; display: flex; flex-direction: column; }
.conversation-panel { border-right: 1px solid var(--line); }
.panel-heading { height: 66px; flex: none; padding: 0 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); }
.printy-avatar { width: 34px; height: 34px; border-radius: 12px; background: var(--coral); color: white; display: grid; place-items: center; font: 700 21px Georgia, serif; }
.panel-heading strong, .panel-heading span { display: block; }
.panel-heading strong { font-size: 12px; }
.panel-heading div:nth-child(2) span { color: var(--muted); font-size: 9px; margin-top: 2px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #6eb184; margin-left: auto; }
.conversation { flex: 1; min-height: 0; overflow-y: auto; padding: 20px 18px 10px; }
.message { margin-bottom: 17px; animation: message-in .25s ease both; }
.message.agent { padding-right: 20px; }
.message.user { display: flex; justify-content: flex-end; }
.message p { margin: 0; font-size: 12px; line-height: 1.58; white-space: pre-wrap; }
.message.agent p { color: #514a44; }
.message.user p { max-width: 88%; padding: 11px 13px; border-radius: 16px 16px 4px 16px; background: #f1e8dc; color: #403a35; }
.message-label { margin-bottom: 5px; display: flex; align-items: center; gap: 5px; color: var(--coral-dark); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.thinking { display: inline-flex; gap: 3px; padding: 10px 12px; border-radius: 14px; background: #f4eee7; }
.thinking i { width: 5px; height: 5px; border-radius: 50%; background: #aa9f96; animation: think 1s infinite; }
.thinking i:nth-child(2) { animation-delay: .15s; }
.thinking i:nth-child(3) { animation-delay: .3s; }
.composer { flex: none; padding: 10px 14px 15px; background: linear-gradient(to top, var(--white) 75%, rgba(255,253,249,0)); }
.suggestions { display: flex; gap: 5px; overflow-x: auto; padding: 5px 0 9px; scrollbar-width: none; }
.suggestions button { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; background: #faf6f0; padding: 6px 8px; color: #6c625b; font-size: 9px; cursor: pointer; }
.composer-field { position: relative; border: 1px solid #d9d0c7; border-radius: 15px; background: white; padding: 9px 42px 8px 10px; box-shadow: 0 7px 20px rgba(65,48,34,.06); }
.composer textarea { width: 100%; min-height: 39px; max-height: 85px; resize: none; border: 0; outline: 0; background: transparent; font-size: 11px; line-height: 1.4; }
.composer-field > button {
  position: absolute; right: 8px; bottom: 8px; width: 28px; height: 28px; border-radius: 50%;
  border: 0; background: var(--coral); color: white; cursor: pointer; font-weight: 900;
}

.canvas-panel { min-width: 0; min-height: 0; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.canvas-toolbar { height: 58px; flex: none; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.view-tabs { display: flex; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.58); }
.view-tabs button { border: 0; background: transparent; padding: 7px 13px; border-radius: 999px; font-size: 10px; color: #80766d; font-weight: 800; cursor: pointer; }
.view-tabs button.active { background: white; color: var(--ink); box-shadow: 0 3px 10px rgba(57,44,32,.08); }
.soft-action { display: flex; align-items: center; gap: 6px; color: #6d645d; font-size: 10px; font-weight: 800; }
.soft-action span { width: 22px; height: 22px; display: grid; place-items: center; border: 1px dashed #a99f95; border-radius: 7px; color: var(--coral); }
.artwork-stage, .product-stage { flex: 1; min-height: 250px; position: relative; display: flex; align-items: center; justify-content: center; padding: 20px 40px; }
.artwork-stage { background: radial-gradient(circle at 50% 44%, #fffaf3 0 30%, transparent 65%); }
.artwork-frame {
  width: min(42vh, 420px);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border: 10px solid white;
  border-radius: 12px;
  background: #eadfd2;
  box-shadow: 0 20px 50px rgba(61, 44, 29, .16);
  transform: rotate(-1deg);
}
.artwork-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artwork-frame.story-book img { filter: saturate(1.1) contrast(.96) sepia(.05); }
.artwork-frame.paper-cut img { filter: saturate(1.28) contrast(1.1); }
.artwork-frame.ink-line img { filter: saturate(.64) contrast(1.12); }
.artwork-frame.classic-paint img { filter: sepia(.22) saturate(.82) contrast(1.05); }
.artwork-placeholder { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; padding: 30px; background: #efe4d7; }
.artwork-placeholder span { font-size: 36px; color: var(--coral); }
.artwork-placeholder strong { margin-top: 10px; font: 500 20px Georgia, serif; }
.artwork-placeholder p { margin: 7px auto 0; max-width: 240px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.stage-spark { position: absolute; color: var(--coral); opacity: .6; }
.spark-a { left: 15%; top: 25%; font-size: 22px; }
.spark-b { right: 17%; bottom: 29%; font-size: 13px; color: var(--green); }
.artwork-caption { position: absolute; left: 22px; bottom: 14px; display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 13px; background: rgba(255,253,249,.82); backdrop-filter: blur(8px); border: 1px solid rgba(60,46,33,.08); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #69a47d; box-shadow: 0 0 0 4px rgba(105,164,125,.15); }
.artwork-caption strong, .artwork-caption span { display: block; }
.artwork-caption strong { font-size: 10px; }
.artwork-caption div span { color: var(--muted); margin-top: 2px; font-size: 8px; }

.choice-tray { flex: none; height: 218px; border-top: 1px solid var(--line); background: rgba(255,250,242,.82); padding: 16px 19px; }
.tray-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 11px; }
.tray-heading div span, .tray-heading div strong { display: block; }
.tray-heading div span { color: var(--coral-dark); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.tray-heading div strong { margin-top: 2px; font: 500 16px Georgia, serif; }
.tray-actions { display: flex; align-items: center; gap: 10px; }
.tray-actions > span { color: var(--muted); font-size: 8px; }
.bundle-add {
  border: 1px solid rgba(255,104,70,.3); border-radius: 999px; padding: 7px 10px;
  background: #fff7f1; color: var(--coral-dark); font-size: 8px; font-weight: 900;
  white-space: nowrap; cursor: pointer;
}
.bundle-add:hover { background: var(--coral); color: white; }
.direction-retry {
  border: 1px solid rgba(49,91,85,.25); border-radius: 999px; padding: 7px 10px;
  background: #eef3ef; color: var(--green); font-size: 8px; font-weight: 900;
  white-space: nowrap; cursor: pointer;
}
.direction-retry:hover { background: var(--green); color: white; }
.choice-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 9px; scrollbar-width: thin; }
.style-card {
  flex: 0 0 145px; height: 128px; position: relative; border: 1px solid transparent; border-radius: 15px;
  overflow: hidden; padding: 0; background: #e9ddd0; cursor: pointer; text-align: left;
}
.style-card.selected { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(255,104,70,.12); }
.style-card:disabled { cursor: wait; opacity: .72; }
.style-card .style-sample { height: 82px; position: relative; overflow: hidden; background: var(--style-accent); }
.style-card .style-sample.generated::before, .style-card .style-sample.generated::after { display: none; }
.style-card .style-sample img { width: 100%; height: 100%; display: block; object-fit: cover; }
.style-sample::before, .style-sample::after { content: ""; position: absolute; border-radius: 50%; }
.style-sample::before { width: 70px; height: 70px; left: 14px; top: 12px; background: rgba(255,255,255,.75); }
.style-sample::after { width: 42px; height: 42px; right: 8px; bottom: -5px; background: rgba(255,209,90,.85); }
.style-card:nth-child(2) .style-sample::before { border-radius: 6px; transform: rotate(18deg); }
.style-card:nth-child(3) .style-sample::before { background: transparent; border: 2px solid rgba(255,255,255,.8); }
.style-card:nth-child(4) .style-sample::after { background: rgba(62,47,35,.5); }
.style-card .style-copy { padding: 8px 9px; background: white; }
.style-card strong { display: block; font-size: 9px; }
.style-card span { display: block; margin-top: 2px; color: var(--muted); font-size: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.product-card {
  flex: 0 0 168px; height: 142px; position: relative; border-radius: 16px; border: 1px solid transparent;
  overflow: hidden; background: white; cursor: pointer; text-align: left; padding: 0;
}
.product-card.selected { border-color: var(--coral); }
.product-card .mini-mockup { height: 94px; background: var(--product-bg, #e8dbce); position: relative; overflow: hidden; }
.product-card .product-card-copy { padding: 7px 9px; display: flex; align-items: center; justify-content: space-between; gap: 5px; }
.product-card strong { font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-card .product-card-copy span { color: var(--coral-dark); font-size: 8px; font-weight: 900; }

.product-stage { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(220px, 340px); gap: clamp(22px, 5vw, 70px); padding: 30px clamp(30px, 5vw, 76px); }
.focused-mockup { min-height: 280px; position: relative; border-radius: 24px; background: #e5d7c9; overflow: hidden; }
.supplier-mockup { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.cart-supplier-preview { width: 100%; height: 100%; object-fit: cover; }
.focused-preview-status {
  position: absolute; z-index: 4; left: 13px; bottom: 13px; padding: 7px 9px;
  border-radius: 999px; background: rgba(255,255,255,.9); color: var(--muted);
  box-shadow: 0 4px 16px rgba(55,42,30,.1); font-size: 8px; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
}
.focused-preview-status.verified { color: var(--green); }
.focused-details h2 { margin: 10px 0 8px; font: 500 clamp(27px, 3vw, 40px)/1 Georgia, serif; letter-spacing: -.04em; }
.focused-details p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.product-badge { color: var(--coral-dark); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.variant-picker { margin-top: 18px; }
.variant-picker > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.variant-picker > div { display: flex; flex-wrap: wrap; gap: 7px; }
.variant-option {
  min-width: 42px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--white); color: var(--ink); font-size: 10px; font-weight: 800;
}
.variant-option.selected { border-color: var(--green); background: var(--green); color: white; }
.focused-buy-row { margin-top: 22px; display: flex; align-items: center; gap: 18px; }
.focused-buy-row > strong { font: 500 22px Georgia, serif; }

/* Reusable product silhouettes */
.mockup { position: absolute; inset: 0; display: grid; place-items: center; }
.mockup .object { position: relative; background: #fffaf2; box-shadow: 0 12px 30px rgba(70,50,34,.2); }
.mockup .print { position: absolute; overflow: hidden; background-position: center; background-size: cover; }
.mockup-shirt .object {
  width: 51%; height: 67%; border-radius: 8% 8% 14% 14%; background: #f7f0e7;
  clip-path: polygon(27% 0, 40% 8%, 60% 8%, 73% 0, 100% 18%, 86% 39%, 76% 32%, 79% 100%, 21% 100%, 24% 32%, 14% 39%, 0 18%);
}
.mockup-shirt .object::before {
  content: ""; position: absolute; z-index: 2; width: 25%; aspect-ratio: 1; left: 37.5%; top: -2%;
  border-radius: 50%; background: var(--product-bg, #e8dbce); box-shadow: inset 0 -3px 7px rgba(64,45,32,.12);
}
.mockup-shirt .print { inset: 28% 27% 20%; border-radius: 4px; }
.mockup-mug .object { width: 42%; height: 58%; border-radius: 7px 7px 13px 13px; }
.mockup-mug .object::after { content: ""; position: absolute; right: -25%; top: 16%; width: 35%; height: 46%; border: 7px solid #fffaf2; border-left: 0; border-radius: 0 50% 50% 0; }
.mockup-mug .print { inset: 20% 13% 18%; border-radius: 3px; }
.mockup-frame .object { width: 50%; height: 72%; border: 7px solid #b78558; background: white; transform: rotate(-2deg); }
.mockup-frame .print { inset: 8%; }
.mockup-tote .object { width: 52%; height: 58%; bottom: -5%; border-radius: 3px 3px 10px 10px; background: #eee1ca; }
.mockup-tote .object::before { content: ""; position: absolute; width: 45%; height: 38%; left: 27%; top: -27%; border: 7px solid #eee1ca; border-bottom: 0; border-radius: 40% 40% 0 0; }
.mockup-tote .print { inset: 19% 18% 12%; }
.mockup-cushion .object { width: 57%; aspect-ratio: 1; border-radius: 15% 8% 15% 9%; transform: rotate(3deg); background: #f3e9d9; }
.mockup-cushion .print { inset: 17%; border-radius: 7px; }
.mockup-magnet .object { width: 45%; aspect-ratio: 1; border-radius: 14px; transform: rotate(-5deg); border: 5px solid white; }
.mockup-magnet .print { inset: 0; border-radius: 9px; }

.cart-panel { border-left: 1px solid var(--line); }
.cart-heading { height: 66px; flex: none; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid var(--line); }
.cart-heading span, .cart-heading strong { display: block; }
.cart-heading div > span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.cart-heading strong { font: 500 16px Georgia, serif; margin-top: 2px; }
.cart-heading button { display: none; font-size: 20px; }
.empty-cart { flex: 1; display: grid; place-content: center; text-align: center; padding: 25px; }
.empty-stack { width: 85px; height: 70px; position: relative; margin: 0 auto 18px; }
.empty-stack span { position: absolute; width: 55px; height: 44px; border-radius: 11px; border: 1px solid #d8cdc2; background: #faf4ec; }
.empty-stack span:nth-child(1) { left: 5px; top: 17px; transform: rotate(-8deg); }
.empty-stack span:nth-child(2) { right: 3px; top: 9px; transform: rotate(7deg); }
.empty-stack span:nth-child(3) { left: 17px; top: 0; display: grid; place-items: center; color: var(--coral); font-size: 16px; }
.empty-cart strong { font: 500 16px Georgia, serif; }
.empty-cart p { margin: 7px auto; max-width: 180px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.cart-items { flex: 1; min-height: 0; overflow-y: auto; padding: 10px 13px; }
.cart-item { display: grid; grid-template-columns: 62px 1fr auto; gap: 9px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { height: 58px; position: relative; border-radius: 10px; background: #e6d8cb; overflow: hidden; }
.cart-item strong { display: block; font-size: 10px; line-height: 1.25; }
.cart-item span { display: block; color: var(--muted); font-size: 8px; margin-top: 4px; }
.cart-item .cart-price { color: var(--ink); font-size: 10px; font-weight: 900; }
.cart-item button { border: 0; background: none; color: #a69a90; font-size: 15px; cursor: pointer; }
.quantity-control {
  width: max-content; display: inline-flex; align-items: center; gap: 3px; margin-top: 7px;
  padding: 2px; border: 1px solid var(--line); border-radius: 999px; background: white;
}
.cart-item .quantity-control button {
  width: 20px; height: 20px; display: grid; place-items: center; padding: 0;
  border-radius: 50%; color: var(--ink); font-size: 11px;
}
.cart-item .quantity-control button:hover { background: #f2e9de; }
.cart-item .quantity-control span {
  min-width: 14px; margin: 0; text-align: center; color: var(--ink); font-size: 8px; font-weight: 900;
}
.cart-companion {
  display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 9px;
  margin: 0 13px 10px; padding: 9px; border: 1px solid rgba(49,91,85,.16);
  border-radius: 14px; background: #eef3ef;
}
.companion-thumb {
  height: 50px; position: relative; overflow: hidden; border-radius: 9px; background: #e4dbd0;
}
.companion-copy span, .companion-copy strong, .companion-copy small { display: block; }
.companion-copy span {
  color: var(--green); font-size: 7px; font-weight: 900; letter-spacing: .06em;
  text-transform: uppercase;
}
.companion-copy strong { margin-top: 3px; font-size: 10px; }
.companion-copy small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.cart-companion > button {
  border: 0; border-radius: 999px; padding: 7px 10px; background: var(--green);
  color: white; cursor: pointer; font-size: 8px; font-weight: 900;
}
.cart-companion > button:hover { background: #244b46; }
.cart-summary { margin-top: auto; padding: 16px; border-top: 1px solid var(--line); background: #faf5ed; }
.cart-summary > div { display: flex; justify-content: space-between; font-size: 11px; }
.cart-summary p { color: var(--muted); font-size: 9px; line-height: 1.45; }
.cart-summary small { display: block; margin-top: 8px; text-align: center; color: #948a81; font-size: 8px; }

.modal-backdrop { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(38,31,27,.5); backdrop-filter: blur(8px); }
.modal { width: min(430px, 100%); position: relative; padding: 34px; border-radius: 24px; background: var(--cream); box-shadow: 0 28px 90px rgba(0,0,0,.25); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border: 0; border-radius: 50%; background: #eee4da; cursor: pointer; font-size: 19px; }
.modal-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 16px; background: var(--green); color: white; font-size: 20px; }
.coral-icon { background: var(--coral); }
.modal h2 { font-size: 36px; line-height: 1; }
.modal > p:not(.eyebrow) { color: var(--muted); font-size: 13px; line-height: 1.6; }
.modal > small { display: block; margin-top: 11px; text-align: center; color: #8c8279; font-size: 9px; }
.device-code { margin: 18px 0; padding: 15px; text-align: center; background: #f0e6db; border-radius: 14px; }
.device-code span { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.device-code strong { display: block; margin-top: 7px; font: 500 28px Georgia, serif; letter-spacing: .08em; }
.checkout-modal {
  width: min(920px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; padding: 30px;
  background: var(--white);
}
.checkout-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-right: 38px; }
.checkout-heading .eyebrow { margin-bottom: 9px; }
.checkout-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); }
.checkout-heading > div > p:last-child { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.checkout-step {
  flex: none; padding: 7px 10px; border-radius: 999px; background: #eef3ef; color: var(--green);
  font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase;
}
.checkout-layout {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(270px, .85fr);
  gap: 28px; margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--line);
}
.delivery-form { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 13px; }
.form-section-heading { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.form-section-heading > span {
  width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%;
  background: var(--green); color: white; font-size: 8px; font-weight: 900;
}
.form-section-heading strong, .form-section-heading small { display: block; }
.form-section-heading strong { font: 500 17px Georgia, serif; }
.form-section-heading small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.field { display: grid; gap: 5px; }
.field.full, .optional-delivery.full, .checkout-assurance.full { grid-column: 1 / -1; }
.field > span { color: #645d56; font-size: 9px; font-weight: 800; }
.field input, .field select {
  width: 100%; min-width: 0; height: 42px; padding: 0 11px; border: 1px solid #d9d0c7;
  border-radius: 11px; outline: 0; background: white; color: var(--ink); font-size: 11px;
}
.field input:focus, .field select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,104,70,.1); }
.optional-delivery {
  border: 1px solid #ded5cc; border-radius: 11px; background: #fbf7f1;
}
.optional-delivery summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px; cursor: pointer; color: #645d56; font-size: 9px; font-weight: 800;
  list-style: none;
}
.optional-delivery summary::-webkit-details-marker { display: none; }
.optional-delivery summary::after { content: "+"; color: var(--coral-dark); font-size: 15px; }
.optional-delivery[open] summary::after { content: "−"; }
.optional-delivery summary span {
  margin-left: auto; color: #91877e; font-size: 8px; font-weight: 700;
}
.optional-delivery > div {
  display: grid; grid-template-columns: 1fr 1fr; gap: 13px; padding: 0 11px 11px;
}
.checkout-assurance {
  display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 9px; margin-top: 3px;
  padding: 11px; border-radius: 12px; background: #f1f4ef; color: #55645f;
}
.checkout-assurance > span {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px;
  background: var(--green); color: white;
}
.checkout-assurance p { margin: 0; font-size: 8px; line-height: 1.5; }
.checkout-assurance strong { display: block; color: #344b46; font-size: 9px; }
.order-review { position: relative; padding: 18px; border-radius: 18px; background: #f6efe6; }
.order-review .form-section-heading > span { background: var(--coral); }
.review-items { margin: 14px 0; border-top: 1px solid var(--line); }
.review-item {
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 9px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.review-thumb { height: 48px; position: relative; overflow: hidden; border-radius: 9px; background: #e5d7c9; }
.review-item strong, .review-item span { display: block; }
.review-item strong { font-size: 9px; }
.review-item span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.review-item > strong { font-size: 9px; }
.review-totals { margin: 0; }
.review-totals > div { display: flex; justify-content: space-between; gap: 15px; padding: 4px 0; font-size: 9px; }
.review-totals dt { color: var(--muted); }
.review-totals dd { margin: 0; font-weight: 900; }
.review-totals .review-total { margin-top: 7px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 11px; }
.review-totals .review-total dt { color: var(--ink); font-weight: 900; }
.shipping-note { margin: 10px 0 14px; color: var(--muted); font-size: 8px; line-height: 1.45; }
.payment-note {
  display: block;
  margin-top: 8px;
  text-align: center;
  color: #7e746b;
  font-size: 8px;
  line-height: 1.45;
}
.checkout-blocker {
  position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; text-align: center;
  padding: 28px; border-radius: inherit; background: rgba(247,241,232,.97); backdrop-filter: blur(5px);
}
.checkout-blocker strong { font: 500 24px Georgia, serif; }
.checkout-blocker p { margin: 9px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.checkout-blocker button {
  justify-self: center; border: 0; border-bottom: 1px solid currentColor; background: none;
  color: var(--coral-dark); font-size: 9px; font-weight: 900; cursor: pointer;
}
.checkout-modal.checkout-paused { width: min(720px, 100%); }
.checkout-modal.checkout-paused .checkout-layout {
  width: min(560px, 100%);
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}
.checkout-modal.checkout-paused .order-review { padding: 22px; }
.checkout-modal.checkout-paused .checkout-blocker {
  position: static;
  margin-top: 18px;
  padding: 22px;
  background: #eef3ef;
  backdrop-filter: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f3eadf;
}
.site-footer .brand { font-size: 19px; }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}
.site-footer nav a,
.payment-note a {
  color: #405f57;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-body { min-height: 100dvh; background: var(--paper); }
.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}
.legal-shell > h1 {
  max-width: 760px;
  margin: 12px 0 28px;
  font: 500 clamp(42px, 7vw, 76px)/0.98 Georgia, serif;
  letter-spacing: -0.05em;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.legal-nav a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}
.legal-nav a[aria-current="page"] {
  border-color: var(--green);
  background: var(--green);
  color: white;
}
.legal-document {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fffaf4;
  box-shadow: 0 24px 70px rgba(59, 42, 31, 0.08);
}
.legal-document section + section {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.legal-document h2 {
  margin: 0 0 12px;
  font: 500 clamp(25px, 3.5vw, 34px)/1.05 Georgia, serif;
}
.legal-document p {
  margin: 0 0 12px;
  color: #4e5854;
  font-size: 14px;
  line-height: 1.75;
}
.legal-effective {
  margin-bottom: 30px !important;
  color: var(--muted) !important;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trader-details {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) 1.4fr;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.trader-details dt,
.trader-details dd {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
}
.trader-details dt {
  padding-right: 20px;
  color: var(--muted);
  font-weight: 900;
}
.trader-details dd { color: var(--ink); }
.trader-details a,
.legal-help a { color: #315e54; font-weight: 900; }
.legal-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1e7db;
  font-size: 12px;
}
.order-success {
  min-height: calc(100dvh - 76px); display: grid; place-items: center; padding: 40px 20px;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,209,90,.24), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(49,91,85,.18), transparent 30%),
    var(--paper);
}
.success-card {
  width: min(620px, 100%); padding: clamp(34px, 6vw, 68px); text-align: center;
  border: 1px solid rgba(76,55,40,.1); border-radius: 30px; background: var(--white);
  box-shadow: var(--shadow);
}
.success-mark {
  width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 24px;
  border-radius: 22px; background: var(--green); color: white; font-size: 28px;
  box-shadow: 0 14px 34px rgba(49,91,85,.2); transform: rotate(-3deg);
}
.success-mark.pending { background: var(--yellow); color: var(--ink); }
.success-mark.issue { background: var(--coral); color: white; }
.success-card .eyebrow { justify-content: center; }
.success-card h1 { margin: 14px 0 10px; font-size: clamp(44px, 7vw, 68px); line-height: .95; }
.success-card > p:not(.eyebrow) { margin: 0 auto; max-width: 420px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.success-order {
  margin: 28px 0; padding: 17px; border-radius: 16px; background: #f3ece3;
}
.success-order span, .success-order strong, .success-order small { display: block; }
.success-order span { color: var(--coral-dark); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.success-order strong { margin-top: 4px; font: 500 18px Georgia, serif; }
.success-order small { margin-top: 6px; color: var(--muted); font-size: 9px; }
.success-order a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--green); font-size: 10px; font-weight: 900; }
.success-support {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-underline-offset: 3px;
}
.toast {
  position: fixed; z-index: 100; left: 50%; bottom: 24px; transform: translateX(-50%);
  max-width: calc(100vw - 32px); padding: 11px 16px; border-radius: 999px; background: var(--ink);
  color: white; box-shadow: 0 12px 40px rgba(0,0,0,.25); font-size: 11px; font-weight: 700;
}

@keyframes message-in { from { opacity: 0; transform: translateY(4px); } }
@keyframes think { 0%, 70%, 100% { transform: translateY(0); opacity: .45; } 35% { transform: translateY(-3px); opacity: 1; } }

@media (max-width: 1100px) {
  .hero-shell { grid-template-columns: 1fr 1fr; padding-left: 34px; padding-right: 34px; }
  .studio-layout { grid-template-columns: 280px minmax(440px, 1fr); }
  .cart-panel { position: fixed; z-index: 50; top: 76px; right: 0; bottom: 0; width: 310px; transform: translateX(102%); transition: transform .25s ease; box-shadow: -20px 0 50px rgba(42,32,24,.14); }
  .cart-panel.open { transform: translateX(0); }
  .cart-heading button { display: block; }
  .cart-mobile-button { justify-self: end; display: inline-flex; align-items: center; gap: 7px; border: 0; border-radius: 999px; padding: 8px 11px; background: var(--ink); color: white; font-size: 9px; font-weight: 900; }
  .cart-mobile-button span { width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); }
}

@media (max-width: 800px) {
  .site-header { height: 66px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .header-nav { display: none; }
  .header-actions { grid-column: 2; }
  .button-quiet { padding: 9px 12px; font-size: 11px; }
  .mode-pill { display: none !important; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; padding: 35px 20px 55px; gap: 34px; }
  .hero-copy h1 { font-size: clamp(54px, 18vw, 78px); }
  .hero-intro { font-size: 15px; }
  .idea-actions { align-items: stretch; flex-direction: column; }
  .resume-project { grid-template-columns: 34px 1fr; }
  .resume-project .button { grid-column: 1 / -1; width: 100%; }
  .upload-button { padding-left: 3px; }
  .hero-visual { min-height: 390px; }
  .hero-visual img { height: 390px; border-radius: 34% 16px 16px 16px; }
  .note-one { left: 2%; top: -3%; }
  .note-two { right: 1%; bottom: -4%; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .possibility-section { padding: 75px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .product-editorial-grid { display: flex; overflow-x: auto; padding-bottom: 10px; }
  .editorial-card, .editorial-card:nth-child(n) { flex: 0 0 78vw; min-height: 370px; }
  .steps-section { grid-template-columns: 1fr; }
  .steps-art { min-height: 430px; }
  .orbit-one { width: 370px; height: 370px; left: -3%; }
  .steps-copy { padding: 65px 24px; }
  .studio { height: calc(100dvh - 66px); min-height: 580px; }
  .studio-topline { height: 56px; grid-template-columns: 1fr auto; padding: 0 12px; }
  .studio-progress { display: none; }
  .studio-layout { height: calc(100% - 56px); display: block; }
  .conversation-panel { position: absolute; z-index: 20; left: 0; right: 0; bottom: 0; height: 200px; border: 0; border-top: 1px solid var(--line); }
  .panel-heading { display: none; }
  .conversation { display: none; }
  .canvas-panel { height: 100%; padding-bottom: 200px; }
  .canvas-toolbar { height: 48px; padding: 0 12px; }
  .artwork-stage, .product-stage { min-height: 220px; padding: 12px 18px; }
  .artwork-frame { width: min(43vh, 78vw); border-width: 7px; }
  .artwork-caption { left: 10px; bottom: 8px; }
  .choice-tray { height: 190px; padding: 12px; }
  .tray-actions > span { display: none; }
  .style-card { flex-basis: 128px; height: 112px; }
  .style-card .style-sample { height: 70px; }
  .product-card { flex-basis: 150px; height: 125px; }
  .product-card .mini-mockup { height: 80px; }
  .product-stage {
    grid-template-columns: minmax(135px, .9fr) minmax(0, 1.1fr);
    gap: 14px;
    overflow: hidden;
    align-items: center;
  }
  .focused-mockup { min-height: 220px; }
  .focused-details { padding-bottom: 12px; }
  .focused-details h2 { margin: 6px 0; font-size: clamp(22px, 7vw, 28px); }
  .focused-details p { display: none; }
  .variant-picker { margin-top: 10px; }
  .variant-picker > span { margin-bottom: 6px; font-size: 8px; }
  .variant-picker > div { gap: 5px; }
  .variant-option { min-width: 38px; padding: 7px 8px; font-size: 9px; }
  .focused-buy-row { flex-wrap: wrap; gap: 8px; margin-top: 10px; }
  .focused-buy-row > strong { font-size: 19px; }
  .focused-buy-row .button { width: 100%; padding: 10px 12px; font-size: 9px; }
  .cart-panel { top: 66px; }
  .modal-backdrop { padding: 0; align-items: end; }
  .modal { border-radius: 24px 24px 0 0; }
  .checkout-modal { max-height: 94dvh; padding: 24px 18px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .delivery-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .optional-delivery > div { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer nav { justify-content: flex-start; }
  .legal-shell { width: min(100% - 28px, 900px); padding: 46px 0 64px; }
  .legal-document { padding: 24px 18px; border-radius: 18px; }
  .trader-details { grid-template-columns: 1fr; }
  .trader-details dt { padding-bottom: 3px; border-bottom: 0; }
  .trader-details dd { padding-top: 0; }
  .legal-help { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  .product-stage { grid-template-columns: minmax(120px, 1fr) minmax(0, 1fr); }
  .focused-mockup { min-height: 180px; }
  .product-badge { display: none; }
  .focused-details { padding-bottom: 0; }
  .focused-details h2 { margin: 0 0 4px; font-size: 20px; line-height: .95; }
  .variant-picker { margin-top: 6px; }
  .variant-picker > span { margin-bottom: 4px; }
  .variant-option { min-width: 34px; padding: 5px 6px; }
  .focused-buy-row { gap: 4px; margin-top: 6px; }
  .focused-buy-row > strong { font-size: 18px; }
  .focused-buy-row .button { padding: 8px 10px; }
}

@media (max-width: 800px) and (max-height: 720px) {
  .conversation-panel { height: 160px; }
  .canvas-panel { padding-bottom: 160px; }
  .choice-tray { height: 140px; }
  .artwork-stage, .product-stage { min-height: 196px; }
  .style-card { height: 67px; }
  .style-card .style-sample { height: 39px; }
  .style-card .style-copy { padding: 5px 7px; }
  .style-card .style-copy span { display: none; }
  .product-card { height: 67px; }
  .product-card .mini-mockup { height: 41px; }
  .product-card .product-card-copy { padding: 4px 7px; }
  .focused-mockup { min-height: 160px; }
  .product-badge { display: none; }
  .focused-details { padding-bottom: 0; }
  .focused-details h2 { margin: 0 0 4px; font-size: 22px; line-height: .95; }
  .variant-picker { margin-top: 6px; }
  .variant-picker > span { margin-bottom: 4px; }
  .variant-picker > div { gap: 4px; }
  .variant-option { min-width: 0; padding: 5px 6px; font-size: 8px; }
  .focused-buy-row { flex-wrap: nowrap; gap: 6px; margin-top: 6px; }
  .focused-buy-row > strong { font-size: 18px; }
  .focused-buy-row .button { width: auto; flex: 1; padding: 8px 6px; font-size: 8px; }
}

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