:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5f6c65;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #dcded7;
  --accent: #176b4d;
  --accent-dark: #0f4f38;
  --warm: #e8b65a;
  --radius: 1rem;
  --shadow: 0 18px 50px rgb(23 32 28 / 8%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
.skip-link { position: fixed; z-index: 1000; top: .5rem; left: .5rem; transform: translateY(-200%); border-radius: .5rem; background: var(--ink); color: white; padding: .65rem 1rem; }
.skip-link:focus { transform: translateY(0); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--accent-dark); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--warm); outline-offset: 3px; }

.site-header, .site-footer, main { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.site-header { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header nav { display: flex; align-items: center; gap: 1rem; }
.site-header nav form { margin: 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 116px; height: auto; }

main { min-height: calc(100vh - 9rem); padding-block: 4rem; }
.hero { max-width: 780px; padding-block: 3rem 5rem; }
.hero h1, .page-heading h1 { margin: .35rem 0 1rem; font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: .98; letter-spacing: -.065em; }
.page-heading h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
.eyebrow { margin: 0; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lede { max-width: 650px; color: var(--muted); font-size: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 2.8rem; align-items: center; justify-content: center; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: white; cursor: pointer; font: inherit; font-weight: 700; padding: .65rem 1.1rem; text-decoration: none; }
.button:hover { background: var(--accent-dark); }
.button-secondary { background: transparent; color: var(--accent-dark); }
.link-button { border: 0; background: transparent; color: var(--accent-dark); cursor: pointer; font: inherit; padding: 0; text-decoration: underline; }

.feature-grid, .card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature-grid > h2 { grid-column: 1 / -1; }
.feature-grid article, .card, .auth-card, .empty-state, .form-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); padding: 1.5rem; }
.feature-grid h3, .card h3 { margin-top: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin: 3rem 0 1rem; }
.section-heading h2 { margin: .15rem 0 0; font-size: 2rem; }
.card dl div { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-block: .55rem; }
.card dt { color: var(--muted); }
.card dd { margin: 0; font-weight: 700; }
.muted { color: var(--muted); }
.active-store { border: 1px solid var(--accent); border-radius: var(--radius); background: #eef8f3; margin-bottom: 1rem; padding: 1.5rem; }
.active-store h2 { margin: .2rem 0; }
.status-pill { display: inline-flex; border-radius: 999px; background: #d9f0e5; color: var(--accent-dark); font-size: .85rem; font-weight: 800; padding: .35rem .7rem; }
.card-actions { display: flex; flex-wrap: wrap; gap: .75rem; border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1rem; }
.messages { margin-bottom: 1.5rem; }
.message { border: 1px solid var(--line); border-radius: .75rem; background: var(--surface); margin: 0; padding: .75rem 1rem; }
.message-success { border-color: var(--accent); background: #eef8f3; }
.message-warning { border-color: #c98513; background: #fff8e8; }
.message-error { border-color: #a52222; background: #fff0f0; }

.auth-card { max-width: 440px; margin-inline: auto; }
.form-card { max-width: 720px; }
.compact-heading { max-width: 780px; }
.compact-heading h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
.error-page { max-width: 680px; padding-block: 4rem; }
.error-page h1 { margin: .35rem 0 1rem; font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: 1; letter-spacing: -.055em; }
.auth-card h1 { margin-top: .25rem; }
.field { margin-block: 1rem; }
.field label { display: block; margin-bottom: .35rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 2.8rem; border: 1px solid var(--line); border-radius: .65rem; background: var(--surface); font: inherit; padding: .6rem .75rem; }
.field-help { color: var(--muted); font-size: .9rem; margin: .3rem 0 0; }
.field-error input, .field-error select { border-color: #a52222; }
.error { border-left: 4px solid #a52222; background: #fff0f0; padding: .75rem; }

.site-footer { border-top: 1px solid var(--line); color: var(--muted); padding-block: 1.5rem; }

.merchant-product-list { display: grid; gap: .75rem; }
.merchant-product-row { display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); padding: .75rem; }
.merchant-product-row img { width: 88px; aspect-ratio: 1; border-radius: .7rem; object-fit: cover; }
.merchant-product-row h3 { margin: .15rem 0; }
.merchant-product-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }
.merchant-product-actions form { margin: 0; }
.danger-link { color: #8d1d1d; }
.inventory-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 1rem; align-items: start; }
.inventory-adjustment { position: sticky; top: 1rem; }
.inventory-balance-list, .movement-list { display: grid; gap: .5rem; }
.inventory-balance-list article, .movement-list article { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); padding: .85rem 1rem; }
.inventory-balance-list article div, .movement-list article div { display: grid; }
.inventory-balance-list article span, .movement-list article span { color: var(--muted); font-size: .9rem; }
.inventory-balance-list data, .movement-list data { font-size: 1.2rem; font-weight: 800; }

.storefront-body { --store-ink: #25201c; --store-cream: #f4efe5; --store-coral: #d56c4a; background: var(--store-cream); color: var(--store-ink); }
.storefront-announcement { display: flex; min-height: 2.6rem; align-items: center; justify-content: center; gap: .75rem; background: var(--store-ink); color: var(--store-cream); font-size: .8rem; font-weight: 700; letter-spacing: .03em; padding: .65rem 1rem; text-align: center; }
.storefront-announcement.align-left { justify-content: flex-start; text-align: left; }
.storefront-announcement.align-right { justify-content: flex-end; text-align: right; }
.storefront-announcement.announcement-accent { background: var(--store-coral); color: #fff; }
.storefront-announcement.announcement-soft { background: color-mix(in srgb, var(--store-coral) 14%, var(--store-cream)); color: var(--store-ink); }
.storefront-announcement a { color: inherit; font-weight: 850; text-decoration: none; }
.storefront-header, .storefront-footer, .storefront-main { width: min(1240px, calc(100% - 2rem)); margin-inline: auto; }
.storefront-header { z-index: 20; display: flex; min-height: 5.5rem; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid rgb(37 32 28 / 16%); background: var(--store-cream); }
.storefront-header.is-sticky { position: sticky; top: 0; }
.storefront-header.header-logo-center { display: grid; grid-template-columns: 1fr auto 1fr; }
.storefront-header.header-logo-center .storefront-brand { grid-column: 2; }
.storefront-header.header-logo-center nav { grid-column: 1 / -1; justify-content: center; padding-bottom: 1rem; }
.storefront-header.header-compact { min-height: 4rem; }
.storefront-header nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.25rem; }
.storefront-nav-group { display: contents; }
.storefront-header a, .storefront-footer a { color: var(--store-ink); text-decoration: none; }
.storefront-header.nav-pills nav > a, .storefront-header.nav-pills .storefront-nav-group > a { border-radius: 999px; background: color-mix(in srgb, var(--store-ink) 7%, transparent); padding: .45rem .7rem; }
.storefront-header.nav-underline nav > a, .storefront-header.nav-underline .storefront-nav-group > a { border-bottom: 1px solid currentcolor; padding-bottom: .2rem; }
.storefront-brand { font-size: 1.75rem; font-weight: 700; letter-spacing: -.04em; }
.storefront-main { min-height: calc(100vh - 11rem); padding-block: 0 5rem; }
.storefront-messages { padding-top: 1rem; }
.storefront-hero { display: grid; min-height: 500px; align-content: center; border-bottom: 1px solid rgb(37 32 28 / 16%); }
.storefront-hero-copy { display: grid; justify-items: start; }
.storefront-hero h1, .storefront-collection-heading h1, .product-detail h1 { max-width: 900px; margin: .5rem 0 1rem; font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 500; letter-spacing: -.065em; line-height: .9; }
.storefront-hero [data-setting="body"] { max-width: 600px; font-size: 1.2rem; }
.storefront-hero .hero-button { width: max-content; margin-top: 1rem; }
.storefront-hero-art { position: relative; display: none; min-height: 460px; overflow: hidden; border-radius: clamp(1rem, 3vw, 2.2rem); background: linear-gradient(145deg, color-mix(in srgb, var(--store-coral) 62%, #fff), color-mix(in srgb, var(--store-ink) 18%, var(--store-cream))); isolation: isolate; }
.storefront-hero-art span { position: absolute; border: 1px solid rgb(255 255 255 / 55%); border-radius: 50%; background: rgb(255 255 255 / 14%); }
.storefront-hero-art span:nth-child(1) { width: 72%; aspect-ratio: 1; top: -24%; right: -18%; }
.storefront-hero-art span:nth-child(2) { width: 48%; aspect-ratio: 1; bottom: -14%; left: -10%; }
.storefront-hero-art span:nth-child(3) { width: 24%; aspect-ratio: 1; top: 46%; right: 16%; background: rgb(255 255 255 / 26%); }
.storefront-hero-art strong { position: absolute; z-index: 2; right: 8%; bottom: 4%; color: rgb(255 255 255 / 68%); font-family: Georgia, serif; font-size: clamp(8rem, 18vw, 18rem); font-weight: 400; line-height: .8; }
.storefront-hero.hero-layout-centered { min-height: 560px; place-items: center; text-align: center; }
.storefront-hero.hero-layout-centered .storefront-hero-copy { width: 100%; justify-items: center; }
.storefront-hero.hero-layout-centered h1 { max-width: 1000px; }
.storefront-hero.hero-layout-centered [data-setting="body"] { margin-inline: auto; }
.storefront-hero.hero-layout-split { grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; padding-block: clamp(3rem, 6vw, 6rem); }
.storefront-hero.hero-layout-split .storefront-hero-art { display: block; }
.storefront-hero.hero-layout-compact { min-height: 310px; padding-block: 3rem; }
.storefront-hero.hero-layout-compact h1 { max-width: 820px; font-size: clamp(2.8rem, 7vw, 5.8rem); }
.storefront-hero.hero-eyebrow-line .eyebrow { display: inline-flex; align-items: center; gap: .7rem; }
.storefront-hero.hero-eyebrow-line .eyebrow::before { width: 2rem; height: 1px; background: currentcolor; content: ""; }
.storefront-hero.hero-eyebrow-pill .eyebrow { width: max-content; border: 1px solid currentcolor; border-radius: 999px; padding: .35rem .65rem; }
.storefront-hero.hero-button-outline .hero-button { background: transparent; color: currentcolor; }
.storefront-hero.hero-button-text .hero-button { min-height: auto; border: 0; border-bottom: 1px solid currentcolor; border-radius: 0; background: transparent; color: currentcolor; padding: .3rem 0; }
.storefront-hero.hero-button-width-wide .hero-button { width: min(320px, 100%); }
.storefront-hero.hero-button-width-full .hero-button { width: 100%; }

/* Opt-in element design controls for text-forward widgets. */
.element-align-left { text-align: left; }.element-align-center { text-align: center; }.element-align-right { text-align: right; }
.storefront-hero.element-align-left .storefront-hero-copy { justify-items: start; }.storefront-hero.element-align-center .storefront-hero-copy { justify-items: center; }.storefront-hero.element-align-right .storefront-hero-copy { justify-items: end; }
.element-align-center [data-setting="body"], .element-align-center [data-setting="subheading"] { margin-inline: auto; }.element-align-right [data-setting="body"], .element-align-right [data-setting="subheading"] { margin-left: auto; }
.element-align-center.storefront-button-group > div { justify-content: center; }.element-align-right.storefront-button-group > div { justify-content: flex-end; }
.element-width-narrow { --element-copy-max: 560px; }.element-width-standard { --element-copy-max: 760px; }.element-width-wide { --element-copy-max: 980px; }
.storefront-hero[class*="element-width-"] .storefront-hero-copy, .storefront-heading-block[class*="element-width-"], .storefront-text-block[class*="element-width-"], .storefront-rich-text[class*="element-width-"], .storefront-button-group[class*="element-width-"] { max-width: var(--element-copy-max, none); }
.element-align-center[class*="element-width-"] { margin-inline: auto; }.element-align-right[class*="element-width-"] { margin-left: auto; }
.storefront-image-text[class*="element-width-"] .storefront-image-text-copy, .storefront-promo-banner[class*="element-width-"] > div, .storefront-newsletter[class*="element-width-"] > div:first-child, .storefront-contact[class*="element-width-"] > div:first-child { max-width: var(--element-copy-max, none); }
.element-heading-font-serif :is(h1, h2, h3) { font-family: Georgia, "Times New Roman", serif; }.element-heading-font-sans :is(h1, h2, h3) { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.element-heading-size-small :is(h1, h2) { font-size: clamp(2rem, 4vw, 3.2rem); }.element-heading-size-medium :is(h1, h2) { font-size: clamp(2.8rem, 6vw, 5rem); }.element-heading-size-large :is(h1, h2) { font-size: clamp(3.8rem, 8vw, 7rem); }.element-heading-size-display :is(h1, h2) { font-size: clamp(5rem, 12vw, 10rem); }
.element-heading-weight-light :is(h1, h2, h3) { font-weight: 300; }.element-heading-weight-regular :is(h1, h2, h3) { font-weight: 500; }.element-heading-weight-bold :is(h1, h2, h3) { font-weight: 800; }
.element-heading-spacing-tight :is(h1, h2, h3) { letter-spacing: -.075em; }.element-heading-spacing-normal :is(h1, h2, h3) { letter-spacing: 0; }.element-heading-spacing-wide :is(h1, h2, h3) { letter-spacing: .06em; }
.element-heading-case-uppercase :is(h1, h2, h3) { text-transform: uppercase; }
.element-heading-color-custom :is(h1, h2, h3) { color: var(--element-heading-color); }
.element-body-size-small [data-setting="body"], .element-body-size-small [data-setting="subheading"] { font-size: .92rem; }.element-body-size-medium [data-setting="body"], .element-body-size-medium [data-setting="subheading"] { font-size: 1.15rem; }.element-body-size-large [data-setting="body"], .element-body-size-large [data-setting="subheading"] { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.element-body-color-custom [data-setting="body"], .element-body-color-custom [data-setting="subheading"] { color: var(--element-body-color); }
.storefront-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 4rem 0 1.5rem; }
.storefront-section-heading h2 { margin: .25rem 0 0; font-size: 2.5rem; font-weight: 500; }
.storefront-grid { display: grid; grid-template-columns: repeat(var(--store-columns, 3), minmax(0, 1fr)); gap: 2rem 1rem; }
.product-card { min-width: 0; }
.product-image-link { display: block; overflow: hidden; border-radius: 1.2rem; background: #e4ddce; }
.product-card img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .25s ease; }
.product-card:hover img { transform: scale(1.02); }
.product-card-copy { padding: .9rem .2rem; }
.product-card-copy h2, .product-card-copy h3 { margin: .2rem 0; font-size: 1.45rem; }
.product-card-copy a { color: var(--store-ink); text-decoration: none; }
.storefront-footer { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(180px, .7fr) minmax(180px, .7fr); gap: clamp(1.5rem, 5vw, 4rem); border-top: 1px solid rgb(37 32 28 / 16%); padding-block: clamp(2.5rem, 7vw, 5rem); }
.storefront-footer-intro { max-width: 480px; }
.storefront-footer-intro strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.04em; line-height: 1.05; }
.storefront-footer-intro p { color: color-mix(in srgb, var(--store-ink) 68%, transparent); line-height: 1.65; }
.storefront-footer nav, .storefront-footer nav > span, .storefront-footer-meta { display: grid; align-content: start; gap: .65rem; }
.storefront-footer nav > span + span { border-top: 1px solid rgb(37 32 28 / 14%); margin-top: .45rem; padding-top: .85rem; }
.storefront-footer-meta { color: color-mix(in srgb, var(--store-ink) 68%, transparent); font-size: .82rem; }
.storefront-breadcrumb { display: flex; gap: .6rem; padding-block: 2rem; }
.storefront-breadcrumb a { color: var(--store-ink); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.product-detail-image img { display: block; width: 100%; border-radius: 1.5rem; }
.product-detail h1 { font-size: clamp(3rem, 7vw, 6rem); }
.product-price { font-size: 1.35rem; font-weight: 800; }
.product-description { font-size: 1.08rem; }
.product-note { display: grid; gap: .25rem; border-top: 1px solid rgb(37 32 28 / 16%); margin-top: 2rem; padding-top: 1rem; }
.add-to-cart { display: grid; grid-template-columns: 110px 1fr; gap: .6rem; margin-top: 1.5rem; }
.add-to-cart label { grid-column: 1 / -1; font-weight: 700; }
.add-to-cart input, .cart-line input { min-height: 2.8rem; border: 1px solid rgb(37 32 28 / 25%); border-radius: 999px; background: #fffdf8; font: inherit; padding: .5rem .8rem; }
.storefront-button { display: inline-flex; min-height: 2.8rem; align-items: center; justify-content: center; border: 1px solid var(--store-ink); border-radius: 999px; background: var(--store-ink); color: var(--store-cream); cursor: pointer; font: inherit; font-weight: 800; padding: .65rem 1rem; text-decoration: none; }
.buttons-square .storefront-button { border-radius: 0; }
.buttons-soft .storefront-button { border-radius: .65rem; }
.buttons-pill .storefront-button { border-radius: 999px; }
.heading-serif .storefront-brand, .heading-serif .storefront-hero h1, .heading-serif .storefront-collection-heading h1, .heading-serif .product-detail h1, .heading-serif .storefront-section-heading h2, .heading-serif .product-card-copy h2, .heading-serif .product-card-copy h3, .heading-serif .storefront-rich-text h2, .heading-serif .storefront-image-text h2 { font-family: Georgia, "Times New Roman", serif; }
.heading-sans .storefront-brand, .heading-sans .storefront-hero h1, .heading-sans .storefront-collection-heading h1, .heading-sans .product-detail h1, .heading-sans .storefront-section-heading h2, .heading-sans .product-card-copy h2, .heading-sans .product-card-copy h3, .heading-sans .storefront-rich-text h2, .heading-sans .storefront-image-text h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.storefront-rich-text { max-width: 820px; margin-block: 6rem 2rem; border-top: 1px solid rgb(37 32 28 / 16%); padding-top: 5rem; }
.storefront-rich-text.align-center { margin-inline: auto; text-align: center; }
.storefront-rich-text h2, .storefront-image-text h2 { margin: .6rem 0 1.4rem; font-size: clamp(2.8rem, 7vw, 5.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .95; }
.storefront-rich-text > p:last-child { max-width: 680px; font-size: 1.15rem; line-height: 1.75; }
.storefront-rich-text.align-center > p:last-child { margin-inline: auto; }
.storefront-image-text { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); margin-block: 6rem; }
.storefront-image-text.image-right .storefront-image-text-media { order: 2; }
.storefront-image-text-media { overflow: hidden; border-radius: 1rem; background: #e5ded1; }
.storefront-image-text-media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.storefront-image-text-copy > p:last-child { font-size: 1.08rem; line-height: 1.7; }
.storefront-spacer.size-small { height: 2rem; }
.storefront-spacer.size-medium { height: 5rem; }
.storefront-spacer.size-large { height: 9rem; }
.storefront-divider { margin-block: 3rem; border-top: 1px solid rgb(37 32 28 / 20%); }
.storefront-divider.style-dashed { border-top-style: dashed; }
.storefront-divider.style-dotted { border-top-style: dotted; }
.designer-preview [data-preview-section-id] { position: relative; cursor: pointer; }
.designer-preview [data-preview-section-id]:hover { outline: 2px solid rgb(23 100 72 / 45%); outline-offset: 5px; }
.designer-preview [data-preview-section-id].is-designer-selected { outline: 3px solid #176448; outline-offset: 5px; }
.collection-product-count { display: flex; justify-content: flex-end; color: rgb(37 32 28 / 65%); padding-bottom: 1rem; }
.storefront-button:disabled { cursor: not-allowed; opacity: .5; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: 2rem; align-items: start; }
.cart-lines { display: grid; gap: .75rem; }
.cart-line { display: grid; grid-template-columns: 100px 1fr 150px auto; gap: 1rem; align-items: center; border-bottom: 1px solid rgb(37 32 28 / 16%); padding-bottom: .75rem; }
.cart-line img { width: 100px; aspect-ratio: 1; border-radius: .8rem; object-fit: cover; }
.cart-line h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; }
.cart-line h2 a { color: var(--store-ink); text-decoration: none; }
.cart-line form { display: grid; gap: .35rem; }
.cart-summary { border: 1px solid rgb(37 32 28 / 16%); border-radius: 1.2rem; background: #fffdf8; padding: 1.5rem; }
.cart-summary h2 { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.cart-summary dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.cart-summary dd { margin: 0; }
.cart-summary .cart-total { border-top: 1px solid rgb(37 32 28 / 20%); font-size: 1.2rem; font-weight: 800; }
.storefront-collection-heading { max-width: 800px; padding: 5rem 0 3rem; }
.storefront-collection-heading h1 { font-size: clamp(3rem, 8vw, 6rem); }
.storefront-empty { grid-column: 1 / -1; border: 1px solid rgb(37 32 28 / 16%); border-radius: 1rem; padding: 3rem; text-align: center; }

/* Universal storefront section contract */
.orkbo-section-frame { display: flex; width: 100%; min-height: 0; align-items: flex-start; margin-top: var(--section-margin-top, 0); margin-bottom: var(--section-margin-bottom, 0); border: var(--section-border-width, 0) solid var(--section-border-color, transparent); border-radius: var(--section-radius, 0); padding-top: var(--section-padding-top, 0); padding-bottom: var(--section-padding-bottom, 0); }
.layout-section-frame { margin-top: var(--section-margin-top, 0); margin-bottom: var(--section-margin-bottom, 0); border: var(--section-border-width, 0) solid var(--section-border-color, transparent); border-radius: var(--section-radius, 0); padding-top: var(--section-padding-top, 0); padding-bottom: var(--section-padding-bottom, 0); }
.layout-section-frame.section-width-wide { width: min(1240px, calc(100% - 2rem)); margin-inline: auto; }
.layout-section-frame.section-width-normal { width: min(980px, calc(100% - 2rem)); margin-inline: auto; }
.layout-section-frame.section-width-narrow { width: min(720px, calc(100% - 2rem)); margin-inline: auto; }
.layout-section-frame.section-width-full { left: auto; width: 100%; max-width: none; transform: none; }
.layout-section-frame.has-custom-background { background: var(--section-bg); }
.layout-section-frame.has-custom-text { color: var(--section-text); }
.layout-section-frame.shadow-soft { box-shadow: 0 12px 32px rgb(34 28 22 / 10%); }
.layout-section-frame.shadow-lifted { box-shadow: 0 24px 60px rgb(34 28 22 / 18%); }
.layout-section-frame.section-height-small { min-height: 160px; }
.layout-section-frame.section-height-medium { min-height: 240px; }
.layout-section-frame.section-height-large { min-height: 360px; }
.layout-section-frame.section-height-screen { min-height: 100vh; }
.orkbo-section-frame.has-custom-background { background: var(--section-bg); }
.orkbo-section-frame.has-custom-text { color: var(--section-text); }
.orkbo-section-frame.shadow-soft { box-shadow: 0 12px 32px rgb(34 28 22 / 10%); }
.orkbo-section-frame.shadow-lifted { box-shadow: 0 24px 60px rgb(34 28 22 / 18%); }
.orkbo-section-frame.valign-center { align-items: center; }
.orkbo-section-frame.valign-end { align-items: flex-end; }
.orkbo-section-frame.section-height-small { min-height: 320px; }
.orkbo-section-frame.section-height-medium { min-height: 480px; }
.orkbo-section-frame.section-height-large { min-height: 640px; }
.orkbo-section-frame.section-height-screen { min-height: 100vh; }
.orkbo-section-inner { width: 100%; margin-inline: auto; padding-inline: clamp(.25rem, 2vw, 1.5rem); }
.section-width-wide > .orkbo-section-inner { max-width: 1240px; }
.section-width-normal > .orkbo-section-inner { max-width: 980px; }
.section-width-narrow > .orkbo-section-inner { max-width: 720px; }
.section-width-full { position: relative; left: 50%; width: 100vw; transform: translateX(-50%); border-radius: 0; }
.section-width-full > .orkbo-section-inner { max-width: none; padding-inline: max(1rem, calc((100vw - 1240px) / 2)); }
.orkbo-section-frame.align-center { text-align: center; }
.orkbo-section-frame.align-right { text-align: right; }
.orkbo-section-frame.align-center .storefront-button-group > div, .orkbo-section-frame.align-center .storefront-promo-banner { justify-content: center; }
.orkbo-section-frame.align-right .storefront-button-group > div, .orkbo-section-frame.align-right .storefront-promo-banner { justify-content: flex-end; }
.animation-fade { animation: orkbo-fade .45s ease both; }
.animation-rise { animation: orkbo-rise .55s ease both; }
@keyframes orkbo-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes orkbo-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Expanded section library */
.orkbo-section-frame h2 { margin: .45rem 0 1.2rem; font-size: clamp(2.2rem, 5vw, 4.8rem); font-weight: 500; letter-spacing: -.05em; line-height: .98; }
.orkbo-section-frame h3 { font-size: 1.35rem; }
.heading-serif .orkbo-section-frame h1, .heading-serif .orkbo-section-frame h2, .heading-serif .orkbo-section-frame h3, .heading-serif .storefront-quote blockquote { font-family: Georgia, "Times New Roman", serif; }
.heading-sans .orkbo-section-frame h1, .heading-sans .orkbo-section-frame h2, .heading-sans .orkbo-section-frame h3, .heading-sans .storefront-quote blockquote { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
.storefront-heading-block { padding-block: clamp(2rem, 7vw, 6rem); }
.storefront-heading-block > p:last-child, .storefront-text-block p { max-width: 720px; font-size: 1.12rem; line-height: 1.7; }
.align-center .storefront-heading-block > p:last-child, .align-center .storefront-text-block p { margin-inline: auto; }
.align-right .storefront-heading-block > p:last-child, .align-right .storefront-text-block p { margin-left: auto; }
.storefront-heading-block.heading-size-small h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.storefront-heading-block.heading-size-medium h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.storefront-heading-block.heading-size-display h2 { font-size: clamp(4rem, 9vw, 8rem); }
.storefront-text-block { max-width: 820px; padding-block: 3rem; }
.storefront-button-group { display: grid; gap: 1rem; padding-block: 3rem; }
.storefront-button-group > div { display: flex; flex-wrap: wrap; gap: .75rem; }
.storefront-button.is-secondary { background: transparent; color: currentcolor; }
.storefront-columns, .storefront-features, .storefront-testimonials, .storefront-stats, .storefront-gallery, .storefront-steps, .storefront-icon-list, .storefront-collection-list { padding-block: clamp(2.5rem, 7vw, 6rem); }
.storefront-column-grid, .storefront-feature-grid, .storefront-collection-cards, .storefront-gallery > div { display: grid; grid-template-columns: repeat(var(--section-columns, 3), minmax(0, 1fr)); gap: 1rem; }
.columns-2 { --section-columns: 2; }
.columns-1 { --section-columns: 1; }
.columns-3 { --section-columns: 3; }
.columns-4 { --section-columns: 4; }
.storefront-column-grid article, .storefront-feature-grid article { border: 1px solid currentcolor; border-radius: 1rem; padding: clamp(1.2rem, 3vw, 2rem); }
.storefront-column-grid p, .storefront-feature-grid p { line-height: 1.65; }
.storefront-feature-grid article > span { display: grid; width: 2.2rem; height: 2.2rem; place-items: center; border-radius: 50%; background: var(--store-coral); color: #fff; font-size: .75rem; font-weight: 800; }
.storefront-promo-banner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 1.25rem; background: var(--store-ink); color: var(--store-cream); padding: clamp(1.5rem, 5vw, 4rem); }
.storefront-promo-banner > div { max-width: 760px; }
.storefront-promo-banner .storefront-button { border-color: var(--store-cream); background: var(--store-cream); color: var(--store-ink); }
.storefront-featured-product, .storefront-video { display: grid; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); padding-block: 5rem; }
.storefront-featured-product img, .storefront-video-cover img, .storefront-gallery img { display: block; width: 100%; border-radius: 1rem; object-fit: cover; }
.storefront-featured-product img { aspect-ratio: 4 / 5; }
.storefront-media-placeholder { display: grid; min-height: 420px; place-items: center; border-radius: 1rem; background: rgb(37 32 28 / 10%); }
.storefront-collection-cards a { display: grid; min-height: 200px; align-content: end; border: 1px solid currentcolor; border-radius: 1rem; color: inherit; padding: 1.5rem; text-decoration: none; }
.storefront-collection-cards a span { color: var(--store-coral); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.storefront-collection-cards a strong { margin-block: .4rem; font-size: 1.7rem; }
.storefront-quote { max-width: 1000px; margin: 0 auto; padding-block: clamp(3rem, 9vw, 8rem); }
.storefront-quote blockquote { margin: 0; font-size: clamp(2.5rem, 7vw, 6.5rem); letter-spacing: -.055em; line-height: .98; }
.storefront-quote.quote-size-medium blockquote { font-size: clamp(2rem, 4vw, 3.5rem); }
.storefront-quote.quote-size-display blockquote { font-size: clamp(4rem, 9vw, 8rem); }
.storefront-quote figcaption { margin-top: 1.5rem; font-weight: 800; }
.storefront-steps ol { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.storefront-steps li { display: grid; gap: 1rem; border-top: 1px solid currentcolor; padding-top: 1rem; }
.storefront-steps li span { color: var(--store-coral); font-weight: 800; }
.steps-3 [data-step="4"] { display: none; }
.storefront-icon-list ul { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.storefront-icon-list li { display: flex; align-items: center; gap: .6rem; border: 1px solid currentcolor; border-radius: 999px; padding: .75rem 1rem; }
.storefront-icon-list li span { color: var(--store-coral); }
.storefront-testimonials > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.storefront-testimonials figure { margin: 0; border: 1px solid currentcolor; border-radius: 1rem; padding: 1.5rem; }
.storefront-testimonials figure > span { color: var(--store-coral); letter-spacing: .12em; }
.storefront-testimonials blockquote { margin: 1rem 0; font-size: 1.15rem; line-height: 1.6; }
.storefront-testimonials figcaption { font-weight: 800; }
.storefront-stats > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; border-top: 1px solid currentcolor; padding-top: 2rem; }

.designer-preview [data-preview-block-id] { cursor: pointer; }
.designer-preview .is-designer-block-selected { outline: 2px solid var(--store-green); outline-offset: 3px; }
.storefront-stats article { display: grid; gap: .5rem; }
.storefront-stats article strong { color: var(--store-coral); font-size: clamp(2rem, 5vw, 4.5rem); letter-spacing: -.05em; }
.storefront-faq { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: clamp(2rem, 7vw, 7rem); padding-block: 5rem; }
.storefront-faq details { border-top: 1px solid currentcolor; padding: 1.1rem 0; }
.storefront-faq summary { cursor: pointer; font-size: 1.1rem; font-weight: 800; }
.storefront-faq details p { line-height: 1.65; }
.storefront-gallery img { aspect-ratio: 4 / 5; }
.storefront-video-cover { position: relative; }
.storefront-video-cover img { aspect-ratio: 16 / 10; }
.storefront-video-cover span { position: absolute; inset: 50% auto auto 50%; display: grid; width: 4rem; height: 4rem; transform: translate(-50%, -50%); place-items: center; border-radius: 50%; background: #fff; color: #111; box-shadow: 0 10px 35px rgb(0 0 0 / 22%); }
.storefront-logo-list { padding-block: 4rem; text-align: center; }
.storefront-logo-list h2 { font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; }
.storefront-logo-list > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; margin-top: 2rem; }
.storefront-logo-list span { font-family: Georgia, serif; font-size: 1.4rem; font-weight: 800; }
.storefront-marquee { width: 100%; overflow: hidden; border-block: 1px solid currentcolor; padding-block: 1rem; }
.storefront-marquee > div { display: flex; width: max-content; gap: 4rem; animation: orkbo-marquee 18s linear infinite; }
.storefront-marquee.speed-slow > div { animation-duration: 28s; }
.storefront-marquee.speed-fast > div { animation-duration: 10s; }
.storefront-marquee span { font-size: 1.2rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
@keyframes orkbo-marquee { to { transform: translateX(-50%); } }
.storefront-newsletter, .storefront-contact { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(2rem, 7vw, 7rem); align-items: end; padding-block: 5rem; }
.storefront-newsletter form { display: grid; gap: .6rem; }
.storefront-newsletter form > div { display: flex; }
.storefront-newsletter input { width: 100%; min-height: 3rem; border: 1px solid currentcolor; border-radius: 999px 0 0 999px; background: #fff; font: inherit; padding: .7rem 1rem; }
.storefront-newsletter form .storefront-button { border-radius: 0 999px 999px 0; }
.storefront-contact > div:last-child { display: grid; justify-items: start; gap: 1rem; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 2rem; align-items: start; }
.checkout-form { max-width: 680px; }
.checkout-form h2, .order-confirmation h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 6vw, 4rem); line-height: 1; }
.checkout-form .field input, .checkout-form .field textarea { width: 100%; min-height: 2.8rem; border: 1px solid rgb(37 32 28 / 25%); border-radius: .7rem; background: #fffdf8; font: inherit; padding: .65rem .8rem; }
.checkout-form .field input[type="checkbox"] { width: auto; min-height: auto; }
.checkout-form .field input[type="radio"] { width: auto; min-height: auto; accent-color: var(--store-ink); }
.checkout-form #id_shipping_rate { display: grid; gap: .65rem; }
.checkout-form #id_shipping_rate > div label { display: flex; align-items: center; gap: .65rem; border: 1px solid rgb(37 32 28 / 18%); border-radius: .8rem; background: #fffdf8; cursor: pointer; font-weight: 700; padding: .85rem; }
.checkout-form #id_shipping_rate > div:has(input:checked) label { border-color: var(--store-ink); box-shadow: 0 0 0 1px var(--store-ink); }
.shipping-estimate { border-radius: .65rem; background: rgb(16 105 73 / 7%); color: #0b7352; font-size: .86rem; font-weight: 700; padding: .65rem .75rem; }
.pickup-instructions { border: 1px solid rgb(37 32 28 / 14%); border-radius: .75rem; background: #f8f4eb; margin-top: 1rem; padding: .9rem; }
.pickup-instructions p { margin: .35rem 0 0; }
.order-confirmation { max-width: 760px; padding-block: 5rem; }
.order-confirmation .cart-summary { margin-block: 2rem; }
.order-confirmation .cart-summary > p { display: flex; justify-content: space-between; gap: 1rem; }
.order-list { display: grid; gap: .65rem; }
.order-list > a, .order-list > article { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); color: var(--ink); padding: 1rem; text-decoration: none; }
.order-list span { display: grid; }
.order-list small { color: var(--muted); }
.order-search { display: grid; gap: .4rem; margin-bottom: 1rem; }
.order-search label { font-weight: 700; }
.order-search div { display: flex; align-items: center; gap: .75rem; }
.order-search input { width: min(520px, 100%); min-height: 2.8rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font: inherit; padding: .6rem .9rem; }
.cart-summary form { margin-block: 1rem; }
.discount-entry { border-block: 1px solid rgb(37 32 28 / 12%); margin: 1rem 0 .35rem; padding: 1rem 0; }
.discount-entry label { display: block; margin-bottom: .45rem; font-size: .82rem; font-weight: 800; }
.discount-entry form > div { display: flex; gap: .55rem; }
.discount-entry input { min-width: 0; flex: 1; border: 1px solid rgb(37 32 28 / 22%); border-radius: .65rem; background: #fffdf8; color: inherit; font: inherit; padding: .7rem .8rem; text-transform: uppercase; }
.storefront-button-small { min-height: 0; padding: .65rem .9rem; }
.discount-applied { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid rgb(16 105 73 / 22%); border-radius: .75rem; background: rgb(16 105 73 / 7%); padding: .7rem .8rem; }
.discount-applied span { display: grid; gap: 2px; }
.discount-applied small { color: var(--muted); }
.discount-applied form { margin: 0; }
.discount-total { color: #0b7352; font-weight: 750; }
.discount-error { border-radius: .65rem; background: #fbe9e7; color: #8f302b; font-size: .86rem; line-height: 1.45; margin: .7rem 0 0; padding: .65rem .75rem; }
.variant-list { display: grid; gap: .65rem; }
.variant-list > a { display: flex; justify-content: space-between; gap: 1rem; border: 1px solid var(--line); border-radius: .8rem; background: var(--surface); color: var(--ink); padding: 1rem; text-decoration: none; }
.variant-list span { display: grid; }
.variant-list small { color: var(--muted); }
.public-variant-list { display: grid; gap: .75rem; margin-top: 1.5rem; }
.variant-purchase { display: grid; grid-template-columns: minmax(0, 1fr) 90px auto; align-items: end; gap: .65rem; border-top: 1px solid rgb(37 32 28 / 16%); padding-top: .75rem; }
.variant-purchase div { display: grid; }
.variant-purchase label { font-weight: 700; }
.variant-purchase input { width: 90px; min-height: 2.8rem; border: 1px solid rgb(37 32 28 / 25%); border-radius: 999px; background: #fffdf8; font: inherit; padding: .5rem .8rem; }
.product-image-upload { margin-top: 1.5rem; }
.product-image-upload > img { display: block; width: min(240px, 100%); aspect-ratio: 4 / 5; border-radius: .8rem; object-fit: cover; }

@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
  .site-header nav { flex-wrap: wrap; }
  main { padding-block: 2rem; }
  .hero { padding-block: 2rem 3rem; }
  .feature-grid, .card-grid { grid-template-columns: 1fr; }
  .merchant-product-row { grid-template-columns: 70px 1fr; }
  .merchant-product-row img { width: 70px; }
  .merchant-product-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .storefront-header, .storefront-header.header-logo-center { display: flex; align-items: flex-start; flex-direction: column; padding-block: 1.25rem; }
  .storefront-header nav { justify-content: flex-start; }
  .storefront-hero { min-height: 360px; }
  .storefront-hero.hero-layout-split { grid-template-columns: 1fr; }
  .storefront-hero.hero-layout-split .storefront-hero-art { min-height: 320px; }
  .storefront-hero.hero-layout-centered { min-height: 460px; }
  .storefront-grid { grid-template-columns: 1fr 1fr; }
  .storefront-image-text { grid-template-columns: 1fr; }
  .storefront-image-text.image-right .storefront-image-text-media { order: 0; }
  .storefront-column-grid, .storefront-feature-grid, .storefront-collection-cards, .storefront-gallery > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storefront-featured-product, .storefront-video, .storefront-faq, .storefront-newsletter, .storefront-contact { grid-template-columns: 1fr; }
  .storefront-testimonials > div, .storefront-stats > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storefront-steps ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storefront-promo-banner { align-items: flex-start; flex-direction: column; }
  .product-detail { grid-template-columns: 1fr; }
  .inventory-layout { grid-template-columns: 1fr; }
  .inventory-adjustment { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .variant-purchase { grid-template-columns: 1fr 90px; }
  .variant-purchase button { grid-column: 1 / -1; }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line img { width: 80px; }
  .cart-line form { grid-column: 2; }
  .storefront-footer { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .storefront-grid { grid-template-columns: 1fr; }
  .storefront-column-grid, .storefront-feature-grid, .storefront-collection-cards, .storefront-gallery > div, .storefront-testimonials > div, .storefront-stats > div, .storefront-steps ol { grid-template-columns: 1fr; }
  .storefront-newsletter form > div { align-items: stretch; flex-direction: column; }
  .storefront-newsletter input, .storefront-newsletter form .storefront-button { border-radius: 999px; }
}

@media (min-width: 1025px) { .orkbo-section-frame.hide-desktop { display: none !important; } }
@media (min-width: 481px) and (max-width: 1024px) { .orkbo-section-frame.hide-tablet { display: none !important; } }
@media (max-width: 480px) { .orkbo-section-frame.hide-mobile { display: none !important; } }
@media (min-width: 1025px) { .layout-section-frame.hide-desktop { display: none !important; } }
@media (min-width: 481px) and (max-width: 1024px) { .layout-section-frame.hide-tablet { display: none !important; } }
@media (max-width: 480px) { .layout-section-frame.hide-mobile { display: none !important; } }

/* Orkbo public marketing experience */
.marketing-body { --marketing-ink: #14231c; --marketing-green: #176448; --marketing-green-dark: #0d4532; --marketing-cream: #f4f0e7; --marketing-line: rgb(20 35 28 / 14%); overflow-x: hidden; background: #f8f7f2; }
.marketing-body > main { width: 100%; max-width: none; min-height: 0; padding: 0; }
.marketing-header { position: relative; z-index: 10; display: grid; width: min(1440px, calc(100% - 4rem)); min-height: 82px; align-items: center; grid-template-columns: 1fr auto 1fr; gap: 2rem; margin-inline: auto; }
.marketing-brand { display: inline-flex; width: max-content; align-items: center; text-decoration: none; }
.marketing-brand img { display: block; width: 126px; height: auto; }
.marketing-nav { display: flex; align-items: center; gap: 2rem; }
.marketing-nav a, .marketing-text-link { border: 0; background: transparent; color: #405047; cursor: pointer; font: inherit; font-size: .9rem; font-weight: 650; text-decoration: none; }
.marketing-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.marketing-header-actions form { margin: 0; }
.marketing-button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 1.2rem; border: 1px solid var(--marketing-green); border-radius: 999px; background: var(--marketing-green); color: #fff; font-weight: 750; padding: .75rem 1.3rem; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.marketing-button:hover { transform: translateY(-2px); background: var(--marketing-green-dark); }
.marketing-button-small { min-height: 40px; gap: .7rem; font-size: .85rem; padding: .5rem 1rem; }
.marketing-button-quiet { background: transparent; color: var(--marketing-green-dark); }
.marketing-hero { display: grid; min-height: 820px; align-items: center; grid-template-columns: minmax(420px, .88fr) minmax(620px, 1.12fr); gap: clamp(3rem, 6vw, 7rem); width: min(1540px, calc(100% - 4rem)); margin-inline: auto; padding: 5rem 0 7rem; }
.marketing-hero-copy { position: relative; z-index: 2; }
.marketing-kicker { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.4rem; color: var(--marketing-green); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.marketing-kicker > span { width: 26px; height: 1px; background: currentcolor; }
.marketing-hero h1 { max-width: 770px; margin: 0; font-size: clamp(4rem, 6vw, 7rem); font-weight: 520; letter-spacing: -.072em; line-height: .89; }
.marketing-hero h1 em, .marketing-designer h2 em { color: var(--marketing-green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.marketing-lede { max-width: 660px; margin: 2rem 0 0; color: #59675f; font-size: 1.2rem; line-height: 1.65; }
.marketing-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.marketing-proof { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.6rem 0 0; padding: 0; color: #657168; font-size: .78rem; list-style: none; }
.marketing-proof li { display: flex; align-items: center; gap: .45rem; }
.marketing-proof span { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #dcece3; color: var(--marketing-green); font-size: .65rem; }
.marketing-product-scene { position: relative; min-width: 0; padding: 3rem 0 3rem 1rem; }
.marketing-product-scene::before { position: absolute; inset: -7% -16% -5% 6%; border-radius: 52% 48% 48% 52%; background: #dbe8df; content: ""; transform: rotate(-3deg); }
.marketing-window { position: relative; overflow: hidden; border: 1px solid rgb(20 35 28 / 16%); border-radius: 18px; background: #fff; box-shadow: 0 36px 80px rgb(19 48 35 / 18%); }
.marketing-window-bar { display: flex; height: 38px; align-items: center; gap: 6px; border-bottom: 1px solid #e7ebe8; background: #f8faf8; padding: 0 12px; }
.marketing-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #cbd2cd; }
.marketing-window-bar span { margin-left: 8px; color: #8b948f; font-size: 8px; }
.marketing-admin-shell { display: grid; min-height: 490px; grid-template-columns: 118px 1fr; }
.marketing-admin-shell > aside { display: flex; flex-direction: column; gap: 5px; border-right: 1px solid #e9ecea; background: #fbfcfb; padding: 13px 8px; }
.marketing-admin-shell > aside strong { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; background: var(--marketing-ink); color: #fff; margin: 0 5px 11px; }
.marketing-admin-shell > aside span { border-radius: 6px; color: #667169; font-size: 8px; font-weight: 650; padding: 7px; }
.marketing-admin-shell > aside span.is-active { background: #e5f1ea; color: var(--marketing-green); }
.marketing-admin-main { min-width: 0; padding: 24px; }
.marketing-admin-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.marketing-admin-heading > div { display: grid; }
.marketing-admin-heading small, .marketing-chart small { color: #839088; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.marketing-admin-heading strong { font-size: 16px; }
.marketing-admin-heading button { border: 1px solid #dce2de; border-radius: 7px; background: #fff; color: #53615a; font-size: 8px; padding: 7px 9px; }
.marketing-metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.marketing-metric-row article { display: grid; border: 1px solid #e2e7e4; border-radius: 10px; padding: 12px; }
.marketing-metric-row small { color: #7c8981; font-size: 7px; }
.marketing-metric-row strong { margin-top: 5px; font-size: 18px; }
.marketing-metric-row span { width: max-content; margin-top: 4px; border-radius: 999px; background: #e5f3ea; color: #26704e; font-size: 7px; padding: 2px 5px; }
.marketing-chart { margin-top: 10px; border: 1px solid #e2e7e4; border-radius: 10px; padding: 16px 16px 4px; }
.marketing-chart > div { display: grid; }
.marketing-chart strong { font-size: 24px; }
.marketing-chart svg { display: block; width: 100%; color: var(--marketing-green); }
.marketing-order-card, .marketing-live-card { position: absolute; z-index: 2; display: flex; align-items: center; border: 1px solid rgb(20 35 28 / 12%); background: rgb(255 255 255 / 96%); box-shadow: 0 18px 40px rgb(20 45 34 / 18%); }
.marketing-order-card { right: -4%; bottom: 1%; gap: 10px; border-radius: 13px; padding: 11px 15px 11px 11px; }
.marketing-order-icon { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 9px; background: #dff1e7; color: var(--marketing-green); }
.marketing-order-card div { display: grid; }
.marketing-order-card small { color: #829087; font-size: 6px; font-weight: 800; letter-spacing: .1em; }
.marketing-order-card strong { font-size: 10px; }
.marketing-order-card div span { color: #66736b; font-size: 7px; }
.marketing-live-card { top: 4%; left: -3%; gap: 8px; border-radius: 999px; padding: 9px 12px; }
.marketing-live-card > i { width: 8px; height: 8px; border-radius: 50%; background: #29a362; box-shadow: 0 0 0 4px #e3f4e9; }
.marketing-live-card > span { display: grid; }
.marketing-live-card strong { font-size: 9px; }
.marketing-live-card small { color: #7b8780; font-size: 7px; }
.marketing-live-card b { margin-left: 8px; color: var(--marketing-green); font-size: 7px; }
.marketing-audience { border-block: 1px solid var(--marketing-line); background: #fff; padding: 1.4rem 2rem; text-align: center; }
.marketing-audience p { margin: 0 0 .7rem; color: #89938d; font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.marketing-audience div { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3.5rem; }
.marketing-audience span { color: #58665e; font-family: Georgia, serif; font-size: 1.15rem; }
.marketing-section { padding: clamp(6rem, 10vw, 10rem) max(2rem, calc((100vw - 1360px) / 2)); }
.marketing-section-intro { max-width: 870px; }
.marketing-section-intro-wide { max-width: 1100px; }
.marketing-section-intro h2, .marketing-designer h2, .marketing-final-cta h2 { margin: 0; font-size: clamp(3rem, 5.8vw, 6.3rem); font-weight: 520; letter-spacing: -.065em; line-height: .96; }
.marketing-section-intro > p:last-child { max-width: 680px; margin: 1.5rem 0 0; color: #657168; font-size: 1.1rem; }
.marketing-journey { overflow: hidden; background: var(--marketing-cream); }
.marketing-journey-track { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); margin: 5rem 0 0; padding: 0; list-style: none; }
.marketing-journey-track li { position: relative; display: grid; align-content: start; min-height: 230px; border-top: 1px solid #aeb8b1; padding: 1.2rem 1rem 0 0; }
.marketing-journey-track li::before { position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border: 2px solid var(--marketing-cream); border-radius: 50%; background: var(--marketing-green); box-shadow: 0 0 0 1px var(--marketing-green); content: ""; }
.marketing-journey-track span { color: #89948d; font-size: .65rem; font-weight: 800; }
.marketing-journey-track i { display: grid; width: 55px; height: 55px; place-items: center; margin: 2.2rem 0 1.1rem; border-radius: 18px; background: #fff; color: var(--marketing-green); font-size: 1.4rem; font-style: normal; box-shadow: 0 8px 25px rgb(26 61 45 / 8%); }
.marketing-journey-track strong { font-size: 1rem; }
.marketing-journey-track small { max-width: 130px; color: #758078; }
.marketing-capabilities { background: #fbfaf6; }
.marketing-capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 4.5rem; }
.marketing-capability-card { display: flex; min-height: 620px; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 28px; padding: clamp(2rem, 4vw, 4rem); }
.marketing-card-mint { background: #dcebe3; }.marketing-card-peach { background: #f1e0d5; }.marketing-card-lilac { background: #e6e1ed; }.marketing-card-gold { background: #eee5c7; }
.marketing-capability-card > p { margin: 2rem 0 .7rem; color: #53665c; font-size: .65rem; font-weight: 850; letter-spacing: .14em; }
.marketing-capability-card h3 { max-width: 620px; margin: 0; font-size: clamp(2.1rem, 3.3vw, 4rem); font-weight: 520; letter-spacing: -.055em; line-height: 1; }
.marketing-capability-card > span { max-width: 530px; margin-top: 1.2rem; color: #5d6962; }
.marketing-mini-builder, .marketing-mini-products, .marketing-mini-customer, .marketing-mini-growth { width: min(520px, 100%); margin: auto; border: 1px solid rgb(20 35 28 / 12%); border-radius: 16px; background: rgb(255 255 255 / 72%); box-shadow: 0 24px 50px rgb(35 50 42 / 10%); }
.marketing-mini-builder { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px; }
.marketing-mini-builder span { border: 1px solid #dce4df; border-radius: 9px; background: #fff; font-size: .75rem; font-weight: 700; padding: 1rem; }
.marketing-mini-builder b { display: grid; min-height: 52px; grid-column: 1 / -1; place-items: center; border: 1px dashed #72a38c; border-radius: 9px; color: var(--marketing-green); }
.marketing-mini-products { display: grid; gap: 1px; overflow: hidden; background: #dde2df; }
.marketing-mini-products span { display: grid; align-items: center; grid-template-columns: 46px 1fr; background: #fff; padding: 10px; }
.marketing-mini-products i { width: 40px; height: 40px; grid-row: span 2; border-radius: 8px; background: #e6ded2; }
.marketing-mini-products b { font-size: .78rem; }.marketing-mini-products small { color: #7a857f; font-size: .65rem; }
.marketing-mini-customer { display: grid; align-items: center; grid-template-columns: 50px 1fr auto; gap: 11px; padding: 18px; }
.marketing-mini-customer > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #d7cee4; color: #514565; font-weight: 800; }
.marketing-mini-customer div { display: grid; }.marketing-mini-customer small { color: #7c7783; }.marketing-mini-customer > b { font-size: .72rem; }
.marketing-mini-growth { padding: 24px; }.marketing-mini-growth span { display: block; color: #717c75; font-size: .75rem; }.marketing-mini-growth strong { font-size: 2.8rem; }.marketing-mini-growth svg { display: block; width: 100%; color: #856d27; }
.marketing-designer { display: grid; align-items: center; grid-template-columns: minmax(340px, .72fr) minmax(680px, 1.28fr); gap: clamp(3rem, 6vw, 7rem); overflow: hidden; background: #112b21; color: #fff; }
.marketing-designer .marketing-kicker { color: #8fd0b1; }.marketing-designer-copy > p:not(.marketing-kicker) { max-width: 590px; color: #b8c8bf; font-size: 1.05rem; }
.marketing-designer-copy ul { display: grid; gap: 1rem; margin: 2.3rem 0 0; padding: 0; list-style: none; }
.marketing-designer-copy li { display: grid; align-items: center; grid-template-columns: 48px 1fr; gap: .8rem; }
.marketing-designer-copy li > b { font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }.marketing-designer-copy li span { display: grid; }.marketing-designer-copy li small { color: #93a69b; }
.marketing-builder-window { overflow: hidden; min-width: 850px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 18px; background: #fff; color: #17221c; box-shadow: 0 40px 100px rgb(0 0 0 / 35%); }
.marketing-builder-top { display: flex; height: 48px; align-items: center; justify-content: space-between; border-bottom: 1px solid #dfe4e1; padding: 0 10px; font-size: 8px; }.marketing-builder-top > span { display: flex; align-items: center; gap: 8px; }.marketing-builder-top > span b { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 7px; background: #17221c; color: #fff; }.marketing-builder-top button { border: 0; border-radius: 7px; background: var(--marketing-green); color: #fff; padding: 8px 13px; }
.marketing-builder-body { display: grid; min-height: 550px; grid-template-columns: 190px 1fr 220px; }.marketing-builder-body > aside { padding: 15px 10px; }.marketing-builder-body > aside:first-child { border-right: 1px solid #dfe4e1; }.marketing-builder-body > aside:last-child { border-left: 1px solid #dfe4e1; }.marketing-builder-body aside small { color: #77837c; font-size: 7px; font-weight: 800; letter-spacing: .1em; }.marketing-builder-body aside > label { display: block; margin: 12px 0; border: 1px solid #dce2de; border-radius: 7px; color: #8a948e; font-size: 8px; padding: 8px; }.marketing-builder-body aside > strong { display: flex; justify-content: space-between; border-bottom: 1px solid #e8ece9; font-size: 8px; padding: 11px 3px; }.marketing-builder-body aside > strong b { border-radius: 999px; background: #edf1ef; padding: 1px 5px; }.marketing-builder-canvas { display: grid; width: auto; min-height: 0; place-items: center; margin: 0; background: #e6eae8; padding: 30px; }.marketing-builder-canvas > div { width: 100%; min-height: 430px; background: #f1eadf; padding: 25px; }.marketing-builder-canvas nav { display: flex; justify-content: space-between; font-size: 9px; }.marketing-builder-canvas p { margin: 90px 0 10px; color: #337255; font-size: 7px; font-weight: 800; letter-spacing: .12em; }.marketing-builder-canvas h3 { margin: 0; font-family: Georgia, serif; font-size: 36px; font-weight: 400; letter-spacing: -.04em; line-height: .95; }.marketing-builder-canvas h3 em { color: #176448; }.marketing-builder-canvas button { margin-top: 24px; border: 0; border-radius: 999px; background: #17221c; color: #fff; font-size: 8px; padding: 9px 13px; }.marketing-builder-body > aside:last-child > div { display: flex; gap: 13px; border-bottom: 1px solid #dfe4e1; margin: 11px -10px; padding: 0 10px 9px; font-size: 8px; }.marketing-builder-body aside label input { width: 100%; border: 0; background: transparent; font-size: 8px; }.marketing-builder-body aside label i { display: block; width: 100%; height: 20px; margin-top: 5px; border-radius: 5px; background: #f1eadf; }
.marketing-connected { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; background: #f7f5ef; }.marketing-connected > div { min-height: 620px; border-radius: 28px; padding: clamp(2.5rem, 5vw, 5rem); }.marketing-connected-before { background: #e9e7e1; }.marketing-connected-after { overflow: hidden; background: #dcebe3; }.marketing-connected p { color: #65736b; font-size: .65rem; font-weight: 850; letter-spacing: .13em; }.marketing-connected h3 { max-width: 440px; font-size: clamp(2.3rem, 4vw, 4.5rem); font-weight: 520; letter-spacing: -.06em; line-height: 1; }.marketing-connected h2 { max-width: 700px; margin: 0; font-size: clamp(3rem, 5vw, 5.7rem); font-weight: 520; letter-spacing: -.065em; line-height: .95; }.marketing-connected-before div { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 4rem; }.marketing-connected-before span { border: 1px solid #bfc4c0; border-radius: 999px; background: #f7f6f2; color: #747d77; padding: .65rem 1rem; }.marketing-orbit { position: relative; display: grid; width: min(450px, 90%); aspect-ratio: 1; place-items: center; margin: 3rem auto -10rem; border: 1px solid rgb(23 100 72 / 25%); border-radius: 50%; }.marketing-orbit::before { position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid rgb(23 100 72 / 20%); border-radius: 50%; content: ""; }.marketing-orbit > strong { position: relative; z-index: 2; display: grid; width: 95px; height: 95px; place-items: center; border-radius: 28px; background: var(--marketing-green); color: #fff; font-family: Georgia, serif; font-size: 2.5rem; box-shadow: 0 22px 45px rgb(23 100 72 / 25%); }.marketing-orbit span { position: absolute; border-radius: 999px; background: #fff; color: var(--marketing-green); font-size: .72rem; font-weight: 750; padding: .6rem .9rem; }.marketing-orbit span:nth-of-type(1) { top: 8%; left: 42%; }.marketing-orbit span:nth-of-type(2) { top: 35%; right: -2%; }.marketing-orbit span:nth-of-type(3) { right: 5%; bottom: 17%; }.marketing-orbit span:nth-of-type(4) { bottom: 9%; left: 18%; }.marketing-orbit span:nth-of-type(5) { top: 35%; left: -3%; }
.marketing-roadmap { background: #fff; }.marketing-roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 4rem; }.marketing-roadmap-grid article { border: 1px solid #dfe4e1; border-radius: 22px; background: #fafbf9; padding: clamp(2rem, 4vw, 3.5rem); }.marketing-roadmap-grid article:last-child { background: #f2eee5; }.marketing-roadmap-grid article > span { display: inline-flex; border-radius: 999px; font-size: .68rem; font-weight: 800; padding: .4rem .7rem; text-transform: uppercase; }.marketing-status-live { background: #dcefe4; color: #166044; }.marketing-status-next { background: #e9dfc7; color: #735a20; }.marketing-roadmap-grid h3 { margin: 1.5rem 0; font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 550; letter-spacing: -.05em; }.marketing-roadmap-grid ul { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }.marketing-roadmap-grid li { border-top: 1px solid #dfe4e1; padding-top: .8rem; }.marketing-roadmap-grid li::before { margin-right: .7rem; color: var(--marketing-green); content: "✓"; }
.marketing-final-cta { display: grid; min-height: 650px; place-items: center; align-content: center; background: var(--marketing-green-dark); color: #fff; padding: 6rem 2rem; text-align: center; }.marketing-final-cta .marketing-kicker { color: #92cdb3; }.marketing-final-cta h2 { max-width: 1050px; }.marketing-final-cta > p:not(.marketing-kicker) { max-width: 620px; color: #bad0c5; font-size: 1.1rem; }.marketing-button-light { margin-top: 1.2rem; border-color: #fff; background: #fff; color: var(--marketing-green-dark); }
.marketing-footer { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 4rem; background: #0d1e17; color: #afbeb6; padding: 5rem max(2rem, calc((100vw - 1360px) / 2)) 2rem; }.marketing-brand-light { color: #fff; }.marketing-footer > div > p { max-width: 420px; }.marketing-footer nav { display: grid; align-content: start; gap: .7rem; }.marketing-footer nav strong { margin-bottom: .5rem; color: #fff; }.marketing-footer nav a { color: #afbeb6; text-decoration: none; }.marketing-footer-bottom { grid-column: 1 / -1; border-top: 1px solid rgb(255 255 255 / 13%); margin: 2rem 0 0; padding-top: 1.5rem; font-size: .8rem; }

/* Merchant theme library */
.theme-library-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; overflow: hidden; border-radius: 24px; background: #10291f; color: #fff; padding: clamp(2rem, 5vw, 4.5rem); }
.theme-library-hero > div { max-width: 780px; }.theme-library-hero h1 { max-width: 760px; margin: .5rem 0 1rem; font-size: clamp(2.5rem, 5vw, 5.3rem); font-weight: 520; letter-spacing: -.065em; line-height: .95; }.theme-library-hero p:last-child { max-width: 650px; color: #bdcec5; line-height: 1.65; }.theme-library-hero .button { flex: 0 0 auto; background: #fff; color: #154c38; }
.theme-library-section { margin-top: clamp(3rem, 7vw, 6rem); }.theme-library-section .section-heading { align-items: end; }
.theme-upgrade-guide { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .9rem; align-items: start; margin: 0 0 1.25rem; border: 1px solid #c8ded3; border-radius: 16px; background: #f1f8f4; color: #174c38; padding: 1rem 1.15rem; }.theme-upgrade-guide > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: #d9eee3; font-size: 1rem; font-weight: 900; }.theme-upgrade-guide strong { font-size: .86rem; }.theme-upgrade-guide p { margin: .25rem 0 0; color: #557164; font-size: .78rem; line-height: 1.5; }
.installed-theme-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }.installed-theme-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 14px 35px rgb(24 42 33 / 6%); }.installed-theme-card.is-live { border-color: #86b39f; box-shadow: 0 18px 50px rgb(23 100 72 / 12%); }
.installed-theme-card.has-update { border-color: #d8b86a; }.theme-status-row { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }.theme-update-badge,.theme-current-badge { display: inline-flex; border-radius: 999px; font-size: .61rem; font-weight: 850; letter-spacing: .06em; padding: .35rem .55rem; text-transform: uppercase; }.theme-update-badge { background: #fff0c7; color: #815d0d; }.theme-current-badge { background: #eef4f1; color: #587066; }.theme-origin-note { margin-top: .35rem !important; color: #347058 !important; }.button-update { background: #8a640e; color: #fff; }.button-update:hover { background: #6f4f08; }
.theme-card-preview { display: grid; min-height: 330px; align-content: start; overflow: hidden; background: #f1eadf; color: #201b17; padding: 20px; text-decoration: none; }.theme-preview-signal { background: #edf1ec; color: #101b16; }.theme-preview-field-notes { background: #e7dece; color: #27231f; }
.theme-preview-top { display: flex; justify-content: flex-end; gap: 12px; border-bottom: 1px solid currentcolor; padding-bottom: 12px; opacity: .65; }.theme-preview-top i { width: 40px; height: 5px; border-radius: 999px; background: currentcolor; }.theme-preview-copy { display: grid; justify-items: start; margin: 55px 0 45px; }.theme-preview-copy small { color: #337255; font-size: .65rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }.theme-preview-copy strong { margin-top: 9px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -.06em; line-height: .9; }.theme-preview-signal .theme-preview-copy { justify-items: center; text-align: center; }.theme-preview-signal .theme-preview-copy strong { font-family: inherit; font-weight: 700; }.theme-preview-copy > i { width: 90px; height: 25px; margin-top: 22px; border-radius: 999px; background: currentcolor; }.theme-preview-products, .preset-product-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.theme-preview-products i { height: 70px; border-radius: 8px; background: rgb(255 255 255 / 58%); }
.installed-theme-info { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 18px; }.installed-theme-info h3 { margin: 7px 0 3px; }.installed-theme-info p { margin: 0; color: var(--muted); font-size: .78rem; }.theme-status { display: inline-flex; border-radius: 999px; background: #edf0ee; color: #647069; font-size: .63rem; font-weight: 850; letter-spacing: .08em; padding: .35rem .55rem; text-transform: uppercase; }.theme-status.is-live { background: #dff1e7; color: #146044; }.theme-card-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }.theme-card-actions form { margin: 0; }.theme-delete-button { border: 0; background: transparent; color: #a43c35; cursor: pointer; font-size: .75rem; padding: .65rem .4rem; }
.preset-theme-grid { display: grid; gap: 1.5rem; }.preset-theme-card { display: grid; min-height: 500px; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; }.preset-theme-art { display: grid; min-height: 500px; align-content: space-between; overflow: hidden; background: var(--preset-bg); color: var(--preset-text); padding: clamp(1.5rem, 4vw, 3.5rem); }.preset-browser-bar { display: flex; gap: 6px; }.preset-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--preset-accent); }.preset-theme-art > div { max-width: 620px; }.preset-theme-art small { color: var(--preset-accent); font-size: .66rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }.preset-theme-art strong { display: block; margin: .7rem 0 1.4rem; font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 400; letter-spacing: -.07em; line-height: .82; }.preset-theme-art p { font-size: clamp(1rem, 2vw, 1.45rem); line-height: 1.3; }.preset-theme-art b { display: inline-flex; margin-top: 1rem; border-radius: 999px; background: var(--preset-text); color: var(--preset-bg); font-size: .7rem; padding: .7rem 1rem; }.preset-product-row i { height: 55px; border-top: 2px solid var(--preset-accent); background: rgb(255 255 255 / 25%); }.preset-theme-info { align-self: center; padding: clamp(2rem, 4vw, 4rem); }.preset-theme-info h3 { margin: .5rem 0 1rem; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.05em; }.preset-theme-info > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }.preset-theme-info ul { display: grid; gap: .65rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }.preset-theme-info li::before { margin-right: .55rem; color: var(--green); content: "✓"; }
.theme-package-trust { margin: -1rem 0 1.5rem; color: #718078 !important; font-size: .72rem; font-weight: 700; }

@media (max-width: 1100px) {
  .marketing-header { grid-template-columns: 1fr auto; }.marketing-nav { display: none; }
  .marketing-hero { grid-template-columns: 1fr; }.marketing-product-scene { width: min(850px, 100%); margin-inline: auto; }
  .marketing-designer { grid-template-columns: 1fr; }.marketing-builder-window { min-width: 800px; }
  .marketing-journey-track { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .installed-theme-grid { grid-template-columns: 1fr; }.preset-theme-card { grid-template-columns: 1fr; }.theme-library-hero { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .marketing-header { width: calc(100% - 2rem); min-height: 70px; }.marketing-header-actions .marketing-text-link { display: none; }.marketing-header-actions { gap: .4rem; }
  .marketing-hero { min-height: 0; width: calc(100% - 2rem); grid-template-columns: minmax(0, 1fr); padding: 4rem 0 5rem; }.marketing-hero h1 { font-size: clamp(3.5rem, 17vw, 5.3rem); }.marketing-lede { font-size: 1rem; }
  .marketing-product-scene { padding-left: 0; }.marketing-admin-shell { min-height: 330px; grid-template-columns: 62px 1fr; }.marketing-admin-shell > aside span { overflow: hidden; padding-inline: 2px; text-indent: -999px; }.marketing-admin-main { padding: 12px; }.marketing-metric-row { grid-template-columns: 1fr 1fr; }.marketing-metric-row article:last-child { display: none; }.marketing-order-card { right: -2%; }.marketing-live-card { left: -2%; }
  .marketing-section { padding: 6rem 1rem; }.marketing-section-intro h2, .marketing-designer h2, .marketing-final-cta h2 { font-size: clamp(2.9rem, 14vw, 4.6rem); }
  .marketing-journey-track { grid-template-columns: 1fr 1fr; }.marketing-capability-grid, .marketing-connected, .marketing-roadmap-grid { grid-template-columns: 1fr; }.marketing-capability-card { min-height: 520px; }
  .marketing-designer { padding-inline: 1rem; }.marketing-builder-window { min-width: 760px; transform: scale(.72); transform-origin: left top; margin-bottom: -155px; }
  .marketing-connected > div { min-height: 520px; }.marketing-footer { grid-template-columns: 1fr 1fr; gap: 3rem 1.5rem; }.marketing-footer > div { grid-column: 1 / -1; }
  .theme-card-preview { min-height: 260px; }.installed-theme-info { align-items: flex-start; flex-direction: column; }.theme-card-actions { justify-content: flex-start; }.preset-theme-art { min-height: 420px; }.preset-theme-info { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .marketing-button-small { min-height: 38px; font-size: .76rem; }.marketing-proof { display: grid; gap: .65rem; }.marketing-window-bar span { display: none; }.marketing-admin-heading button { display: none; }.marketing-order-card { display: none; }
  .marketing-audience div { gap: .7rem 1.4rem; }.marketing-journey-track { grid-template-columns: 1fr; }.marketing-journey-track li { min-height: 180px; }.marketing-capability-card { min-height: 470px; padding: 1.5rem; }
  .marketing-builder-window { transform: scale(.56); margin-bottom: -240px; }.marketing-connected > div { padding: 2rem 1.5rem; }.marketing-footer { grid-template-columns: 1fr; }.marketing-footer nav, .marketing-footer > div { grid-column: 1; }
}
