:root {
  --ink: #0b0c0d;
  --ink-2: #111315;
  --ink-3: #181b1e;
  --panel: rgba(18, 20, 22, .92);
  --panel-soft: rgba(18, 20, 22, .72);
  --paper: #f2efe8;
  --paper-2: #d7d1c7;
  --muted: #969a9d;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.23);
  --accent: #d6ff55;
  --accent-ink: #171a0b;
  --danger: #ff7d74;
  --warning: #ffd36a;
  --success: #8ce0a3;
  --shadow: 0 24px 80px rgba(0,0,0,.48);
  --radius: 20px;
  --radius-sm: 11px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1480px;
  --header: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(214,255,85,.055), transparent 28rem),
    linear-gradient(180deg, #0a0b0c 0%, #0c0e10 70%, #090a0b 100%);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
::selection { color: #111; background: var(--accent); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 500;
  opacity: .09; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header); display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px; padding: 0 clamp(20px, 4vw, 66px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(10,11,12,.82); border-color: var(--line); backdrop-filter: blur(24px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 210px; }
.brand-mark {
  width: 39px; aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid var(--paper); border-radius: 50%; position: relative;
}
.brand-mark::before, .brand-mark::after { content: ''; position: absolute; background: var(--paper); }
.brand-mark::before { width: 1px; height: 21px; transform: rotate(45deg); }
.brand-mark::after { width: 21px; height: 1px; transform: rotate(45deg); }
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-size: 12px; letter-spacing: .28em; font-weight: 650; }
.brand-type span { margin-top: 6px; color: var(--muted); font-size: 9px; letter-spacing: .34em; text-transform: uppercase; }

.main-nav { justify-self: center; display: flex; align-items: center; gap: 7px; }
.nav-link {
  border: 0; background: none; padding: 10px 14px; cursor: pointer; border-radius: 999px;
  color: #c5c7c8; font-size: 13px; letter-spacing: .06em; transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.is-active { color: white; background: rgba(255,255,255,.07); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn, .cart-button, .outline-btn, .solid-btn, .text-btn {
  border: 0; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.icon-btn {
  width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.055); border: 1px solid var(--line); color: var(--paper);
}
.icon-btn:hover { background: rgba(255,255,255,.11); border-color: var(--line-strong); transform: translateY(-1px); }
.cart-button {
  display: inline-flex; align-items: center; gap: 9px; height: 43px; padding: 0 15px;
  border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-weight: 750; font-size: 13px;
}
.cart-button:hover, .solid-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.cart-count {
  display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px; background: rgba(0,0,0,.15); font-size: 11px;
}
.mobile-menu-btn { display: none; }

main { min-height: 72vh; }
.view { display: none; animation: view-in .48s ease both; }
.view.is-active { display: block; }
@keyframes view-in { from { opacity: 0; transform: translateY(10px); } }

.hero {
  min-height: 100svh; padding: calc(var(--header) + 54px) clamp(20px, 5vw, 80px) 54px;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(30px, 5vw, 90px);
  align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 52vw; height: 52vw; max-width: 850px; max-height: 850px;
  right: -12vw; top: -15vw; border: 1px solid rgba(255,255,255,.065); border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(255,255,255,.012), 0 0 0 18vw rgba(255,255,255,.008);
  animation: orbit 28s linear infinite; pointer-events: none;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-copy { max-width: 780px; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--accent); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 750; }
.eyebrow::before { content: ''; width: 42px; height: 1px; background: currentColor; }
.hero h1 {
  margin: 24px 0 24px; font: 400 clamp(64px, 8vw, 128px)/.82 var(--serif); letter-spacing: -.065em;
  max-width: 820px;
}
.hero h1 em { font-weight: 400; color: var(--accent); }
.hero-lead { max-width: 650px; margin: 0 0 34px; color: #bbbdbf; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.solid-btn, .outline-btn {
  min-height: 49px; padding: 0 20px; border-radius: 999px; display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  font-weight: 750; font-size: 13px; letter-spacing: .02em;
}
.solid-btn { background: var(--accent); color: var(--accent-ink); }
.solid-btn.dark { background: #181a1d; color: var(--paper); }
.outline-btn { background: transparent; border: 1px solid var(--line-strong); color: var(--paper); }
.outline-btn:hover { border-color: var(--paper); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.text-btn { padding: 0; background: transparent; color: var(--paper); display: inline-flex; align-items: center; gap: 7px; font-weight: 700; }
.text-btn:hover { color: var(--accent); }

.hero-art { min-height: 650px; position: relative; perspective: 1200px; z-index: 2; }
.hero-frame {
  position: absolute; inset: 4% 8% 7% 12%; padding: clamp(16px, 1.7vw, 28px);
  background: #101113; box-shadow: 0 60px 120px rgba(0,0,0,.65), inset 0 0 0 1px rgba(255,255,255,.12);
  transform: rotateY(-8deg) rotateX(2deg); animation: float-frame 9s ease-in-out infinite;
}
@keyframes float-frame { 0%,100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); } 50% { transform: rotateY(-5deg) rotateX(1deg) translateY(-12px); } }
.hero-mat { width: 100%; height: 100%; padding: 8%; background: #e9e6df; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))) contrast(1.08); }
.hero-plaque {
  position: absolute; right: 0; bottom: 3%; width: min(280px, 48%); padding: 22px;
  background: rgba(17,19,21,.92); border: 1px solid var(--line); backdrop-filter: blur(18px); box-shadow: var(--shadow);
}
.hero-plaque span { color: var(--muted); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.hero-plaque strong { display: block; margin-top: 8px; font: 400 24px/1.1 var(--serif); }
.hero-plaque small { display: block; margin-top: 8px; color: #a9abad; }
.hero-index { position: absolute; left: 2%; bottom: 8%; writing-mode: vertical-rl; transform: rotate(180deg); color: #74787b; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; }

.section { padding: clamp(72px, 8vw, 130px) clamp(20px, 5vw, 80px); }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 38px; }
.section-head h2, .page-hero h1 { margin: 10px 0 0; font: 400 clamp(42px, 5vw, 76px)/.95 var(--serif); letter-spacing: -.045em; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.kicker { color: var(--accent); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; font-weight: 750; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card {
  min-width: 0; background: #111315; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.28); box-shadow: 0 26px 70px rgba(0,0,0,.35); }
.product-card-media { height: 330px; position: relative; overflow: hidden; background: #1b1d1f; }
.product-card-media > img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .6s; }
.product-card:hover .product-card-media > img { transform: scale(1.055); filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))) contrast(1.12); }
.product-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.56)); }
.product-badge { position: absolute; z-index: 2; top: 15px; left: 15px; padding: 7px 10px; border-radius: 999px; background: rgba(12,13,14,.82); backdrop-filter: blur(8px); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.product-badge.editor { background: var(--accent); color: var(--accent-ink); font-weight: 800; }
.product-card-body { padding: 21px; }
.product-card-top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.product-card h3 { margin: 0; font: 400 24px/1.08 var(--serif); }
.product-price { white-space: nowrap; color: var(--accent); font-weight: 750; font-size: 14px; }
.product-card p { margin: 11px 0 20px; min-height: 47px; color: var(--muted); font-size: 13px; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); color: #d6d8da; font-size: 12px; }

.collection-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; min-height: 640px; gap: 18px; }
.collection-card { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); min-height: 310px; cursor: pointer; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.collection-card:hover img { transform: scale(1.05); }
.collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(4,5,6,.86)); }
.collection-copy { position: absolute; z-index: 2; inset: auto 28px 28px; }
.collection-copy span { color: var(--accent); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.collection-copy h3 { margin: 8px 0 7px; font: 400 clamp(28px, 3vw, 48px)/.95 var(--serif); }
.collection-copy p { margin: 0; max-width: 420px; color: #b7b9bb; font-size: 13px; }

.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.promise { padding: 32px; min-height: 220px; border-right: 1px solid var(--line); background: rgba(255,255,255,.015); }
.promise:last-child { border-right: 0; }
.promise svg { color: var(--accent); }
.promise h3 { margin: 28px 0 9px; font: 400 23px/1 var(--serif); }
.promise p { margin: 0; color: var(--muted); font-size: 13px; }

.page-hero { padding: calc(var(--header) + 70px) clamp(20px, 5vw, 80px) 52px; border-bottom: 1px solid var(--line); }
.page-hero-inner { width: min(100%, var(--max)); margin: 0 auto; display: flex; justify-content: space-between; align-items: end; gap: 38px; }
.page-hero p { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; }

.shop-layout { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 250px 1fr; gap: 36px; padding: 44px clamp(20px, 5vw, 80px) 110px; }
.shop-filters { position: sticky; top: calc(var(--header) + 24px); align-self: start; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: rgba(18,20,22,.72); backdrop-filter: blur(18px); }
.filter-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.filter-title strong { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
.filter-group:first-of-type { border-top: 0; }
.filter-group label { display: flex; align-items: center; gap: 9px; padding: 7px 0; color: #bbbdbf; font-size: 13px; cursor: pointer; }
.filter-group input { accent-color: var(--accent); }
.filter-group-title { display: block; color: var(--muted); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; }
.shop-main { min-width: 0; }
.shop-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.search-box { flex: 1; position: relative; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search-box input, .toolbar-select {
  width: 100%; height: 47px; border: 1px solid var(--line); border-radius: 999px; background: #111315; color: var(--paper); outline: none;
}
.search-box input { padding: 0 18px 0 45px; }
.search-box input:focus, .toolbar-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,255,85,.1); }
.toolbar-select { width: auto; min-width: 170px; padding: 0 38px 0 15px; }
.shop-result-count { color: var(--muted); font-size: 12px; white-space: nowrap; }
.shop-main .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.gallery-access-wrap { min-height: calc(100svh - var(--header)); padding: calc(var(--header) + 70px) 20px 80px; display: grid; place-items: center; }
.gallery-access-card { width: min(940px, 100%); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #111315; box-shadow: var(--shadow); }
.gallery-access-image { min-height: 560px; position: relative; }
.gallery-access-image img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.gallery-access-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.7)); }
.gallery-access-copy { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.gallery-access-copy h1 { margin: 16px 0; font: 400 52px/.95 var(--serif); }
.gallery-access-copy p { color: var(--muted); }
.stack-form { display: grid; gap: 14px; margin-top: 24px; }
.field { display: grid; gap: 7px; }
.field label { color: #b9bbbd; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #0c0e10; color: var(--paper); color-scheme: dark; padding: 11px 13px; outline: none;
}
select { color-scheme: dark; }
select option, .field select option, option { color-scheme: dark; background-color: #0c0e10; color: #f2f1ec; }
.field textarea { min-height: 94px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,255,85,.09); }
.help { color: var(--muted); font-size: 11px; }

.order-lookup { padding: calc(var(--header) + 70px) 20px 100px; min-height: 75svh; }
.lookup-card { width: min(760px,100%); margin: 0 auto; padding: clamp(28px,5vw,62px); border: 1px solid var(--line); border-radius: 28px; background: #111315; }
.lookup-card h1 { margin: 12px 0 12px; font: 400 54px/.95 var(--serif); }
.lookup-result { margin-top: 28px; }
.order-summary-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.order-summary-head { padding: 20px; display: flex; justify-content: space-between; gap: 18px; background: rgba(255,255,255,.035); }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: rgba(140,224,163,.1); color: var(--success); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.order-timeline { padding: 18px 20px; }
.timeline-row { display: grid; grid-template-columns: 15px 1fr auto; gap: 12px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.timeline-row:last-child { border-bottom: 0; }
.timeline-dot { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(214,255,85,.08); }
.timeline-row strong { display: block; font-size: 13px; }
.timeline-row small { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 50px clamp(20px,5vw,80px) 30px; }
.footer-inner { width: min(100%,var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 40px; }
.footer-lead { max-width: 420px; }
.footer-lead p { color: var(--muted); font-size: 13px; }
.footer-col h4 { margin: 0 0 14px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.footer-col a, .footer-col button { display: block; margin: 8px 0; background: none; border: 0; padding: 0; color: #c9cbcd; font-size: 13px; cursor: pointer; }
.footer-col a:hover, .footer-col button:hover { color: var(--accent); }
.footer-bottom { width: min(100%,var(--max)); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #6f7376; font-size: 10px; letter-spacing: .08em; }

/* Product configurator */
.modal-shell { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 18px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(3,4,5,.82); backdrop-filter: blur(14px); animation: fade-in .25s ease both; }
@keyframes fade-in { from { opacity: 0; } }
.product-modal {
  position: relative; z-index: 1; width: min(1400px, 100%); height: min(900px, calc(100svh - 36px));
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(400px, 2fr); border: 1px solid var(--line-strong); border-radius: 18px; overflow: hidden;
  background: #101214; box-shadow: 0 40px 140px rgba(0,0,0,.72); animation: modal-in .45s cubic-bezier(.16,.8,.22,1) both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.985); } }
.modal-close { position: absolute; top: 17px; right: 17px; z-index: 10; background: rgba(12,13,14,.8); backdrop-filter: blur(10px); }
.config-preview { min-width: 0; position: relative; padding: 52px clamp(24px,4vw,64px); display: grid; place-items: center; overflow: hidden; background: #d6d2c9; color: #171818; }
.room-scene { position: absolute; inset: 0; overflow: hidden; }
.room-wall { position: absolute; inset: 0 0 28%; background: linear-gradient(115deg, #d9d5cc, #bcb7ad); }
.room-wall::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.28), transparent 42%, rgba(0,0,0,.08)); }
.room-floor { position: absolute; inset: 72% 0 0; background: linear-gradient(165deg, #6b6257, #332f2c); }
.room-floor::before { content: ''; position: absolute; inset: 0; opacity: .18; background: repeating-linear-gradient(91deg, transparent 0 90px, #000 91px 93px); }
.room-console { position: absolute; left: 10%; right: 10%; bottom: 13%; height: 17%; background: #2c2926; box-shadow: 0 20px 34px rgba(0,0,0,.3); }
.room-console::before, .room-console::after { content: ''; position: absolute; bottom: -50px; width: 7px; height: 52px; background: #1f1c1a; }
.room-console::before { left: 9%; }.room-console::after { right: 9%; }
.room-object { position: absolute; right: 17%; bottom: 31%; width: 34px; height: 100px; border-radius: 50% 50% 12px 12px; background: #74716b; }
.wall-art {
  --art-ratio: 1.5; --frame-color: #171717; --mat-size: 26px;
  position: relative; z-index: 2; width: min(57%, 560px); aspect-ratio: var(--art-ratio); padding: var(--mat-size); background: #eeeae3;
  border: 14px solid var(--frame-color); box-shadow: 0 22px 50px rgba(0,0,0,.32), 0 2px 2px rgba(0,0,0,.4); transition: width .35s, aspect-ratio .35s, border-width .35s, padding .35s;
}
.wall-art img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))) contrast(1.06); transform: scale(var(--photo-zoom, 1)) translate(var(--photo-x, 0), var(--photo-y, 0)); }
.wall-art.is-metal { padding: 0; border: 0; box-shadow: 0 28px 55px rgba(0,0,0,.38), 8px 8px 0 rgba(0,0,0,.16); }
.wall-art.is-canvas { padding: 0; border: 10px solid #343230; box-shadow: 12px 14px 0 rgba(0,0,0,.18), 0 25px 50px rgba(0,0,0,.28); }
.wall-art.is-wood { padding: 0; border: 0; box-shadow: 7px 8px 0 #645344, 0 25px 50px rgba(0,0,0,.28); }
.wall-art.is-print, .wall-art.is-poster { border: 0; padding: 0; box-shadow: 0 20px 42px rgba(0,0,0,.22); }
.wall-art.is-book { width: min(58%, 560px); aspect-ratio: 1.45; border: 0; padding: 0; background: #151515; transform: perspective(900px) rotateX(14deg) rotateZ(-2deg); border-radius: 4px 14px 14px 4px; box-shadow: 24px 30px 45px rgba(0,0,0,.34); }
.wall-art.is-book::after { content: ''; position: absolute; inset: 0 auto 0 49.5%; width: 1px; background: rgba(255,255,255,.18); box-shadow: 0 0 18px rgba(0,0,0,.9); }
.wall-art.is-card { width: min(46%, 420px); aspect-ratio: 1.4; border: 0; padding: 20px; background: #efebe3; transform: rotate(-3deg); box-shadow: 25px 28px 50px rgba(0,0,0,.3); }
.wall-art.is-card img { height: 72%; }
.card-demo-text { display: none; }
.wall-art.is-card .card-demo-text { display: block; font: 400 22px/1 var(--serif); text-align: center; padding-top: 12px; }
.preview-meta { position: absolute; left: 24px; bottom: 21px; z-index: 3; color: #343638; max-width: min(58%, 460px); }
.preview-meta span { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; opacity: .62; }
.preview-meta strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 400 18px/1.2 var(--serif); }
.preview-tools { position: absolute; right: 24px; bottom: 22px; z-index: 3; display: flex; gap: 7px; }
.preview-tools button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); background: rgba(255,255,255,.58); color: #151616; cursor: pointer; backdrop-filter: blur(10px); }
.config-preview-confidence { position: absolute; left: 20px; top: 20px; z-index: 3; display: grid; gap: 2px; max-width: min(52%, 300px); padding: 7px 9px; border: 1px solid rgba(38,42,40,.16); border-radius: 6px; background: rgba(247,245,239,.78); color: #454640; box-shadow: 0 5px 14px rgba(40,34,26,.06); backdrop-filter: blur(12px); }
.config-preview-confidence span { display: flex; align-items: center; gap: 6px; color: #262925; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.config-preview-confidence span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #6f8f5d; box-shadow: 0 0 0 3px rgba(111,143,93,.15); }
.config-preview-confidence small { color: #68675f; font-size: 9px; line-height: 1.35; }
.config-preview-confidence.is-illustrative { border-color: rgba(117,86,45,.24); background: rgba(255,250,239,.78); }
.config-preview-confidence.is-illustrative span::before { background: #b1844d; box-shadow: 0 0 0 3px rgba(177,132,77,.15); }

.config-panel { min-width: 0; overflow-y: auto; padding: 34px clamp(24px,3vw,42px) 30px; }
.config-panel .kicker { margin-bottom: 10px; }
.config-panel h2 { margin: 0; padding-right: 44px; font: 400 clamp(32px,3vw,44px)/1 var(--serif); letter-spacing: -.035em; }
.config-tagline { max-width: 43ch; margin: 12px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.config-price { display: flex; align-items: baseline; gap: 9px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.config-price strong { position: relative; display: inline-block; color: #f2f3ef; font-size: 24px; }
.config-price strong.is-changing { animation: config-price-in 560ms cubic-bezier(.22,1,.36,1) both; }
.config-price strong.is-changing::after { content: attr(data-previous-price); position: absolute; inset: 0 auto auto 0; white-space: nowrap; pointer-events: none; animation: config-price-out 420ms cubic-bezier(.22,1,.36,1) both; }
@keyframes config-price-in { from { opacity: 0; transform: translateY(9px); filter: blur(3px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes config-price-out { from { opacity: 1; transform: translateY(0); filter: blur(0); } to { opacity: 0; transform: translateY(-8px); filter: blur(3px); } }
.config-price span { color: var(--muted); font-size: 12px; }
.config-section { display: block; border-bottom: 1px solid var(--line); }
.config-section-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,170px) 18px; align-items: center; column-gap: 14px; width: 100%; margin: 0; padding: 20px 0; cursor: pointer; list-style: none; }
.config-section[open] > .config-section-head { padding-bottom: 13px; }
.config-section-head::-webkit-details-marker { display: none; }
.config-section-head::after { content: '+'; flex: none; color: var(--accent); font-size: 18px; font-weight: 400; line-height: 1; }
.config-section[open] > .config-section-head::after { content: '−'; }
.config-section-head:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 4px; }
.config-section-head strong { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.config-section-head span { justify-self: stretch; overflow: hidden; color: var(--muted); font-size: 12px; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
.config-section-body { padding-bottom: 22px; transform-origin: top; transition: opacity 240ms ease, transform 460ms cubic-bezier(.22,1,.36,1); }
.config-section-content { min-width: 0; }
.config-section.is-expanding > .config-section-body, .config-section.is-collapsing > .config-section-body { opacity: 0; transform: translateY(-8px) scale(.992); }
.config-step-rail { display: flex; gap: 6px; overflow-x: auto; padding: 2px 0 14px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.config-step { position: relative; flex: 0 0 auto; min-width: 118px; display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 8px; padding: 9px 10px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255,255,255,.018); color: var(--muted); text-align: left; cursor: pointer; transition: border-color 260ms ease, background-color 260ms ease, color 260ms ease, transform 260ms ease; }
.config-step:hover { border-color: var(--line-strong); color: #fff; transform: translateY(-1px); }
.config-step.is-active { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); color: #fff; box-shadow: 0 5px 16px rgba(0,0,0,.12); }
.config-step-number { color: var(--accent); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.config-step-copy { min-width: 0; display: grid; gap: 3px; }
.config-step-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.config-step-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: inherit; opacity: .68; font-size: 9px; }
.config-selection-summary { display: grid; gap: 10px; margin: 0; padding: 16px 0 14px; border-bottom: 1px solid var(--line); }
.config-selection-summary-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.config-selection-summary-head > div { min-width: 0; display: grid; gap: 4px; }
.config-selection-summary-head .kicker { margin: 0; color: var(--muted); font-size: 10px; }
.config-selection-summary-head strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #fff; font-size: 14px; font-weight: 600; }
.config-confidence-pill { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 6px; padding: 6px 8px; border: 1px solid rgba(111,143,93,.32); border-radius: 999px; color: #d8e7c7; background: rgba(111,143,93,.1); font-size: 9px; font-weight: 700; white-space: nowrap; }
.config-confidence-pill i { width: 6px; height: 6px; border-radius: 50%; background: #86ae70; }
.config-confidence-pill.is-illustrative { border-color: rgba(177,132,77,.34); color: #ead8bd; background: rgba(177,132,77,.1); }
.config-confidence-pill.is-illustrative i { background: #c3975f; }
.config-selection-chips { display: flex; flex-wrap: wrap; gap: 5px 14px; }
.config-selection-chip { display: inline-flex; align-items: baseline; gap: 5px; min-width: 0; max-width: 100%; padding: 0; border: 0; border-radius: 0; background: transparent; }
.config-selection-chip small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.config-selection-chip strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #e6e8e6; font-size: 12px; font-weight: 600; }
.config-construction-brief { display: grid; gap: 10px; padding: 14px 0 2px; }
.config-construction-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
.config-construction-grid > div { position: relative; display: grid; align-content: start; gap: 4px; min-width: 0; padding: 9px 10px; border: 1px solid var(--line); border-radius: 5px; background: transparent; }
.config-construction-grid > div::before { content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 2px; border-radius: 2px; background: var(--line-strong); }
.config-construction-grid > div.is-verified::before { background: #86ae70; }
.config-construction-grid > div.is-pending::before { background: #c3975f; }
.config-construction-grid small { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.config-construction-grid strong { color: #f1f2ef; font-size: 12px; font-weight: 650; line-height: 1.35; }
.config-construction-grid span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.config-mounting-upgrade-note { margin: 0; padding: 9px 10px; border-left: 2px solid #c3975f; background: rgba(177,132,77,.07); color: var(--muted); font-size: 9px; line-height: 1.45; }
.config-mounting-upgrade-note strong { color: #ead8bd; }
.config-production-details { margin-top: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.config-production-details > summary { display: grid; grid-template-columns: minmax(0,1fr) auto 18px; align-items: center; gap: 12px; padding: 13px 0; cursor: pointer; list-style: none; }
.config-production-details > summary::-webkit-details-marker { display: none; }
.config-production-details > summary::after { content: '+'; color: var(--muted); font-size: 17px; line-height: 1; }
.config-production-details[open] > summary::after { content: '−'; }
.config-production-details > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 3px; }
.config-production-details > summary span { color: #e7e8e5; font-size: 12px; font-weight: 600; }
.config-production-details > summary strong { color: var(--muted); font-size: 11px; font-weight: 500; }
.config-selection-summary > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.config-selection-empty,.config-option-empty { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.config-asset-section { display: grid; gap: 13px; padding: 2px 0 0; }
.config-asset-heading { display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.config-asset-heading > div { display: grid; gap: 5px; }
.config-asset-heading .kicker { margin: 0; color: var(--accent); font-size: 9px; }
.config-asset-heading h3 { margin: 0; color: #fff; font: 400 20px/1 var(--serif); letter-spacing: -.02em; }
.config-asset-heading > span { flex: 0 0 auto; color: var(--muted); font-size: 10px; }
.config-asset-picker { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.config-asset-picker .asset-choice { aspect-ratio: 1.15; border: 1px solid var(--line); border-radius: 9px; background: #252628; }
.config-asset-picker .asset-choice img { transition: transform 520ms cubic-bezier(.22,1,.36,1), filter 520ms ease; }
.config-asset-picker .asset-choice:hover img,.config-asset-picker .asset-choice.is-selected img { transform: scale(1.045); }
.config-asset-picker .asset-choice.is-selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.asset-choice-caption { position: absolute; left: 0; right: 0; bottom: 0; display: grid; gap: 3px; padding: 22px 8px 8px; background: linear-gradient(transparent, rgba(7,8,9,.9)); color: #fff; text-align: left; }
.asset-choice-caption strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; font-weight: 700; }
.asset-choice-caption small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(255,255,255,.7); font-size: 8px; }
.config-asset-picker .asset-choice.is-selected::after { right: 7px; top: 7px; width: 19px; height: 19px; }
.asset-picker { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.asset-choice { aspect-ratio: 1; border-radius: 8px; border: 2px solid transparent; overflow: hidden; padding: 0; background: #222; cursor: pointer; position: relative; }
.asset-choice img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.asset-choice.is-selected { border-color: var(--accent); }
.asset-choice.is-selected::after { content: '✓'; position: absolute; right: 4px; top: 4px; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #111; font-size: 10px; font-weight: 900; }
.option-category-nav { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.category-pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .02em; cursor: pointer; transition: all 260ms cubic-bezier(.22,1,.36,1); }
.category-pill:hover { border-color: var(--line-strong); color: #fff; background: rgba(255,255,255,.06); }
.category-pill.is-active { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); box-shadow: 0 2px 8px color-mix(in srgb, var(--accent) 15%, transparent); }
.category-pill small { opacity: .75; font-size: 10px; font-weight: 400; }
.option-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.config-option-note { margin: 0 0 12px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.option-choice { position: relative; isolation: isolate; overflow: hidden; min-height: 58px; padding: 8px 9px; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 9px; border-radius: 6px; border: 1px solid var(--line); background: transparent; color: #d1d3d4; cursor: pointer; text-align: left; font-size: 12px; transition: color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease, transform 260ms ease; }
.option-choice::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 72%); opacity: 0; transform: scale(.92); transition: opacity 520ms cubic-bezier(.22,1,.36,1), transform 520ms cubic-bezier(.22,1,.36,1); }
.option-choice:hover { border-color: var(--line-strong); }
.option-choice.is-selected { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); color: white; transform: none; }
.option-choice.is-selected::before { opacity: 1; transform: scale(1); }
.option-choice:disabled { cursor: not-allowed; opacity: .52; transform: none; }
.option-choice.is-unavailable { border-style: dashed; }
.product-card.is-unavailable { opacity: .74; }
.whcc-editor-artwork { position: relative; width: 100%; height: 100%; display: grid; place-items: center; overflow: hidden; background: #111; }
.whcc-editor-artwork img { width: 100%; height: 100%; object-fit: contain; }
.whcc-editor-artwork span { position: absolute; inset: auto 16px 16px; padding: 8px 10px; border-radius: 999px; color: #fff; background: rgba(0,0,0,.72); font-size: 12px; text-align: center; }
.whcc-editor-workflow { display: block; }
.option-choice-visual { position: relative; width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: linear-gradient(145deg,#34363a,#191a1c); }
.option-choice-visual > span { display: block; width: 70%; height: 70%; border-radius: 5px; background: linear-gradient(145deg,#555960,#242629); box-shadow: 0 4px 8px rgba(0,0,0,.25); }
.option-choice-visual.has-swatch > span { width: 100%; height: 100%; border-radius: 0; background: var(--choice-swatch); }
.option-choice-visual-size { background: rgba(255,255,255,.04); }
.option-choice-visual-size > span { width: calc(30px * var(--choice-ratio)); max-width: 32px; height: 28px; max-height: 32px; border: 1px solid rgba(214,255,85,.65); border-radius: 2px; background: linear-gradient(145deg,rgba(214,255,85,.32),rgba(214,255,85,.04)); }
.option-choice-visual-frame > span { background: linear-gradient(145deg,#474a4d,#151618); }
.option-choice-visual.has-supplier-photo { background: #eee; }
.option-choice-visual.has-supplier-photo > img { display: block; width: 100%; height: 100%; object-fit: contain; }
.option-choice-visual-mat > span { width: 30px; height: 30px; border: 6px solid #d7d4cc; background: #26272a; }
.option-choice-visual-media > span { background: linear-gradient(135deg,#d9d6ce 0 25%,#6c7074 25% 50%,#d0c4ad 50% 75%,#3e4448 75%); }
.option-choice-visual-glazing > span { border: 1px solid rgba(219,239,244,.7); background: linear-gradient(135deg,rgba(255,255,255,.65),rgba(116,169,183,.16) 48%,rgba(255,255,255,.05)); }
.option-choice-visual-mounting > span { width: 26px; height: 19px; border: 2px solid #8b8d8f; background: transparent; box-shadow: 0 9px 0 -7px #8b8d8f; }
.option-choice-visual-color > span { border-radius: 50%; background: linear-gradient(145deg,#b7b9b6,#34373a); }
.option-choice-copy { min-width: 0; display: grid; gap: 4px; }
.option-choice-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: inherit; font-size: 13px; font-weight: 650; }
.option-choice-subtitle { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 10px; }
.option-choice-price { min-width: 48px; display: grid; justify-items: end; align-items: center; gap: 5px; }
.option-choice-price strong { color: var(--muted); font-size: 9px; font-weight: 600; white-space: nowrap; }
.option-choice-check { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid var(--line-strong); border-radius: 50%; color: transparent; font-size: 10px; font-style: normal; }
.option-choice.is-selected .option-choice-check { border-color: var(--accent); background: var(--accent); color: #111; }
.swatch-dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,.26); flex: none; }
.crop-guide-callout { display: grid; gap: 4px; margin: 0 0 3px; padding: 9px 10px; border-left: 2px solid var(--accent); border-radius: 0 6px 6px 0; background: rgba(214,255,85,.06); color: #dbe9bd; }
.crop-guide-callout span { font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.crop-guide-callout i { display: inline-block; width: 9px; height: 9px; margin-right: 3px; border: 1px dashed var(--accent); vertical-align: -1px; }
.crop-guide-callout small { color: var(--muted); font-size: 9px; line-height: 1.35; }
.design-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.design-card { border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: transparent; color: inherit; padding: 0; cursor: pointer; text-align: left; }
.design-card img { width: 100%; height: 110px; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.design-card span { display: block; padding: 10px; font-size: 11px; }
.design-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.config-actions { position: sticky; bottom: 0; margin: 0; padding: 18px 0 max(4px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: auto 1fr; gap: 10px; background: linear-gradient(180deg, transparent 0%, #101214 28%); }
.config-actions .solid-btn { width: 100%; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.quantity-control button { width: 44px; height: 47px; border: 0; background: transparent; color: white; cursor: pointer; }
.quantity-control span { min-width: 27px; text-align: center; font-weight: 750; font-size: 12px; }
@media (prefers-reduced-motion: reduce) { .option-choice, .option-choice::before { transition-duration: .01ms; } .config-price strong.is-changing, .config-price strong.is-changing::after { animation-duration: .01ms; } }

/* Cart */
.drawer-shell { position: fixed; inset: 0; z-index: 350; pointer-events: none; }
.drawer-shell.is-open { pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.62); opacity: 0; transition: opacity .3s; }
.drawer-shell.is-open .drawer-backdrop { opacity: 1; }
.cart-drawer { position: absolute; inset: 0 0 0 auto; width: min(520px,100%); transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.8,.2,1); background: #0e1012; border-left: 1px solid var(--line-strong); display: grid; grid-template-rows: auto 1fr auto; box-shadow: -28px 0 80px rgba(0,0,0,.4); }
.drawer-shell.is-open .cart-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; font: 400 34px/1 var(--serif); }
.cart-lines { overflow-y: auto; padding: 12px 24px 24px; }
.empty-cart { min-height: 55vh; display: grid; place-items: center; text-align: center; color: var(--muted); }
.empty-cart svg { color: var(--accent); margin: 0 auto 16px; }
.cart-line { display: grid; grid-template-columns: 94px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 94px; height: 94px; border-radius: 10px; overflow: hidden; background: #202225; }
.cart-thumb > img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.cart-line h3 { margin: 2px 0 4px; font: 400 19px/1.1 var(--serif); }
.cart-line p { margin: 0; color: var(--muted); font-size: 11px; }
.cart-line-price { text-align: right; font-size: 13px; font-weight: 750; }
.cart-line-actions { display: flex; gap: 10px; margin-top: 12px; }
.cart-line-actions button { background: none; border: 0; padding: 0; color: var(--muted); font-size: 11px; cursor: pointer; }
.cart-line-actions button:hover { color: var(--paper); }
.drawer-foot { border-top: 1px solid var(--line); padding: 22px 24px 24px; background: #111315; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total-row span { color: var(--muted); font-size: 12px; }
.cart-total-row strong { font-size: 19px; }
.drawer-foot .solid-btn { width: 100%; }
.shipping-note { display: flex; gap: 8px; margin-top: 13px; color: var(--muted); font-size: 10px; justify-content: center; }

/* Checkout */
.checkout-modal { position: relative; z-index: 1; width: min(1160px,100%); height: min(860px,calc(100svh - 36px)); display: grid; grid-template-columns: 1fr 390px; background: #101214; border: 1px solid var(--line-strong); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); animation: modal-in .4s ease both; }
.checkout-main { overflow-y: auto; padding: clamp(30px,4vw,56px); }
.checkout-main h2 { margin: 0 0 6px; font: 400 46px/.95 var(--serif); }
.checkout-main > p { color: var(--muted); margin: 0 0 30px; }
.checkout-section { padding: 24px 0; border-top: 1px solid var(--line); }
.checkout-section h3 { margin: 0 0 15px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.form-grid .full { grid-column: 1 / -1; }
.shipping-options { display: grid; gap: 9px; }
.shipping-option { border: 1px solid var(--line); border-radius: 11px; padding: 14px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; cursor: pointer; }
.shipping-option:has(input:checked) { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.shipping-option input { accent-color: var(--accent); }
.shipping-option strong { display: block; font-size: 13px; }
.shipping-option small { color: var(--muted); }
.demo-payment { padding: 16px; border: 1px dashed rgba(214,255,85,.35); border-radius: 12px; color: #c8cbbf; background: rgba(214,255,85,.04); font-size: 12px; }
.checkout-summary { background: #17191b; border-left: 1px solid var(--line); padding: 52px 30px 30px; overflow-y: auto; }
.checkout-summary h3 { margin: 0 0 22px; font: 400 28px/1 var(--serif); }
.checkout-line { display: grid; grid-template-columns: 55px 1fr auto; gap: 11px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--line); }
.checkout-line > img { width: 55px; height: 55px; object-fit: cover; border-radius: 7px; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.checkout-line strong { font-size: 11px; }
.checkout-line small { display: block; color: var(--muted); font-size: 9px; }
.promo-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 18px 0; }
.promo-row input { min-width: 0; height: 43px; border: 1px solid var(--line); border-radius: 9px; background: #0e1012; color: white; padding: 0 12px; }
.promo-row button { border-radius: 9px; border: 1px solid var(--line); background: #232629; color: white; padding: 0 14px; cursor: pointer; }
.summary-rows { display: grid; gap: 10px; padding: 17px 0; }
.summary-row { display: flex; justify-content: space-between; color: #b9bbbd; font-size: 12px; }
.summary-row.total { padding-top: 13px; border-top: 1px solid var(--line); color: white; font-size: 17px; font-weight: 750; }
.checkout-summary .solid-btn { width: 100%; margin-top: 12px; }
.checkout-legal { color: #777b7e; font-size: 9px; text-align: center; margin-top: 12px; }

.confirmation-card { position: relative; z-index: 1; width: min(620px,100%); padding: clamp(34px,6vw,70px); border-radius: 26px; background: #111315; border: 1px solid var(--line-strong); box-shadow: var(--shadow); text-align: center; }
.confirmation-icon { width: 76px; height: 76px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #111; }
.confirmation-card h2 { margin: 0; font: 400 48px/.95 var(--serif); }
.confirmation-card p { color: var(--muted); }
.confirmation-number { display: inline-block; margin: 10px 0 24px; padding: 10px 15px; border-radius: 999px; background: rgba(255,255,255,.06); font-family: ui-monospace, monospace; letter-spacing: .08em; }

.toast-region { position: fixed; z-index: 800; right: 18px; bottom: 18px; display: grid; gap: 10px; pointer-events: none; }
.toast { width: min(390px,calc(100vw - 36px)); padding: 15px 17px; border-radius: 13px; background: #202326; border: 1px solid var(--line-strong); box-shadow: var(--shadow); animation: toast-in .3s ease both; font-size: 12px; pointer-events: auto; }
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }

.loading-screen { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; background: #090a0b; transition: opacity .5s, visibility .5s; }
.loading-screen.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark { width: 74px; height: 74px; border-radius: 50%; border: 1px solid var(--line-strong); position: relative; animation: spin 3s linear infinite; }
.loader-mark::before, .loader-mark::after { content: ''; position: absolute; left: 50%; top: 50%; background: var(--accent); transform-origin: left center; }
.loader-mark::before { width: 28px; height: 1px; transform: rotate(45deg); }
.loader-mark::after { width: 28px; height: 1px; transform: rotate(135deg); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Demo editor */
.editor-page { min-height: 100svh; display: grid; grid-template-rows: 68px 1fr 74px; background: #e8e5de; color: #1b1c1d; }
.editor-topbar, .editor-bottombar { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: #111315; color: var(--paper); }
.editor-topbar .brand { min-width: auto; }
.editor-status { display: flex; align-items: center; gap: 8px; color: #aeb1b3; font-size: 11px; }
.editor-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.editor-workspace { min-height: 0; display: grid; grid-template-columns: 280px 1fr 310px; }
.editor-sidebar { padding: 22px; overflow-y: auto; background: #17191b; color: var(--paper); border-right: 1px solid rgba(255,255,255,.1); }
.editor-sidebar.right { border-right: 0; border-left: 1px solid rgba(255,255,255,.1); }
.editor-sidebar h2 { margin: 0 0 18px; font: 400 28px/1 var(--serif); }
.editor-tabs { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 18px; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.editor-tabs button { padding: 9px 4px; border: 0; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; }
.editor-tabs button.is-active { color: #111; background: var(--accent); }
.editor-photo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.editor-photo { aspect-ratio: 1; border: 2px solid transparent; padding: 0; cursor: pointer; border-radius: 8px; overflow: hidden; }
.editor-photo img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.editor-photo.is-selected { border-color: var(--accent); }
.editor-canvas { min-width: 0; min-height: 0; display: grid; place-items: center; padding: 50px; position: relative; overflow: hidden; background: radial-gradient(circle at center, #f4f1eb, #c9c5bd); }
.editor-canvas::before { content: ''; position: absolute; inset: 0; opacity: .2; background-size: 22px 22px; background-image: linear-gradient(#999 1px, transparent 1px), linear-gradient(90deg,#999 1px,transparent 1px); }
.design-artboard { position: relative; width: min(75%, 760px); aspect-ratio: 1.4; background: white; box-shadow: 0 28px 80px rgba(0,0,0,.27); padding: 4%; display: grid; grid-template-columns: 1.3fr .7fr; gap: 4%; }
.design-image { overflow: hidden; background: #ddd; }
.design-image img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.design-copy { display: flex; flex-direction: column; justify-content: center; text-align: center; }
.design-copy h1 { margin: 0; font: 400 clamp(24px,4vw,56px)/.92 var(--serif); }
.design-copy p { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.editor-control { margin-bottom: 18px; }
.editor-control label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.editor-control input, .editor-control textarea, .editor-control select { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: #0f1113; color: white; padding: 10px; }
.editor-bottombar { justify-content: end; gap: 10px; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions .account-btn, .header-actions .admin-btn { display: none; }
  .mobile-menu-btn { display: grid; }
  .hero { grid-template-columns: 1fr .82fr; }
  .hero-art { min-height: 540px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .shop-main .product-grid { grid-template-columns: repeat(2,1fr); }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .promise:nth-child(2) { border-right: 0; }
  .promise:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-modal { grid-template-columns: 1fr 440px; }
  .editor-workspace { grid-template-columns: 220px 1fr 260px; }
}

@media (max-width: 900px) {
  :root { --header: 66px; }
  .site-header { padding: 0 16px; }
  .brand { min-width: auto; }
  .brand-type span { display: none; }
  .cart-button > span:not(.cart-count) { display: none; }
  .cart-button { width: 43px; padding: 0; justify-content: center; position: relative; }
  .cart-count { position: absolute; right: -3px; top: -3px; background: #111; color: var(--accent); border: 1px solid var(--accent); min-width: 18px; height: 18px; font-size: 9px; }
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--header) + 70px); }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(58px, 17vw, 102px); }
  .hero-art { min-height: 560px; }
  .hero-frame { inset: 2% 8% 8%; }
  .section-head, .page-hero-inner { align-items: start; flex-direction: column; }
  .product-grid, .shop-main .product-grid { grid-template-columns: repeat(2,1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .collection-card:first-child { grid-column: 1 / -1; min-height: 500px; }
  .shop-layout { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .shop-filters { display: none; }
  .shop-toolbar { flex-wrap: wrap; }
  .search-box { flex-basis: 100%; }
  .gallery-access-card { grid-template-columns: 1fr; }
  .gallery-access-image { min-height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-lead { grid-column: 1 / -1; }
  .product-modal { width: 100%; height: 100svh; height: 100dvh; max-height: none; border-radius: 0; grid-template-columns: 1fr; grid-template-rows: minmax(280px,38dvh) minmax(0,1fr); }
  .modal-shell { padding: 0; }
  .config-preview { padding: 40px 24px; }
  .config-panel { padding: 30px 22px; }
  .checkout-modal { width: 100%; height: 100svh; max-height: none; border-radius: 0; grid-template-columns: 1fr; }
  .checkout-summary { display: none; }
  .editor-page { grid-template-rows: 60px 1fr 70px; }
  .editor-workspace { grid-template-columns: 1fr; }
  .editor-sidebar { display: none; }
  .editor-canvas { padding: 20px; }
  .design-artboard { width: 94%; }
}

@media (max-width: 560px) {
  .brand-type strong { font-size: 10px; letter-spacing: .18em; }
  .brand-mark { width: 34px; }
  .header-actions { gap: 5px; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero h1 { font-size: 58px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-art { min-height: 440px; }
  .hero-frame { inset: 4% 5% 11%; padding: 14px; }
  .hero-plaque { width: 65%; right: 2%; padding: 16px; }
  .hero-index { display: none; }
  .section { padding-left: 16px; padding-right: 16px; }
  .section-head h2, .page-hero h1 { font-size: 44px; }
  .product-grid, .shop-main .product-grid { grid-template-columns: 1fr; }
  .product-card-media { height: 380px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card:first-child { grid-column: auto; min-height: 420px; }
  .collection-card { min-height: 360px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .toolbar-select { width: 100%; }
  .shop-result-count { order: 3; width: 100%; }
  .page-hero { padding-left: 16px; padding-right: 16px; }
  .gallery-access-wrap { padding-left: 12px; padding-right: 12px; }
  .gallery-access-image { min-height: 280px; }
  .gallery-access-copy h1 { font-size: 42px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-lead { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .asset-picker { grid-template-columns: repeat(4,1fr); }
  .option-grid, .design-grid, .config-construction-grid { grid-template-columns: 1fr; }
  .config-actions { grid-template-columns: auto 1fr; }
  .wall-art { width: 70%; border-width: 9px; padding: 17px; }
  .preview-meta { left: 15px; bottom: 13px; }
  .preview-tools { right: 13px; bottom: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .checkout-main { padding: 34px 18px; }
  .cart-line { grid-template-columns: 76px 1fr; }
  .cart-thumb { width: 76px; height: 76px; }
  .cart-line-price { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Order success record */
.order-success-view {
  min-height: calc(100svh - var(--header));
  padding: calc(var(--header) + clamp(38px, 6vw, 84px)) clamp(16px, 5vw, 80px) 110px;
  background: radial-gradient(circle at 84% 7%, rgba(214,255,85,.07), transparent 28rem);
}
.success-page { width: min(100%, 1440px); margin: 0 auto; }
.success-hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); align-items: end; gap: clamp(28px, 6vw, 100px); padding-bottom: 52px; }
.success-hero-copy { min-width: 0; }
.success-hero h1 { max-width: 820px; margin: 14px 0 16px; font: 400 clamp(52px, 7vw, 104px)/.86 var(--serif); letter-spacing: -.065em; }
.success-hero-copy > p { max-width: 690px; margin: 0; color: #b4b7b9; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; }
.success-reference { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px; margin-top: 28px; color: var(--muted); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.success-reference strong { color: var(--paper); font-size: 13px; letter-spacing: .08em; font-weight: 700; }
.success-reference .status-pill { letter-spacing: .08em; }
.success-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.success-state-card { padding: 25px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 22px 70px rgba(0,0,0,.22); }
.success-state-card > strong { display: block; margin-top: 12px; color: var(--paper); font: 400 clamp(25px, 3vw, 40px)/.98 var(--serif); }
.success-state-card > small { display: block; margin-top: 12px; color: var(--muted); }
.success-state-card > p { margin: 20px 0 0; color: #b4b7b9; font-size: 13px; line-height: 1.55; }
.success-key-card { display: flex; justify-content: space-between; align-items: center; gap: 18px; max-width: 720px; margin-top: 25px; padding: 17px 18px; border: 1px solid rgba(214,255,85,.35); border-radius: var(--radius-sm); background: rgba(214,255,85,.06); }
.success-key-card > div { min-width: 0; display: grid; gap: 5px; }
.success-key-card code { overflow: hidden; color: var(--paper); font-size: 13px; letter-spacing: .09em; text-overflow: ellipsis; white-space: nowrap; }
.success-key-card small { color: var(--muted); font-size: 11px; }
.success-key-card .outline-btn { min-height: 38px; padding: 0 14px; flex: 0 0 auto; font-size: 11px; }
.success-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); align-items: start; gap: 22px; }
.success-main-column, .success-side-column, .success-edition-stack { display: grid; gap: 22px; min-width: 0; }
.success-side-column { position: sticky; top: calc(var(--header) + 24px); }
.success-panel { min-width: 0; padding: clamp(22px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,19,21,.88); box-shadow: 0 18px 65px rgba(0,0,0,.18); }
.success-panel-heading { display: flex; justify-content: space-between; gap: 18px; align-items: start; margin-bottom: 25px; }
.success-panel-heading h2 { margin: 8px 0 0; font: 400 clamp(29px, 3vw, 44px)/.94 var(--serif); letter-spacing: -.045em; }
.success-panel-index { color: #666d70; font-size: 11px; letter-spacing: .16em; }
.success-line { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 19px; padding: 19px 0; border-top: 1px solid var(--line); }
.success-line:first-child { padding-top: 0; border-top: 0; }
.success-line-media { align-self: start; aspect-ratio: 1.2; overflow: hidden; border-radius: 10px; background: #25282a; }
.success-line-media img { width: 100%; height: 100%; object-fit: cover; filter: var(--javelin-image-filter,var(--javelin-site-image-filter,var(--javelin-global-image-filter,saturate(1)))); }
.success-line-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--muted); }
.success-line-heading { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.success-line-heading h3 { margin: 7px 0 0; color: var(--paper); font: 400 clamp(23px, 2.5vw, 34px)/.98 var(--serif); }
.success-line-heading > strong { color: var(--paper); white-space: nowrap; font-size: 14px; }
.success-line-meta, .success-line-options { margin: 10px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.success-line-options { color: #c3c6c7; }
.success-technical { margin-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.success-technical summary { padding-top: 13px; color: #c3c6c7; cursor: pointer; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.success-technical-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; margin: 16px 0 0; }
.success-technical-list div { min-width: 0; }
.success-technical-list dt { color: #717679; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.success-technical-list dd { margin: 3px 0 0; color: #d1d3d3; font-size: 12px; overflow-wrap: anywhere; }
.success-total-list { display: grid; gap: 10px; max-width: 480px; margin: 20px 0 0 auto; padding-top: 18px; border-top: 1px solid var(--line-strong); }
.success-total-row { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px; }
.success-total-row strong { color: var(--paper); font-weight: 650; }
.success-total-row.is-discount strong { color: var(--success); }
.success-total-row.is-total { margin-top: 5px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--paper); font-size: 15px; }
.success-total-row.is-total strong { font-size: 18px; }
.success-edition-panel { background: linear-gradient(145deg, rgba(214,255,85,.08), rgba(17,19,21,.9) 55%); }
.success-edition-panel.is-limited { background: linear-gradient(145deg, rgba(197,174,110,.12), rgba(17,19,21,.9) 58%); }
.success-edition-top { display: flex; gap: 16px; align-items: center; margin-bottom: 19px; }
.success-edition-top h2 { margin: 7px 0 0; font: 400 clamp(26px, 3vw, 40px)/.95 var(--serif); }
.success-edition-symbol { width: 54px; height: 54px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(214,255,85,.55); border-radius: 50%; color: var(--accent); font-size: 9px; letter-spacing: .12em; text-align: center; }
.is-limited .success-edition-symbol { width: 68px; height: 68px; border-color: rgba(197,174,110,.75); color: #dec783; font-size: 8px; }
.success-edition-panel > p { max-width: 750px; color: #c3c6c7; font-size: 14px; line-height: 1.65; }
.success-edition-note { margin: 17px 0 0; padding-top: 17px; border-top: 1px solid var(--line); color: #aeb2b4 !important; font-size: 12px !important; }
.success-edition-number { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 15px; margin: 20px 0 17px; }
.success-edition-number span { color: #f0dd9d; font: 400 clamp(27px, 4vw, 50px)/.95 var(--serif); letter-spacing: -.035em; }
.success-edition-number small { color: #bba86d; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.success-checkpoint { margin-top: 20px; padding: 18px; border: 1px solid rgba(197,174,110,.2); border-radius: var(--radius-sm); background: rgba(0,0,0,.13); }
.success-checklist { display: grid; gap: 10px; margin: 13px 0 0; padding: 0 0 0 19px; color: #d6d0bf; font-size: 12px; line-height: 1.5; }
.success-checklist li::marker { color: #dec783; }
.success-progress { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); list-style: none; gap: 0; margin: 0; padding: 0; }
.success-progress-step { position: relative; min-width: 0; padding: 17px 12px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.success-progress-step:not(:last-child)::after { content: ''; position: absolute; top: -1px; left: 30px; right: -1px; border-top: 1px solid rgba(255,255,255,.2); }
.success-progress-marker { position: relative; z-index: 1; width: 27px; height: 27px; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid #555b5e; border-radius: 50%; background: #111315; color: #858a8d; font-size: 10px; }
.success-progress-step > div { position: relative; z-index: 1; }
.success-progress-step strong { display: block; color: #757b7e; font-size: 11px; line-height: 1.25; }
.success-progress-step small { display: block; margin-top: 6px; color: #62686b; font-size: 10px; line-height: 1.4; }
.success-progress-step time { display: block; margin-top: 6px; color: #777d80; font-size: 9px; }
.success-progress-step.is-complete, .success-progress-step.is-current { border-color: var(--accent); }
.success-progress-step.is-complete:not(:last-child)::after, .success-progress-step.is-current:not(:last-child)::after { border-color: rgba(214,255,85,.55); }
.success-progress-step.is-complete .success-progress-marker, .success-progress-step.is-current .success-progress-marker { border-color: var(--accent); color: var(--accent); }
.success-progress-step.is-complete strong, .success-progress-step.is-current strong { color: var(--paper); }
.success-progress-step.is-current small { color: #aeb7a0; }
.success-tracking { margin-top: 23px; padding: 17px 18px; border-left: 2px solid var(--accent); background: rgba(214,255,85,.045); }
.success-tracking-ready { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 18px; color: #bdc4b4; font-size: 12px; }
.success-tracking-ready .text-btn { color: var(--accent); font-size: 12px; }
.success-tracking-pending { margin: 0; color: #aeb2b4; font-size: 12px; line-height: 1.55; }
.success-lead-time { margin: 20px 0 0; color: var(--muted); font-size: 12px; }
.success-lead-time strong { color: #c3c6c7; }
.success-policy-list { display: grid; gap: 0; }
.success-policy-list article { padding: 16px 0; border-top: 1px solid var(--line); }
.success-policy-list article:first-child { padding-top: 0; border-top: 0; }
.success-policy-list strong { color: var(--paper); font-size: 12px; }
.success-policy-list p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.success-care-link { width: 100%; margin-top: 22px; }
.success-relationship-panel > div:last-child > p, .success-share-note { color: #b5b8b9; font-size: 13px; line-height: 1.6; }
.success-relationship-callout { margin: 21px 0; padding: 18px; border: 1px solid rgba(214,255,85,.21); border-radius: var(--radius-sm); background: rgba(214,255,85,.045); }
.success-relationship-callout p { margin: 9px 0 15px; color: #b5b8b9; font-size: 12px; line-height: 1.55; }
.success-relationship-callout .outline-btn { min-height: 40px; padding: 0 14px; font-size: 11px; }
.success-share-note { margin: 0; }
.success-share-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.success-empty-state { padding: 20px 0 4px; color: var(--muted); }
.success-empty-state strong { color: var(--paper); font-size: 14px; }
.success-empty-state p { margin: 7px 0 17px; font-size: 12px; }

@media (max-width: 1050px) {
  .success-hero, .success-layout { grid-template-columns: 1fr; }
  .success-state-card { max-width: 650px; }
  .success-side-column { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .order-success-view { padding-top: calc(var(--header) + 38px); }
  .success-hero h1 { font-size: clamp(48px, 16vw, 78px); }
  .success-actions { align-items: stretch; flex-direction: column; }
  .success-actions > * { width: 100%; }
  .success-key-card { align-items: stretch; flex-direction: column; }
  .success-key-card .outline-btn { width: 100%; }
  .success-panel { padding: 21px 17px; }
  .success-line { grid-template-columns: 78px minmax(0, 1fr); gap: 12px; }
  .success-line-heading { flex-direction: column; gap: 8px; }
  .success-line-heading h3 { font-size: 25px; }
  .success-technical-list { grid-template-columns: 1fr; }
  .success-progress { grid-template-columns: 1fr; gap: 0; }
  .success-progress-step { min-height: 61px; display: grid; grid-template-columns: 39px 1fr; gap: 10px; padding: 13px 0; border-top: 0; border-left: 1px solid rgba(255,255,255,.2); }
  .success-progress-step:not(:last-child)::after { top: 39px; bottom: 0; left: -1px; right: auto; border-top: 0; border-left: 1px solid rgba(255,255,255,.2); }
  .success-progress-marker { margin: 0 0 0 -14px; }
  .success-progress-step > div { padding-top: 3px; }
  .success-side-column { grid-template-columns: 1fr; }
}

/* Personalized product mockups */
.product-card-mockup .javelin-mockup{position:absolute;inset:0;min-height:0;transition:transform .75s cubic-bezier(.2,.8,.2,1),filter .6s}
.product-card:hover .product-card-mockup .javelin-mockup{transform:scale(1.025);filter:contrast(1.04)}
.product-card-mockup::after{z-index:2;pointer-events:none}
.product-card-mockup .product-badge{z-index:4}
.personalized-preview-label{position:absolute;z-index:4;left:14px;right:14px;bottom:13px;color:#fff;font-size:9px;letter-spacing:.09em;text-transform:uppercase;text-shadow:0 1px 8px rgba(0,0,0,.8);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.config-mockup{width:min(100%,720px);height:min(64vh,650px);min-height:420px;perspective:1100px;filter:drop-shadow(0 28px 40px rgba(0,0,0,.2))}
.config-mockup .javelin-mockup{min-height:100%;height:100%;border-radius:2px;transition:transform .35s ease}
.config-mockup.is-proof{filter:none;perspective:none}
.config-mockup.is-proof .javelin-mockup{border:1px solid rgba(24,26,27,.13);box-shadow:0 22px 46px rgba(33,29,24,.16)}
.config-mockup.is-media-transitioning .jm-proof-paper,.config-mockup.is-media-transitioning .jm-proof-art,.config-mockup.is-media-transitioning .jm-proof-paper-texture,.config-mockup.is-media-transitioning .jm-proof-paper-sheen{transition-duration:940ms;transition-timing-function:cubic-bezier(.16,1,.3,1)}
.config-mockup.is-media-transitioning .jm-proof-paper-texture,.config-mockup.is-media-transitioning .jm-proof-paper-sheen{transition-property:opacity,background,filter}
.config-mockup.is-media-transitioning .jm-proof-workspace{animation:config-media-cinematic-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-media-transitioning .jm-proof-specs [data-proof-spec="media"] strong{animation:config-media-spec-settle 760ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-media-transitioning .jm-proof-stage::after{content:'';position:absolute;z-index:2;inset:0;pointer-events:none;background:linear-gradient(112deg,transparent 22%,rgba(255,255,255,.28) 46%,transparent 64%);mix-blend-mode:soft-light;animation:config-media-light-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-mounting-transitioning .jm-proof-mount,.config-mockup.is-mounting-transitioning .jm-proof-frame,.config-mockup.is-mounting-transitioning .jm-proof-3d-left,.config-mockup.is-mounting-transitioning .jm-proof-3d-right,.config-mockup.is-mounting-transitioning .jm-proof-3d-top,.config-mockup.is-mounting-transitioning .jm-proof-3d-bottom,.config-mockup.is-mounting-transitioning .jm-proof-rear-mount,.config-mockup.is-mounting-transitioning .jm-proof-glass{transition-duration:940ms;transition-timing-function:cubic-bezier(.16,1,.3,1)}
.config-mockup.is-mounting-transitioning .jm-proof-workspace{animation:config-mounting-cinematic-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-mounting-transitioning .jm-proof-specs>div,.config-mockup.is-mounting-transitioning .jm-proof-production{animation:config-mounting-spec-settle 760ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-mounting-transitioning .jm-proof-stage::after{content:'';position:absolute;z-index:2;inset:0;pointer-events:none;background:radial-gradient(ellipse at 52% 58%,rgba(59,48,34,.25),transparent 45%);mix-blend-mode:multiply;animation:config-mounting-light-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-color-transitioning .jm-proof-mount,.config-mockup.is-color-transitioning .jm-proof-frame,.config-mockup.is-color-transitioning .jm-proof-mat,.config-mockup.is-color-transitioning .jm-proof-mat-core,.config-mockup.is-color-transitioning .jm-proof-paper,.config-mockup.is-color-transitioning .jm-proof-molding,.config-mockup.is-color-transitioning .jm-proof-glass,.config-mockup.is-color-transitioning .jm-proof-rear-mount,.config-mockup.is-color-transitioning .jm-proof-color-swatch{transition-duration:940ms;transition-timing-function:cubic-bezier(.16,1,.3,1)}
.config-mockup.is-color-transitioning .jm-proof-workspace{animation:config-color-cinematic-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-color-transitioning .jm-proof-specs [data-proof-spec="color"] strong{animation:config-color-spec-settle 760ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-color-transitioning .jm-proof-color-swatch{animation:config-color-swatch-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-color-transitioning .jm-proof-stage::after{content:'';position:absolute;z-index:2;inset:0;pointer-events:none;background:radial-gradient(circle at 48% 42%,color-mix(in srgb,var(--jm-option-color,#d8c59b) 28%,transparent),transparent 42%);mix-blend-mode:soft-light;animation:config-color-light-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-option-transitioning .jm-proof-mount,.config-mockup.is-option-transitioning .jm-proof-frame,.config-mockup.is-option-transitioning .jm-proof-mat,.config-mockup.is-option-transitioning .jm-proof-mat-core,.config-mockup.is-option-transitioning .jm-proof-paper,.config-mockup.is-option-transitioning .jm-proof-molding,.config-mockup.is-option-transitioning .jm-proof-glass,.config-mockup.is-option-transitioning .jm-proof-rear-mount,.config-mockup.is-option-transitioning .jm-proof-color-swatch{transition-duration:840ms;transition-timing-function:cubic-bezier(.16,1,.3,1)}
.config-mockup.is-option-transitioning .jm-proof-workspace{animation:config-option-cinematic-settle 840ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-option-transitioning .jm-proof-specs>div{animation:config-option-spec-settle 680ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-option-transitioning .jm-proof-stage::after{content:'';position:absolute;z-index:2;inset:0;pointer-events:none;background:radial-gradient(circle at 48% 42%,rgba(255,255,255,.2),transparent 40%);mix-blend-mode:soft-light;animation:config-option-light-settle 840ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-size-transitioning .jm-proof-mount{transition-duration:940ms;transition-timing-function:cubic-bezier(.16,1,.3,1)}
.config-mockup.is-size-transitioning .jm-proof-workspace{animation:config-size-cinematic-settle 940ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-size-transitioning .jm-proof-specs [data-proof-spec="size"] strong{animation:config-size-spec-settle 760ms cubic-bezier(.16,1,.3,1) both}
.config-mockup.is-size-transitioning .jm-proof-stage::after{content:'';position:absolute;z-index:2;inset:0;pointer-events:none;background:radial-gradient(circle at 48% 42%,rgba(255,255,255,.24),transparent 38%);mix-blend-mode:soft-light;animation:config-size-light-settle 940ms cubic-bezier(.16,1,.3,1) both}
@keyframes config-size-cinematic-settle{0%{opacity:.92;filter:brightness(.96) saturate(.94)}42%{opacity:1}100%{opacity:1;filter:brightness(1) saturate(1)}}
@keyframes config-size-spec-settle{0%{opacity:0;transform:translateY(7px);filter:blur(2px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes config-size-light-settle{0%{opacity:0;transform:scale(.92)}32%{opacity:.72}100%{opacity:0;transform:scale(1.08)}}
@keyframes config-media-cinematic-settle{0%{opacity:.92;filter:brightness(.96) saturate(.88)}48%{opacity:1}100%{opacity:1;filter:brightness(1) saturate(1)}}
@keyframes config-media-spec-settle{0%{opacity:0;transform:translateY(7px);filter:blur(2px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes config-media-light-settle{0%{opacity:0;transform:translateX(-14%) scale(1.04)}38%{opacity:.76}100%{opacity:0;transform:translateX(14%) scale(1.04)}}
@keyframes config-mounting-cinematic-settle{0%{opacity:.92;filter:brightness(.92) contrast(.97)}44%{opacity:1}100%{opacity:1;filter:brightness(1) contrast(1)}}
@keyframes config-mounting-spec-settle{0%{opacity:.18;transform:translateY(5px);filter:blur(1px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes config-mounting-light-settle{0%{opacity:0;transform:scale(.9)}38%{opacity:.54}100%{opacity:0;transform:scale(1.08)}}
@keyframes config-color-cinematic-settle{0%{opacity:.91;filter:brightness(.95) saturate(.84)}46%{opacity:1}100%{opacity:1;filter:brightness(1) saturate(1)}}
@keyframes config-color-spec-settle{0%{opacity:0;transform:translateY(7px);filter:blur(2px)}100%{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes config-color-swatch-settle{0%{scale:.72;filter:brightness(.8)}42%{scale:1.1;filter:brightness(1.12)}100%{scale:1;filter:brightness(1)}}
@keyframes config-color-light-settle{0%{opacity:0;transform:scale(.88)}34%{opacity:.76}100%{opacity:0;transform:scale(1.1)}}
@keyframes config-option-cinematic-settle{0%{opacity:.94;filter:brightness(.97) saturate(.95)}45%{opacity:1}100%{opacity:1;filter:brightness(1) saturate(1)}}
@keyframes config-option-spec-settle{0%{opacity:.22;transform:translateY(4px)}100%{opacity:1;transform:translateY(0)}}
@keyframes config-option-light-settle{0%{opacity:0;transform:scale(.95)}36%{opacity:.55}100%{opacity:0;transform:scale(1.05)}}
@media(prefers-reduced-motion:reduce){.config-mockup.is-size-transitioning .jm-proof-mount,.config-mockup.is-media-transitioning .jm-proof-paper,.config-mockup.is-media-transitioning .jm-proof-art,.config-mockup.is-media-transitioning .jm-proof-paper-texture,.config-mockup.is-media-transitioning .jm-proof-paper-sheen,.config-mockup.is-mounting-transitioning .jm-proof-mount,.config-mockup.is-mounting-transitioning .jm-proof-frame,.config-mockup.is-mounting-transitioning .jm-proof-3d-left,.config-mockup.is-mounting-transitioning .jm-proof-3d-right,.config-mockup.is-mounting-transitioning .jm-proof-3d-top,.config-mockup.is-mounting-transitioning .jm-proof-3d-bottom,.config-mockup.is-mounting-transitioning .jm-proof-rear-mount,.config-mockup.is-mounting-transitioning .jm-proof-glass,.config-mockup.is-color-transitioning .jm-proof-mount,.config-mockup.is-color-transitioning .jm-proof-frame,.config-mockup.is-color-transitioning .jm-proof-mat,.config-mockup.is-color-transitioning .jm-proof-mat-core,.config-mockup.is-color-transitioning .jm-proof-paper,.config-mockup.is-color-transitioning .jm-proof-molding,.config-mockup.is-color-transitioning .jm-proof-glass,.config-mockup.is-color-transitioning .jm-proof-rear-mount,.config-mockup.is-color-transitioning .jm-proof-color-swatch,.config-mockup.is-option-transitioning .jm-proof-mount,.config-mockup.is-option-transitioning .jm-proof-frame,.config-mockup.is-option-transitioning .jm-proof-mat,.config-mockup.is-option-transitioning .jm-proof-mat-core,.config-mockup.is-option-transitioning .jm-proof-paper,.config-mockup.is-option-transitioning .jm-proof-molding,.config-mockup.is-option-transitioning .jm-proof-glass,.config-mockup.is-option-transitioning .jm-proof-rear-mount,.config-mockup.is-option-transitioning .jm-proof-color-swatch{transition-duration:.01ms}.config-mockup.is-size-transitioning .jm-proof-workspace,.config-mockup.is-size-transitioning .jm-proof-specs [data-proof-spec="size"] strong,.config-mockup.is-size-transitioning .jm-proof-stage::after,.config-mockup.is-media-transitioning .jm-proof-workspace,.config-mockup.is-media-transitioning .jm-proof-specs [data-proof-spec="media"] strong,.config-mockup.is-media-transitioning .jm-proof-stage::after,.config-mockup.is-mounting-transitioning .jm-proof-workspace,.config-mockup.is-mounting-transitioning .jm-proof-specs>div,.config-mockup.is-mounting-transitioning .jm-proof-production,.config-mockup.is-mounting-transitioning .jm-proof-stage::after,.config-mockup.is-color-transitioning .jm-proof-workspace,.config-mockup.is-color-transitioning .jm-proof-specs [data-proof-spec="color"] strong,.config-mockup.is-color-transitioning .jm-proof-color-swatch,.config-mockup.is-color-transitioning .jm-proof-stage::after,.config-mockup.is-option-transitioning .jm-proof-workspace,.config-mockup.is-option-transitioning .jm-proof-specs>div,.config-mockup.is-option-transitioning .jm-proof-stage::after{animation:none}}
.config-preview-state{display:grid;align-content:center;justify-items:center;gap:10px;width:100%;height:100%;min-height:inherit;padding:32px;text-align:center;border:1px solid rgba(23,24,24,.14);border-radius:2px;background:linear-gradient(145deg,#e9e5dc,#cfc9bf);color:#202020}
.config-preview-state strong{max-width:28ch;font:600 13px/1.35 Georgia,serif}
.config-preview-state small{max-width:38ch;color:#5f5d59;font-size:10px;line-height:1.5}
.config-preview-state[data-preview-state="error"]{background:linear-gradient(145deg,#eee5dd,#d3c3b9)}
.config-preview-note{margin:14px 0 0;padding:11px 13px;border:1px solid rgba(117,86,45,.24);border-radius:8px;background:rgba(149,105,46,.08);color:#6d5438;font-size:10px;line-height:1.5}
.config-preview-note strong{font-weight:700;color:#4d3a27}
.crop-controls{display:grid;gap:12px}.crop-controls label{display:grid;grid-template-columns:110px 1fr;align-items:center;gap:12px;color:var(--muted);font-size:10px;text-transform:uppercase;letter-spacing:.08em}.crop-controls input[type=range]{width:100%;accent-color:var(--accent)}
.crop-note{margin:11px 0 0;color:var(--muted);font-size:10px;line-height:1.5}
.cart-thumb .javelin-mockup,.checkout-mockup .javelin-mockup{min-height:0;height:100%;border-radius:inherit}.cart-thumb .jm-scene-label,.checkout-mockup .jm-scene-label{display:none}
.checkout-mockup{width:55px;height:55px;overflow:hidden;border-radius:7px;background:#202225}
@media(max-width:780px){.config-mockup{height:430px;min-height:330px}.crop-controls label{grid-template-columns:1fr;gap:6px}}
/* Wall Studio entry point */
.preview-tools .wall-studio-trigger{width:auto;min-width:126px;padding:0 14px;border-radius:999px;font-size:8px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;background:rgba(12,14,16,.82);color:#fff;border-color:rgba(255,255,255,.28)}
.preview-tools .wall-studio-trigger[hidden]{display:none}
@media(max-width:600px){.preview-tools .wall-studio-trigger{min-width:0;padding:0 11px;font-size:7px}}
.wall-plan-label,.wall-plan-badge{display:inline-flex!important;width:max-content;max-width:100%;margin:6px 0 0!important;padding:4px 7px;border:1px solid rgba(214,255,85,.26);border-radius:999px;background:rgba(214,255,85,.08);color:#eaffad!important;font-size:8px!important;line-height:1.2!important;letter-spacing:.1em;text-transform:uppercase}

/* Preserve the store's visual hierarchy without spending CPU or bandwidth on
   ornamental motion when the browser reports a constrained connection. */
html[data-connection-tier="slow"] .noise,html[data-connection-tier="moderate"] .noise{display:none}
html[data-connection-tier="slow"] *,html[data-connection-tier="slow"] *::before,html[data-connection-tier="slow"] *::after,html[data-connection-tier="moderate"] *,html[data-connection-tier="moderate"] *::before,html[data-connection-tier="moderate"] *::after{animation:none!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
html[data-connection-tier="slow"] .hero-photo,html[data-connection-tier="moderate"] .hero-photo{transform:none!important}


/* Store identity settings may contain longer real-world studio and store names. */
.brand { min-width: 0; max-width: min(34vw, 360px); text-decoration: none; }
.brand-type { min-width: 0; overflow: hidden; }
.brand-type strong, .brand-type span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 700px) { .brand { max-width: calc(100vw - 190px); } }

/* Draft Preview Mode Banner */
.store-preview-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #1c1b18, #2a251c);
  border-bottom: 1px solid #d4a359;
  color: #f7ede2;
  font-size: 12px;
}
.store-preview-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-mode-pill {
  display: inline-block;
  padding: 3px 8px;
  background: #d4a359;
  color: #101113;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
}
.store-preview-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  transition: all .2s ease;
}
.preview-banner-btn.primary {
  background: #d4a359;
  color: #101113;
  border-color: #d4a359;
}
.preview-banner-btn:hover {
  opacity: .88;
}
@media (max-width: 760px) {
  .store-preview-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px;
  }
}

/* WHCC-style direct configurator: a quiet proof canvas and a compact,
   transactional option rail. The supplier-backed data and disclosure copy
   remain owned by storefront.js; this block only changes presentation. */
.modal-shell:has(.product-modal) { padding: 0; }
.modal-shell:has(.product-modal) .modal-backdrop { background: rgba(8, 10, 11, .46); backdrop-filter: blur(5px); }
.product-modal {
  width: 100%;
  height: 100dvh;
  max-height: none;
  grid-template-columns: minmax(0, 1fr) clamp(360px, 30vw, 440px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.product-modal > .modal-close {
  top: 16px;
  right: 16px;
  border-color: #d8d8d5;
  background: rgba(255,255,255,.92);
  color: #252626;
  box-shadow: 0 2px 8px rgba(20,20,19,.08);
}
.config-preview {
  min-height: 0;
  padding: 0;
  background: #f2f2f0;
  border-right: 1px solid #e2e2df;
}
.config-mockup {
  width: 100%;
  height: 100%;
  min-height: 0;
  filter: none;
  perspective: 1100px;
}
.config-mockup.is-proof { filter: none; }
.config-preview .javelin-mockup.is-configurator-proof {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #f2f2f0;
  box-shadow: none;
}
.config-preview .jm-proof-stage {
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: radial-gradient(circle at 45% 12%, #fff 0, #f6f6f4 42%, #ececea 100%);
}
.config-preview .jm-proof-stage::before,
.config-preview .jm-proof-heading,
.config-preview .jm-proof-specs,
.config-preview .jm-proof-production,
.config-preview .jm-proof-dimension-status,
.config-preview .jm-proof-reading-key,
.config-preview .jm-proof-orbit-hint { display: none; }
.config-preview .jm-proof-workspace { height: 100%; min-height: 0; }
.config-preview .jm-proof-viewport { padding: 34px; }
.config-preview .jm-proof-mount { max-height: min(72vh, 720px); }
.config-preview-confidence {
  display: grid;
  left: 22px;
  top: 20px;
  max-width: min(48%, 280px);
  padding: 7px 9px;
  border-color: rgba(60,61,58,.16);
  background: rgba(255,255,255,.78);
  color: #51524e;
  box-shadow: 0 4px 13px rgba(40,40,38,.06);
}
.config-preview-confidence span { color: #383936; font-size: 8px; }
.config-preview-confidence small { color: #70716d; font-size: 8px; }
.preview-meta {
  left: 22px;
  bottom: 20px;
  max-width: min(52%, 420px);
  color: #313332;
}
.preview-meta span { opacity: .5; font-size: 8px; }
.preview-meta strong { font-size: 15px; }
.config-dual-dimensions {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.config-dual-dimensions .dim-badge { display: grid; gap: 1px; }
.config-dual-dimensions small { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #777875; }
.config-dual-dimensions strong { font-size: 11px; font-weight: 650; color: #20211f; white-space: nowrap; }
.config-dual-dimensions .dim-divider { color: #a0a09c; font-weight: 300; font-size: 12px; user-select: none; }

.preview-crop-toolbar {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.preview-crop-toolbar .crop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #d2d2cf;
  border-radius: 999px;
  background: #fff;
  color: #282928;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
}
.preview-crop-toolbar .crop-btn:hover { background: #f4f4f2; border-color: #b0b0ad; }
.preview-crop-toolbar .crop-zoom-group { display: flex; align-items: center; gap: 6px; padding: 0 4px; }
.preview-crop-toolbar .crop-zoom-label { font-size: 9px; font-weight: 700; text-transform: uppercase; color: #777875; }
.preview-crop-toolbar input[type="range"] { width: 72px; height: 4px; cursor: pointer; accent-color: #2166c1; }
.preview-crop-toolbar output { font-size: 10px; font-weight: 600; color: #282928; min-width: 30px; }

.config-step-rail {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.config-step-rail::-webkit-scrollbar { display: none; }
.step-rail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #e0e0dc;
  border-radius: 999px;
  background: #f8f8f6;
  color: #666764;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
}
.step-rail-btn .step-rail-num {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4e4e0;
  color: #50514d;
  font-size: 9px;
  font-weight: 700;
}
.step-rail-btn:hover { background: #eeeee9; color: #20211f; }
.step-rail-btn.is-active { border-color: #2166c1; background: #f5f8fd; color: #164f9c; }
.step-rail-btn.is-active .step-rail-num { background: #2166c1; color: #fff; }

.config-step-group { padding: 16px 0; border-bottom: 1px solid #e8e8e5; }
.config-step-group:last-child { border-bottom: 0; }
.config-step-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.config-step-header-left { display: flex; align-items: center; gap: 8px; }
.config-step-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  background: #f0f0ed;
  color: #6a6b68;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.config-step-title { margin: 0; color: #20211f; font-size: 13px; font-weight: 650; letter-spacing: -.01em; }
.config-step-summary-badge {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #e0e0dc;
  border-radius: 999px;
  background: #fafaf8;
  color: #555652;
  font-size: 10px;
  font-weight: 500;
  max-width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-tools { right: 20px; bottom: 19px; gap: 6px; }
.preview-tools button {
  border-color: #d2d2cf;
  background: rgba(255,255,255,.84);
  color: #282928;
  box-shadow: 0 2px 8px rgba(30,30,29,.06);
}
.preview-tools .wall-studio-trigger {
  border-color: #d2d2cf;
  background: rgba(255,255,255,.92);
  color: #282928;
}
.config-panel {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 0;
  background: #fff;
  color: #252626;
  color-scheme: light;
}
.config-panel-head {
  padding: 21px 22px 15px;
  border-bottom: 1px solid #e8e8e5;
  background: #fff;
}
.config-panel-heading-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 38px;
}
.config-panel-heading-row .kicker { min-width: 0; margin: 0; color: #777875; }
.config-panel h2 {
  margin: 10px 0 0;
  padding-right: 36px;
  color: #262727;
  font: 600 clamp(23px, 2vw, 29px)/1.05 var(--sans);
  letter-spacing: -.035em;
}
.config-tagline {
  max-width: 42ch;
  margin: 7px 0 0;
  color: #777875;
  font-size: 11px;
  line-height: 1.45;
}
.config-price {
  display: grid;
  justify-items: end;
  gap: 2px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}
.config-price strong { color: #292a29; font-size: 15px; font-weight: 700; }
.config-price span { color: #858682; font-size: 9px; }
.config-panel-tools {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}
.config-panel-tool {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #d8d8d5;
  border-radius: 4px;
  background: #fff;
  color: #2d2e2d;
  font-size: 11px;
  cursor: pointer;
}
.config-panel-tool:hover { border-color: #a6a7a3; background: #fafaf9; }
.config-panel-tool:focus-visible { outline: 2px solid #2166c1; outline-offset: 2px; }
.config-panel-tool:disabled { cursor: not-allowed; opacity: .5; }
.config-tool-mark {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border: 1px solid #777975;
  color: transparent;
  font-size: 0;
}
.config-panel-tool strong { font-weight: 650; }
.config-panel-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c5c6c2 transparent;
  padding: 0 22px;
}
.config-selection-summary {
  gap: 8px;
  padding: 14px 0 12px;
  border-bottom-color: #e8e8e5;
  color: #252626;
}
.config-selection-summary-head .kicker,
.config-selection-chip small { color: #838480; }
.config-selection-summary-head strong,
.config-selection-chip strong { color: #2c2d2c; }
.config-selection-summary-head strong { font-size: 13px; }
.config-selection-chips { gap: 4px 12px; }
.config-selection-chip strong { font-size: 11px; }
.config-selection-empty { color: #858682; font-size: 11px; }
.config-primary-size {
  padding: 14px 0 15px;
  border-bottom: 1px solid #e8e8e5;
}
.config-primary-size-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.config-primary-size-head > div { min-width: 0; display: grid; gap: 3px; }
.config-primary-size-head .kicker { margin: 0; color: #777875; font-size: 9px; }
.config-primary-size-head strong { color: #252626; font-size: 12px; }
.config-primary-size-head > small { color: #8a8b87; font-size: 9px; white-space: nowrap; }
.config-primary-size-choices { display: flex; flex-wrap: wrap; gap: 6px; }
.config-size-choice {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  border: 1px solid #d4d5d1;
  border-radius: 4px;
  background: #fff;
  color: #3d3e3c;
  font-size: 11px;
  cursor: pointer;
}
.config-size-choice small { color: #8b8c88; font-size: 9px; }
.config-size-choice:hover { border-color: #9da09b; background: #fafaf9; }
.config-size-choice.is-selected {
  border-color: #2166c1;
  box-shadow: inset 0 0 0 1px #2166c1;
  color: #164f9c;
  background: #f5f8fd;
}
.config-size-choice.is-selected small { color: #4775ae; }
.config-size-choice:disabled { cursor: not-allowed; opacity: .45; }
.config-section { border-bottom-color: #e8e8e5; }
.config-section-head {
  grid-template-columns: minmax(0,1fr) minmax(0, 52% ) 18px;
  column-gap: 9px;
  padding: 15px 0;
}
.config-section[open] > .config-section-head { padding-bottom: 11px; }
.config-section-head::after { content: '›'; color: #70716e; font-size: 20px; font-weight: 400; transform: rotate(0deg); }
.config-section[open] > .config-section-head::after { content: '⌄'; color: #30312f; transform: translateY(-1px); }
.config-section-head strong { color: #343533; font-size: 10px; letter-spacing: .12em; }
.config-section-head span { color: #777875; font-size: 10px; text-align: right; }
.config-section-head:focus-visible,
.config-production-details > summary:focus-visible { outline-color: #2166c1; }
.config-section-body { padding-bottom: 12px; }
.config-option-note { margin: 0 0 10px; color: #858682; font-size: 10px; line-height: 1.4; }
.option-category-nav { gap: 0; margin: 0 0 10px; border-bottom: 1px solid #ededeb; }
.category-pill {
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #888985;
  font-size: 9px;
}
.category-pill.is-active { border-bottom-color: #2166c1; background: transparent; color: #215ea9; }
.category-pill small { color: inherit; }
.option-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.option-choice {
  min-height: 55px;
  grid-template-columns: 40px minmax(0,1fr) auto;
  gap: 10px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid #efefed;
  border-radius: 0;
  background: transparent;
  color: #30312f;
  box-shadow: none;
}
.option-choice::before { display: none; }
.option-choice:hover { background: #fafaf9; color: #20211f; transform: none; }
.option-choice.is-selected { border-color: #efefed; box-shadow: none; color: #20211f; }
.option-choice-visual {
  width: 40px;
  height: 40px;
  border-color: #d8d9d5;
  border-radius: 3px;
  background: #f1f1ef;
}
.option-choice-visual > span { box-shadow: none; }
.option-choice-visual-size > span { border-color: #777975; background: #e3e4e0; }
.option-choice-visual-frame > span { background: linear-gradient(145deg,#8b8c87,#454641); }
.option-choice-visual-mat > span { border-color: #d8d8d4; background: #555652; }
.option-choice-visual-media > span { background: linear-gradient(135deg,#e1e0da 0 25%,#888a85 25% 50%,#cfc9b9 50% 75%,#60635f 75%); }
.option-choice-visual-glazing > span { border-color: #abbfc6; background: linear-gradient(135deg,rgba(255,255,255,.72),rgba(116,169,183,.16) 48%,rgba(255,255,255,.05)); }
.option-choice-visual-mounting > span { border-color: #777975; box-shadow: 0 9px 0 -7px #777975; }
.option-choice-copy { gap: 3px; }
.option-choice-name { color: #30312f; font-size: 11px; font-weight: 650; }
.option-choice-subtitle { color: #858682; font-size: 9px; }
.option-choice-price { min-width: 45px; gap: 5px; }
.option-choice-price strong { color: #858682; font-size: 9px; }
.option-choice-check { width: 17px; height: 17px; border-color: #a9aaa6; color: transparent; }
.option-choice.is-selected .option-choice-check { border-color: #2166c1; background: #2166c1; color: #fff; }
.config-production-details { margin-top: 10px; border-color: #e8e8e5; }
.config-production-details > summary { padding: 12px 0; }
.config-production-details > summary span { color: #454642; font-size: 11px; }
.config-production-details > summary strong { color: #858682; font-size: 10px; }
.config-construction-brief { padding-top: 10px; }
.config-construction-grid > div { border-color: #e6e6e3; background: #fafaf9; }
.config-construction-grid small { color: #858682; }
.config-construction-grid strong { color: #3d3e3c; }
.config-construction-grid span { color: #858682; }
.config-mounting-upgrade-note { background: #faf7f1; color: #777875; }
.crop-controls label { color: #777875; }
.crop-guide-callout { border-left-color: #2166c1; background: #f4f7fc; color: #4b6380; }
.crop-guide-callout i { border-color: #2166c1; }
.crop-guide-callout small,
.crop-note { color: #858682; }
.config-preview-note { border-color: #ded9d0; background: #faf8f3; color: #75654e; }
.config-actions {
  position: relative;
  bottom: auto;
  grid-template-columns: 88px minmax(0,1fr);
  gap: 9px;
  padding: 13px 22px max(13px, env(safe-area-inset-bottom));
  border-top: 1px solid #e4e4e1;
  background: #fff;
}
.quantity-control { width: 88px; flex: 0 0 88px; border-color: #d5d6d2; border-radius: 4px; }
.quantity-control button { width: 44px; flex: 0 0 44px; height: 46px; color: #3d3e3b; }
.quantity-control span { color: #2f302e; }
.config-actions .solid-btn {
  min-height: 46px;
  border-radius: 4px;
  background: #242625;
  color: #fff;
  font-size: 11px;
}
.config-actions .solid-btn:hover { background: #111312; }

@media (max-width: 900px) {
  .product-modal {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 42dvh) minmax(0, 1fr);
  }
  .config-preview { border-right: 0; border-bottom: 1px solid #e2e2df; }
  .config-preview .jm-proof-viewport { padding: 20px; }
  .config-preview .jm-proof-mount { max-height: min(30dvh, 330px); }
}
@media (max-width: 560px) {
  .config-panel-head { padding: 17px 16px 13px; }
  .config-panel-heading-row { padding-right: 35px; }
  .config-panel-tools { margin-top: 12px; }
  .config-panel-tool { min-height: 44px; flex: 1 1 auto; justify-content: center; }
  .config-panel-scroll { padding: 0 16px; }
  .config-actions { grid-template-columns: 88px minmax(0,1fr); padding-left: 16px; padding-right: 16px; }
  .config-size-choice { flex: 1 1 auto; }
  .option-choice { grid-template-columns: 38px minmax(0,1fr) auto; gap: 8px; }
  .option-choice-visual { width: 38px; height: 38px; }
  .preview-meta { left: 14px; bottom: 13px; }
  .preview-tools { right: 12px; bottom: 12px; }
}

/* One catalog presentation from the framed entry through browsing and checkout.
   Keep proof/configurator variables isolated from the storefront surface. */
body.store-native-catalog { background: #eee9e0; }
.store-native-catalog > :is(.site-header, main, .site-footer, #cart-shell, #checkout-shell, #mobile-nav) {
  --paper: #252820;
  --paper-2: #42483c;
  --muted: #606657;
  --line: #d0cabc;
  --line-strong: #a8ad9f;
  --accent: #293c32;
  --accent-ink: #faf8f2;
  --success: #32643e;
  --shadow: 0 20px 60px #24291b18;
  --radius: 8px;
  --radius-sm: 6px;
  color: var(--paper);
  color-scheme: light;
}
.store-native-catalog .site-header { background: #eee9e0; border-color: #d0cabc; }
.store-native-catalog:has(#store-preview-banner) .site-header { top: var(--store-preview-height, 50px); }
.store-native-catalog .site-header.is-scrolled { background: #eee9e0f2; }
.store-native-catalog .nav-link { color: #606657; }
.store-native-catalog .nav-link:is(:hover, .is-active) { color: #252820; background: #deded2; }
.store-native-catalog :is(.product-card, .shop-filters, .gallery-access-card, .lookup-card, .cart-drawer, .drawer-foot, .checkout-modal, #mobile-nav .confirmation-card, .success-panel) { background: #faf8f2; }
.store-native-catalog :is(.product-card-foot, .filter-group label, .field label, .footer-col a, .footer-col button) { color: #606657; }
.store-native-catalog .product-card:hover { border-color: #a8ad9f; box-shadow: 0 12px 30px #24291b18; }
.store-native-catalog .product-card-top { flex-wrap: wrap; gap: 10px; }
.store-native-catalog :is(.product-card-media, .checkout-summary) { background: #e4dfd4; }
.store-native-catalog :is(.collection-copy, .product-badge) { color: #faf8f2; }
.store-native-catalog .collection-copy span { color: #e2e5ca; }
.store-native-catalog :is(.search-box input, .toolbar-select, .field input, .field select, .field textarea, .promo-row input, select option) { background: #faf8f2; color: #252820; color-scheme: light; }
.store-native-catalog :is(.success-hero-copy > p, .success-state-card > p) { color: #606657; }
.store-native-catalog :is(.summary-row, .summary-row.total, .success-line-options, .success-technical summary, .success-technical-list dd, .success-edition-panel > p, .success-checklist, .success-relationship-panel > div:last-child > p, .success-share-note, .success-relationship-callout p) { color: #606657; }
.store-native-catalog .success-edition-note { color: #606657 !important; }
.store-native-catalog :is(.success-edition-panel, .success-edition-panel.is-limited, .success-progress-marker) { background: #faf8f2; }
.store-native-catalog :is(.success-edition-number span, .success-edition-number small, .is-limited .success-edition-symbol) { color: #74602e; }
.store-native-catalog .promise { background: #f4f0e7; }
.store-native-catalog .site-footer { background: #e6e2d7; }
.store-native-catalog :is(.outline-btn, .solid-btn) { border-radius: 6px; }
.store-native-catalog :is(button, a, input, select, [tabindex="0"]):focus-visible { outline: 2px solid #526143; outline-offset: 4px; }
.store-native-catalog #store-preview-banner { background: #e3e3d7; color: #42483c; border-color: #c6ccba; }
.store-native-catalog :is(.preview-mode-pill, .preview-banner-btn.primary) { background: #293c32; color: #faf8f2; border-color: #293c32; }
.store-native-catalog .preview-banner-btn:not(.primary) { color: #293c32; border-color: #a8ad9f; }
.store-native-catalog .framed-design-entry { min-height: min(760px, 90svh); border-bottom: 1px solid #d0cabc; }
.store-native-catalog .framed-entry-copy .hero-actions { margin-top: 30px; gap: 20px; }
.store-native-catalog #home-collections-section { padding-top: 64px; }
.store-native-catalog:has(#store-preview-banner) .shop-filters { top: calc(var(--header) + var(--store-preview-height, 50px) + 24px); }

/* Native framed-print workspace: supplier reference and a configuration price. */
.framed-design-entry{padding:132px max(24px,6vw) 56px;background:#eee9e0;color:#252820;display:grid;grid-template-columns:minmax(240px,.9fr) minmax(320px,1.1fr);gap:64px;align-items:center}
.framed-entry-copy h1{font-family:var(--font-display,Georgia,serif);font-size:clamp(38px,5vw,76px);line-height:1.02;letter-spacing:-.035em;margin:18px 0 24px;font-weight:400;max-width:640px}
.framed-entry-copy p{max-width:450px;font-size:17px;line-height:1.7;color:#585b50}.framed-entry-copy .kicker{color:#526143;letter-spacing:.15em}
.framed-entry-products{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.framed-entry-product{padding:18px;border:1px solid #d0cabc;background:#faf8f2;color:#252820;text-align:left;cursor:pointer;border-radius:4px;transition:transform .2s,box-shadow .2s}
.framed-entry-product:hover{transform:translateY(-3px);box-shadow:0 12px 30px #24291b18}.framed-entry-product:focus-visible{outline:3px solid #50653b;outline-offset:4px}.framed-entry-product>img{width:100%;height:200px;object-fit:cover;border:12px solid #252820;box-shadow:0 4px 9px #0002;background:#ddd8cc}.framed-entry-product>span{display:grid;gap:8px;margin-top:22px}.framed-entry-product strong{font-size:24px;font-weight:500}.framed-entry-product small{font-size:13px;color:#666a5d}.framed-entry-product b{font-size:13px;margin-top:14px;font-weight:600}
.native-frame-overview{background:#f9f7f1;color:#272d23;border:1px solid #d7d3c8;border-radius:8px;padding:20px;text-align:left;margin:16px 0}
.native-frame-reference{display:flex;align-items:center;gap:20px}.native-frame-reference>img{width:138px;height:138px;object-fit:contain;background:white;border-radius:4px;flex:none}.native-frame-reference h3{font-family:Georgia,serif;font-size:25px;font-weight:400;line-height:1.15;margin:8px 0}.native-frame-reference p{margin:8px 0;font-size:14px}.native-frame-reference small{display:block;color:#686d60;font-size:12px;line-height:1.5}
.native-frame-measurements{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:20px 0;padding-top:18px;border-top:1px solid #d7d3c8}.native-frame-measurements>div:last-child{grid-column:1/-1}.native-frame-measurements dt{font-size:11px;color:#696e62;text-transform:uppercase;letter-spacing:.07em;margin-bottom:6px}.native-frame-measurements dd{font-size:16px;margin:0;line-height:1.4}
.native-frame-price-breakdown{border-top:1px solid #d7d3c8;padding-top:16px}.native-frame-price-breakdown h4{margin:0 0 12px;font-size:14px;font-weight:600}.native-frame-price-breakdown>div{display:flex;justify-content:space-between;gap:16px;font-size:13px;padding:6px 0}.native-frame-price-breakdown>div>strong{white-space:nowrap}.native-frame-price-breakdown>.native-frame-total{font-size:20px;border-top:1px solid #d7d3c8;margin-top:8px;padding-top:14px}.native-frame-price-breakdown>small{display:block;font-size:11px;color:#6c7163;line-height:1.5;margin-top:10px}.native-frame-owner-note{padding-top:8px;border-top:1px dashed #d7d3c8}.native-frame-notice{font-size:12px!important;line-height:1.6;color:#755a26;background:#f1e9d8;padding:12px;border-radius:4px}
.is-native-framed .native-frame-overview{margin:20px}.native-frame-reference .kicker{color:#526143}.is-native-framed .option-choice-visual-frame.has-supplier-photo{width:88px;height:88px;flex:0 0 88px;background:#fff}.is-native-framed .option-choice-visual-frame.has-supplier-photo img{width:88px;height:88px;object-fit:contain}.is-native-framed .option-grid:has(.has-supplier-photo){grid-template-columns:1fr}.is-native-framed .option-choice:has(.has-supplier-photo){padding:14px;gap:16px}.is-native-framed .option-choice-name{font-size:14px}.is-native-framed .config-preview-confidence{max-width:100%}
@media(max-width:900px){.framed-design-entry{grid-template-columns:1fr;gap:32px;padding-top:112px}.framed-entry-copy h1{max-width:550px}.framed-entry-product>img{height:190px}}
@media(max-width:520px){.framed-design-entry{padding:108px 18px 36px}.framed-entry-products{gap:10px}.framed-entry-product{padding:10px}.framed-entry-product>img{height:130px;border-width:8px}.framed-entry-product strong{font-size:20px}.native-frame-overview{padding:14px}.native-frame-reference{gap:12px}.native-frame-reference>img{width:100px;height:100px}.native-frame-reference h3{font-size:20px}.native-frame-measurements{gap:12px}.is-native-framed .option-choice-visual-frame.has-supplier-photo,.is-native-framed .option-choice-visual-frame.has-supplier-photo img{width:64px;height:64px;flex-basis:64px}}
@media(prefers-reduced-motion:reduce){.framed-entry-product{transition:none}.framed-entry-product:hover{transform:none}}

.is-native-framed .config-panel,.is-native-framed .config-panel-head,.is-native-framed .config-panel-scroll,.native-frame-reference>div,.native-frame-measurements>div{min-width:0}.is-native-framed .native-frame-overview{margin:16px 0}.native-frame-reference{gap:12px}.native-frame-reference>img{width:88px;height:88px}.native-frame-reference h3{font-size:21px}.native-frame-reference small{overflow-wrap:anywhere}

body:has(#store-preview-banner) .modal-shell:has(.is-native-framed){top:var(--store-preview-height,50px)}body:has(#store-preview-banner) .is-native-framed{height:calc(100dvh - var(--store-preview-height,50px))}
/* Constrain both axes together: a square frame must remain square. */
.is-native-framed .config-preview{container-type:size}
.is-native-framed .config-preview .jm-proof-mount.is-2d-mount{--native-proof-ratio:calc(var(--jm-finished-width-in,var(--jm-ratio)) / var(--jm-finished-height-in,1));--native-proof-width:min(70cqw,calc(66cqh * var(--native-proof-ratio)));width:var(--native-proof-width);height:auto;max-width:none;max-height:none;aspect-ratio:var(--native-proof-ratio)}
.is-native-framed .jm-proof-mount[style*="--jm-molding-width-in"]{--jm-frame-molding:calc(var(--native-proof-width) * var(--jm-molding-width-in) / var(--jm-finished-width-in))!important}

/* Illustrate the selected supplier image-node window; visible cutout is separately qualified. */
.is-native-framed .jm-proof-mount[style*="--jm-node-inset-in"] .jm-proof-mat{--jm-mat-width:calc(var(--native-proof-width) * var(--jm-node-inset-in) / var(--jm-finished-width-in))}

/* Keep the customer choices ahead of the detailed configuration receipt. */
.is-native-framed .config-step-rail { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:6px; overflow:visible; }
.is-native-framed .step-rail-btn { justify-content:center; min-width:0; min-height:40px; border-radius:6px; white-space:normal; padding:8px; }
.is-native-framed .step-rail-num { display:none; }
.is-native-framed .step-rail-btn.is-active { background:#293c32; border-color:#293c32; color:#fff; }
.is-native-framed .config-step-group[hidden], .is-native-framed .native-frame-overview[hidden] { display:none; }
.is-native-framed .config-step-header { align-items:start; flex-wrap:wrap; }
.is-native-framed .config-step-header p { margin:0; font-size:13px; line-height:1.5; color:#656b64; }
.is-native-framed #step-frame .config-step-summary-badge { display:none; }
.is-native-framed #step-frame .config-step-header, .is-native-framed #step-frame .config-option-note { display:none; }
.is-native-framed #step-frame .option-category-nav { flex-wrap:nowrap; overflow-x:auto; }
.is-native-framed #step-frame .category-pill { flex-shrink:0; }
.is-native-framed #step-frame .option-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.is-native-framed #step-frame .option-choice { display:flex; flex-direction:column; align-items:stretch; padding:10px; gap:10px; min-width:0; border-radius:8px; }
.is-native-framed #step-frame .option-choice.is-selected { border-color:#293c32; box-shadow:inset 0 0 0 1px #293c32; background:#f1f5f0; }
.is-native-framed #step-frame .option-choice-visual-frame.has-supplier-photo { width:100%; height:110px; flex:0 0 110px; }
.is-native-framed #step-frame .option-choice-visual-frame.has-supplier-photo img { width:100%; height:110px; object-fit:contain; }
.is-native-framed #step-frame .option-choice-copy { width:100%; min-width:0; }
.is-native-framed #step-frame .option-choice-name { font-size:13px; line-height:1.35; overflow-wrap:anywhere; white-space:normal; overflow:visible; }
.is-native-framed #step-frame .option-choice-price { display:flex; align-items:center; justify-content:space-between; width:100%; margin-top:auto; }
.is-native-framed .config-panel-scroll { scroll-behavior:auto; }
@media(min-width:1000px){.product-modal.is-native-framed{grid-template-columns:minmax(0,1fr) 460px}}
@media(max-width:900px){
  .product-modal.is-native-framed { grid-template-rows:minmax(180px,29dvh) minmax(0,1fr); }
  .is-native-framed .config-panel-head { padding:12px 16px 10px; }
  .is-native-framed .config-panel h2 { font-size:22px; margin-top:6px; }
  .is-native-framed .config-tagline { display:none; }
  .is-native-framed .config-panel-tools { margin-top:8px; gap:5px; }
  .is-native-framed .config-panel-tool { min-height:36px; padding:7px; font-size:10px; }
  .is-native-framed .config-step-rail { margin-top:8px; }
  .is-native-framed .step-rail-btn { min-height:36px; }
  .is-native-framed .preview-meta { display:none; }
  .is-native-framed .config-preview-confidence { max-width:145px; left:10px; top:10px; }
  .is-native-framed .config-preview-confidence small { display:none; }
  .is-native-framed .preview-crop-toolbar { bottom:8px; right:10px; }
}
/* Photo-first shopping: the selected artwork stays visible above formats. */
.shop-layout.is-choosing-photograph { grid-template-columns: minmax(0, 1fr); }
.shop-photo-selection { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); }
.shop-photo-selection[hidden] { display: none; }
.shop-photo-selection > img { width: 112px; height: 112px; object-fit: contain; flex: 0 0 auto; }
.shop-photo-selection > div { flex: 1; min-width: 0; }
.shop-photo-selection h2 { margin: 6px 0; overflow-wrap: anywhere; }
.shop-photo-selection p { color: var(--muted); }
.photograph-card .product-card-media img { object-fit: contain; }
.store-native-catalog .hero-lead { color: var(--muted); }
.store-native-catalog .hero-plaque { color: #faf8f2; }
.store-native-catalog .hero-plaque span { color: #c8ccbf; }
.store-empty-state { grid-column: 1 / -1; padding: 48px 16px; text-align: center; color: var(--muted); }
@media (max-width: 600px) {
  .shop-photo-selection { flex-wrap: wrap; gap: 16px; padding: 16px; }
  .shop-photo-selection > img { width: 80px; height: 80px; }
  .shop-photo-selection > button { width: 100%; }
}
