/* TAIIH MARKET — deliberately dependency-free starter styling */
:root {
    color-scheme: light;
    --ink: #071D3E;
    --ink-soft: #4a617f;
    --muted: #71839a;
    --paper: #fbfdff;
    --surface: #ffffff;
    --surface-alt: #eef4fb;
    --line: #d9e4f1;
    --line-dark: rgba(7,29,62,.16);
    --forest: #0D3D78;
    --forest-deep: #071D3E;
    --forest-soft: #e5eef9;
    --clay: #0D6EFD;
    --clay-soft: #e7f0ff;
    --gold: #F4B400;
    --gold-soft: #fff4cf;
    --sage: #2f6eaa;
    --sage-soft: #e6f0fb;
    --blue: #0D6EFD;
    --blue-soft: #e4efff;
    --plum: #586eb1;
    --plum-soft: #e9edfa;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(7, 29, 62, .11);
    --shadow-small: 0 8px 24px rgba(7, 29, 62, .09);
    --container: 1240px;
}
html[data-theme="dark"] {
    color-scheme: dark;
    --ink: #edf4ff;
    --ink-soft: #bacbe1;
    --muted: #8fa8c5;
    --paper: #061326;
    --surface: #0b1d36;
    --surface-alt: #102746;
    --line: #294568;
    --line-dark: rgba(255,255,255,.17);
    --forest: #70a9f3;
    --forest-deep: #071D3E;
    --forest-soft: #143863;
    --clay: #55a0ff;
    --clay-soft: #123761;
    --gold: #F4B400;
    --gold-soft: #3a3012;
    --sage: #74a9df;
    --sage-soft: #163b63;
    --blue: #55a0ff;
    --blue-soft: #143863;
    --plum: #aabaff;
    --plum-soft: #2a315c;
    --shadow: 0 20px 60px rgba(0,0,0,.3);
    --shadow-small: 0 8px 24px rgba(0,0,0,.24);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Official logo loader */
.market-loader { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; overflow: hidden; background: #020303; opacity: 1; visibility: visible; transition: opacity .72s ease, visibility .72s ease; }
body.loader-ready .market-loader { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { position: relative; z-index: 2; width: min(335px, 62vw); height: auto; filter: drop-shadow(0 0 18px rgba(234, 178, 38, .2)) drop-shadow(0 0 42px rgba(0, 70, 162, .2)); animation: loader-breathe 2.7s ease-in-out infinite; }
.loader-particles { position: absolute; z-index: 1; width: min(500px, 94vw); aspect-ratio: 1; border: 1px solid rgba(229, 178, 45, .08); border-radius: 50%; animation: loader-orbit 16s linear infinite; }
.loader-particles::before, .loader-particles::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(0, 95, 190, .14); border-radius: 50%; transform: rotate(38deg) scaleX(.65); }
.loader-particles::after { inset: 24%; transform: rotate(-42deg) scaleY(.72); border-color: rgba(229, 178, 45, .18); }
.loader-particles i { position: absolute; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 9px 2px rgba(242, 188, 48, .65); animation: loader-spark 2.1s ease-in-out infinite; }
.loader-particles i:nth-child(1) { top: 7%; left: 50%; animation-delay: -.2s; }.loader-particles i:nth-child(2) { top: 17%; right: 22%; animation-delay: -.8s; }.loader-particles i:nth-child(3) { top: 38%; right: 4%; animation-delay: -1.4s; }.loader-particles i:nth-child(4) { right: 13%; bottom: 19%; animation-delay: -.5s; }.loader-particles i:nth-child(5) { bottom: 4%; left: 49%; animation-delay: -1.7s; }.loader-particles i:nth-child(6) { bottom: 17%; left: 16%; animation-delay: -1s; }.loader-particles i:nth-child(7) { top: 39%; left: 4%; animation-delay: -.35s; }.loader-particles i:nth-child(8) { top: 19%; left: 20%; animation-delay: -1.3s; }.loader-particles i:nth-child(9) { top: 29%; left: 37%; width: 3px; height: 3px; animation-delay: -1.8s; }.loader-particles i:nth-child(10) { top: 51%; right: 17%; width: 3px; height: 3px; animation-delay: -.7s; }.loader-particles i:nth-child(11) { bottom: 29%; right: 36%; width: 3px; height: 3px; animation-delay: -1.1s; }.loader-particles i:nth-child(12) { bottom: 34%; left: 28%; width: 3px; height: 3px; animation-delay: -1.9s; }
.loader-progress { position: absolute; z-index: 2; bottom: 9%; width: 90px; height: 2px; overflow: hidden; background: rgba(255,255,255,.18); }.loader-progress span { display: block; width: 35%; height: 100%; background: var(--gold); animation: loader-progress 1.2s ease-in-out infinite; }
@keyframes loader-breathe { 0%, 100% { transform: scale(.98); opacity: .93; } 50% { transform: scale(1.02); opacity: 1; } }
@keyframes loader-orbit { to { transform: rotate(360deg); } }
@keyframes loader-spark { 0%, 100% { opacity: .28; transform: scale(.65); } 50% { opacity: 1; transform: scale(1.45); } }
@keyframes loader-progress { from { transform: translateX(-130%); } to { transform: translateX(380%); } }
@media (prefers-reduced-motion: reduce) { .loader-logo, .loader-particles, .loader-particles i, .loader-progress span { animation: none; } .market-loader { transition-duration: .2s; } }
html[data-theme="dark"] .market-loader { background: #010202; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.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; }
.skip-link { position: fixed; z-index: 20; left: 16px; top: -60px; padding: 10px 15px; background: var(--ink); color: var(--paper); border-radius: 5px; }
.skip-link:focus { top: 16px; }
.muted-light { color: rgba(255,255,255,.58); }

/* top navigation */
.topline { color: #e4eee9; background: var(--forest-deep); font-size: 11px; letter-spacing: .04em; }
.top-line-inner { display: flex; align-items: center; justify-content: space-between; min-height: 35px; gap: 16px; }
.topline a { color: #fff; opacity: .86; }
.topline a:hover { opacity: 1; }
.pulse-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(213,165,79,.16); vertical-align: 1px; }
.topline-links { display: flex; align-items: center; gap: 12px; }
.topline-separator { opacity: .36; }
.site-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(16px); }
.header-main { position: relative; display: flex; align-items: center; gap: 30px; min-height: 82px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { position: relative; display: grid; place-items: center; width: 41px; height: 41px; overflow: hidden; border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); font-family: Georgia, serif; font-size: 23px; font-weight: 700; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 1px solid var(--gold); border-radius: 50%; opacity: .74; }
.brand-mark::before { width: 57px; height: 23px; transform: rotate(42deg); }
.brand-mark::after { width: 23px; height: 57px; transform: rotate(42deg); }
.brand-mark span { z-index: 1; }
.brand-image-mark { overflow: hidden; border: 0; border-radius: 50%; background: var(--surface); }
.brand-image-mark::before, .brand-image-mark::after { display: none; }
.brand-image-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-words { display: flex; flex-direction: column; line-height: .88; letter-spacing: .13em; }
.brand-words strong { font-size: 17px; font-weight: 800; }
.brand-words em { margin-top: 5px; color: var(--forest); font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .25em; }
.primary-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.primary-nav a { position: relative; padding: 30px 0 29px; color: var(--ink-soft); font-size: 12px; font-weight: 650; white-space: nowrap; }
.primary-nav a:hover, .primary-nav a.active { color: var(--forest); }
.primary-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 2px; background: var(--clay); }
.primary-nav .seller-nav-link { margin-left: 1px; padding: 8px 12px; border: 1px solid var(--forest); border-radius: 2px; color: var(--forest); font-size: 11px; }
.primary-nav .seller-nav-link.active::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: 4px; }
.icon-button, .account-button { position: relative; display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 9px; border: 0; border-radius: 9px; background: transparent; color: var(--ink); }
.icon-button:hover, .account-button:hover { background: var(--surface-alt); color: var(--forest); }
.account-button { display: flex; gap: 7px; border: 1px solid var(--line); font-size: 12px; }
.icon { display: inline-block; position: relative; width: 18px; height: 18px; }
.icon-search { border: 1.7px solid currentColor; border-radius: 50%; transform: scale(.7); }
.icon-search::after { content: ""; position: absolute; width: 9px; height: 1.7px; right: -7px; bottom: -4px; background: currentColor; transform: rotate(48deg); border-radius: 2px; }
.icon-heart::before { content: "♡"; position: absolute; left: 0; top: -6px; font-size: 25px; line-height: 1; }
.icon-bag { border: 1.6px solid currentColor; border-radius: 2px 2px 5px 5px; transform: scale(.7); }
.icon-bag::before { content: ""; position: absolute; top: -8px; left: 3px; width: 10px; height: 9px; border: 1.6px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; }
.icon-user::before { content: ""; position: absolute; top: 1px; left: 6px; width: 6px; height: 6px; border: 1.5px solid currentColor; border-radius: 50%; }
.icon-user::after { content: ""; position: absolute; left: 3px; bottom: 0; width: 12px; height: 7px; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 9px 9px 0 0; }
.count-badge { position: absolute; top: 0; right: -2px; display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; color: #fff; background: var(--clay); font-size: 9px; font-weight: 800; }
.mobile-menu-toggle { display: none; border: 0; padding: 7px; background: transparent; }
.mobile-menu-toggle span { display: block; width: 22px; height: 1px; margin: 4px; background: var(--ink); }
.search-panel { display: none; border-top: 1px solid var(--line); background: var(--surface); }
.search-panel.is-open { display: block; }
.search-panel-inner { display: flex; align-items: center; gap: 14px; padding: 16px 0; }
.global-search-form, .hero-search-form { display: flex; align-items: center; gap: 14px; width: 100%; border: 1px solid var(--line); background: var(--paper); }
.global-search-form { padding: 4px 6px 4px 17px; }
.global-search-form input, .hero-search-form input { flex: 1; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; }
.global-search-form input { padding: 10px 0; }
.global-search-form input::placeholder, .hero-search-form input::placeholder { color: var(--muted); }
.search-close { border: 0; color: var(--ink-soft); background: transparent; font-size: 12px; }

/* shared typography & buttons */
.section { padding: 98px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 31px; }
.section-heading h2, .architecture-note-box h2, .split-feature h2, .brand-about h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; letter-spacing: -.04em; line-height: 1.06; }
.section-heading h2 em, .architecture-note-box h2 em, .split-feature h2 em, .brand-about h2 em { color: var(--clay); font-style: italic; }
.section-eyebrow { margin: 0 0 12px; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.text-link { display: inline-flex; gap: 7px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--forest); color: var(--forest); font-size: 12px; font-weight: 750; }
.text-link span { font-size: 16px; line-height: 0; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-2px); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 47px; padding: 0 20px; border: 1px solid transparent; border-radius: 2px; font-size: 12px; font-weight: 800; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); box-shadow: 0 8px 18px rgba(32,90,75,.15); }
.button-primary:hover { color: #fff; background: var(--forest-deep); }
.button-primary span, .button-light span { font-size: 18px; line-height: .6; }
.button-quiet { color: var(--ink); background: transparent; }
.button-quiet:hover { background: var(--surface-alt); }
.button-outline { border-color: var(--forest); color: var(--forest); background: transparent; }
.button-outline:hover { color: #fff; background: var(--forest); }
.button-dark { min-height: 38px; padding: 0 16px; color: #fff; border-radius: 2px; background: var(--ink); font-size: 12px; }
.button-light { color: var(--forest-deep); background: #f5f3ed; }
.full-button { width: 100%; }

/* home hero */
.hero-section { position: relative; overflow: hidden; padding: 106px 0 92px; background: var(--paper); }
.hero-section::before { content: ""; position: absolute; top: -310px; right: -180px; width: 680px; height: 680px; border: 1px solid var(--line); border-radius: 50%; opacity: .65; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--forest); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow-line { display: inline-block; width: 31px; height: 1px; background: var(--clay); }
.hero-copy h1 { max-width: 630px; margin: 0 0 25px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(49px, 5.6vw, 82px); font-weight: 400; letter-spacing: -.065em; line-height: .98; }
.hero-copy h1 em, .page-hero h1 em, .not-found h1 em { color: var(--clay); font-style: italic; }
.hero-lede { max-width: 555px; margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.hero-trust { display: flex; align-items: center; gap: 9px; margin-top: 36px; color: var(--muted); font-size: 11px; }
.hero-trust i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.trust-mark { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); font-size: 11px; }
.hero-art { position: relative; min-height: 515px; padding: 22px 26px; overflow: hidden; color: #eaf0e9; background: var(--forest-deep); background-image: linear-gradient(180deg, rgba(7,29,62,.74), rgba(7,29,62,.82)), url('/assets/images/marketplace-hero.jpg'); background-position: center; background-size: cover; }
.hero-art::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(223, 211, 183, .24); }
.hero-art-topline, .hero-art-bottomline { position: relative; z-index: 1; display: flex; justify-content: space-between; color: #b8c9c0; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.hero-art-bottomline { position: absolute; right: 26px; bottom: 26px; left: 26px; align-items: center; }
.hero-art-bottomline strong { color: var(--gold); font-size: 9px; letter-spacing: .15em; }
.hero-art-center { position: absolute; top: 50%; left: 50%; width: 405px; height: 405px; transform: translate(-50%, -50%); }
.hero-ring { position: absolute; border: 1px solid rgba(207, 224, 211, .26); border-radius: 50%; transform: rotate(-25deg); }
.ring-one { inset: 8px; border-color: rgba(213,165,79,.45); }
.ring-two { inset: 43px; transform: rotate(28deg) scaleX(.72); }
.ring-three { inset: 72px; border-style: dashed; border-color: rgba(207,224,211,.36); transform: rotate(-15deg) scaleY(.7); }
.hero-sun { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 136px; height: 136px; transform: translate(-50%,-50%); border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); background: rgba(32,90,75,.78); box-shadow: 0 0 0 13px rgba(213,165,79,.06), 0 0 0 26px rgba(213,165,79,.04); }
.hero-sun span { margin-top: 9px; font-size: 25px; font-weight: 800; letter-spacing: .12em; }
.hero-sun small { margin-top: -8px; color: #dae2d9; font-size: 9px; font-weight: 800; letter-spacing: .3em; }
.art-label { position: absolute; color: #d7e2d9; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.label-shop { top: 100px; left: 30px; color: var(--gold); }.label-learn { top: 120px; right: 17px; }.label-connect { right: 14px; bottom: 111px; color: var(--gold); }.label-experience { bottom: 80px; left: 16px; }
.star { position: absolute; color: var(--gold); font-size: 15px; }.star-one { top: 47px; right: 83px; }.star-two { bottom: 44px; right: 78px; font-size: 9px; }.star-three { bottom: 135px; left: 43px; font-size: 8px; }
.hero-scroll { position: absolute; bottom: 17px; left: max(24px, calc((100vw - var(--container)) / 2)); display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.scroll-line { width: 27px; height: 1px; background: var(--gold); }
.search-band { padding: 39px 0; color: #eaf0e9; background: var(--forest); }
.search-band-inner { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.search-band h2 { margin: 0; font-family: Georgia, serif; font-size: 33px; font-weight: 400; letter-spacing: -.04em; }.search-band .section-eyebrow { color: var(--gold); margin-bottom: 7px; }
.hero-search-form { max-width: 595px; padding-left: 18px; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.08); }.hero-search-form input { padding: 14px 0; color: #fff; }.hero-search-form input::placeholder { color: rgba(255,255,255,.58); }.hero-search-form button { align-self: stretch; min-width: 112px; padding: 0 15px; border: 0; color: var(--forest-deep); background: var(--gold); font-size: 12px; font-weight: 800; }.hero-search-form button span { margin-left: 8px; font-size: 16px; }

/* notices, cards, category */
.notice-banner { display: flex; align-items: center; gap: 14px; margin-bottom: 27px; padding: 13px 16px; border: 1px solid var(--line); background: var(--surface-alt); color: var(--ink-soft); font-size: 11px; }.notice-banner p { flex: 1; margin: 0; }.notice-banner a { color: var(--forest); font-weight: 800; white-space: nowrap; }.notice-icon { display: grid; flex: 0 0 auto; place-items: center; width: 20px; height: 20px; border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); font-family: Georgia, serif; font-size: 12px; font-weight: 800; }
.listing-grid { display: grid; gap: 21px; }.listing-grid-four { grid-template-columns: repeat(4, 1fr); }.listing-grid-three { grid-template-columns: repeat(3, 1fr); }
.listing-card { min-width: 0; border: 1px solid var(--line); background: var(--surface); transition: box-shadow .25s ease, transform .25s ease; }.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
.listing-media { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1.07 / 1; overflow: hidden; background-size: cover; background-position: center; }.listing-media.has-media .media-symbol { display: none; }.listing-media.has-media .media-orbit { opacity: .12; }.media-link { position: absolute; inset: 0; z-index: 1; }.media-forest { color: #e7f0ff; background: #0D3D78; }.media-clay { color: #eef6ff; background: #0D6EFD; }.media-gold { color: #fff7da; background: #a87900; }.media-sage { color: #e9f4ff; background: #2f6eaa; }.media-blue { color: #e6f0ff; background: #0D6EFD; }.media-plum { color: #f0f3ff; background: #586eb1; }.media-terracotta { color: #e8f1ff; background: #0A2E5C; }
.media-orbit { position: absolute; border: 1px solid currentColor; border-radius: 50%; opacity: .35; }.orbit-a { width: 150%; height: 64%; transform: rotate(35deg); }.orbit-b { width: 74%; height: 128%; transform: rotate(35deg); }.media-symbol { position: relative; z-index: 0; font-family: Georgia, serif; font-size: 67px; font-style: italic; opacity: .95; }.preview-badge { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 5px 8px; color: var(--forest-deep); background: var(--gold); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }.wishlist-form { position: absolute; z-index: 2; top: 10px; right: 10px; }.round-action { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; color: #fff; background: rgba(13,44,37,.18); }.round-action:hover, .round-action.is-saved { color: var(--clay); background: #fff; }.round-action .icon-heart { transform: scale(.77); }
.listing-body { padding: 18px 17px 16px; }.listing-kicker { display: flex; align-items: center; gap: 7px; color: var(--forest); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }.verified-dot { display: inline-grid; place-items: center; width: 13px; height: 13px; border: 1px solid var(--forest); border-radius: 50%; font-size: 8px; }.listing-body h3 { margin: 7px 0 3px; font-family: Georgia, serif; font-size: 20px; font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }.listing-body h3 a:hover { color: var(--clay); }.listing-seller { margin: 0; color: var(--muted); font-size: 11px; }.listing-meta { display: flex; align-items: baseline; gap: 5px; margin-top: 17px; color: var(--ink); font-size: 14px; font-weight: 800; }.listing-meta small { color: var(--muted); font-size: 9px; letter-spacing: .1em; }.listing-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }.listing-note { color: var(--muted); font-size: 9px; }.add-button { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid var(--forest); border-radius: 50%; color: var(--forest); background: transparent; font-size: 18px; line-height: 0; }.add-button:hover { color: #fff; background: var(--forest); }
.ecosystem-section { padding-top: 34px; background: var(--surface-alt); }.category-ribbon { display: grid; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.category-tile { position: relative; display: flex; flex-direction: column; min-height: 155px; padding: 17px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s, background .2s; }.category-tile:hover { z-index: 1; transform: translateY(-4px); box-shadow: var(--shadow-small); }.category-icon { color: var(--forest); font-family: Georgia, serif; font-size: 28px; }.category-title { margin-top: auto; max-width: 100px; font-family: Georgia, serif; font-size: 18px; line-height: 1.05; }.category-arrow { position: absolute; right: 16px; bottom: 16px; color: var(--forest); font-size: 17px; }.category-tile.accent-clay { background: var(--clay-soft); }.category-tile.accent-sage { background: var(--sage-soft); }.category-tile.accent-gold { background: var(--gold-soft); }.category-tile.accent-plum { background: var(--plum-soft); }.category-tile.accent-blue { background: var(--blue-soft); }.category-tile.accent-terracotta { background: #f5e6de; }.category-tile.accent-forest { background: var(--forest-soft); }

/* home features */
.healing-feature { background: var(--surface-alt); }.healing-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }.healing-art { position: relative; min-height: 470px; overflow: hidden; background: #0A2E5C; background-image: linear-gradient(180deg, rgba(7,29,62,.18), rgba(7,29,62,.42)), url('/assets/images/healing-village.jpg'); background-position: center; background-size: cover; }.healing-art::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.5); }.healing-art::after { content: ""; position: absolute; left: 50%; bottom: -180px; width: 370px; height: 370px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transform: translateX(-50%); }.healing-seal { position: absolute; z-index: 1; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 196px; height: 196px; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: #f6f3df; transform: translate(-50%,-50%); }.healing-seal span { font-family: Georgia, serif; font-size: 55px; line-height: .9; }.healing-seal small { margin-top: 11px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.55); font-size: 8px; font-weight: 800; letter-spacing: .2em; line-height: 1.35; text-align: center; }.healing-leaf { position: absolute; color: rgba(255,255,255,.5); font-size: 100px; transform: rotate(45deg); }.leaf-one { top: 34px; right: 43px; }.leaf-two { bottom: 17px; left: 56px; font-size: 75px; transform: rotate(-35deg); }.leaf-three { top: 78px; left: 42px; font-size: 50px; transform: rotate(22deg); }.healing-caption { position: absolute; right: 27px; bottom: 23px; left: 27px; z-index: 1; display: flex; justify-content: space-between; color: rgba(255,255,255,.82); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.healing-copy .section-eyebrow, .official-copy .section-eyebrow { color: var(--forest); }.healing-copy h2, .official-copy h2 { margin: 0 0 25px; font-family: Georgia, serif; font-size: clamp(40px, 4.2vw, 62px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }.healing-copy h2 em, .official-copy h2 em { color: var(--clay); font-style: italic; }.healing-copy > p, .official-copy > p { max-width: 455px; margin: 0; color: var(--ink-soft); line-height: 1.75; }.feature-list { display: grid; gap: 11px; margin: 29px 0 31px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.feature-list span { font-size: 11px; font-weight: 700; }.feature-list b { display: inline-block; width: 35px; color: var(--clay); font-size: 9px; letter-spacing: .1em; }.official-section { padding: 76px 0; }.official-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 120px; }.official-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; color: #eaf0e9; background: var(--forest); }.official-card::before, .official-card::after { content: ""; position: absolute; border: 1px solid rgba(220,237,223,.23); border-radius: 50%; }.official-card::before { width: 390px; height: 200px; right: -100px; top: -80px; transform: rotate(-24deg); }.official-card::after { width: 170px; height: 330px; left: 12%; bottom: -140px; transform: rotate(-25deg); }.official-card-header, .official-card-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }.mini-mark { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 18px; }.verified-label { display: inline-flex; align-items: center; gap: 6px; color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.official-card .verified-label { color: #f1d48e; }.official-lines { position: relative; z-index: 1; display: grid; gap: 11px; margin-top: 92px; }.official-lines span { display: block; width: 78%; height: 10px; background: rgba(255,255,255,.72); }.official-lines span:nth-child(2) { width: 55%; height: 6px; background: rgba(255,255,255,.34); }.official-lines .short { width: 30%; height: 6px; background: rgba(213,165,79,.75); }.official-card-footer { position: absolute; right: 30px; bottom: 23px; left: 30px; color: rgba(255,255,255,.56); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.official-copy h2 { margin-bottom: 21px; }.cta-section { padding-top: 25px; }.cta-box { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding: 62px 73px; color: #eef4ed; background: var(--forest-deep); }.cta-box .section-eyebrow { color: var(--gold); }.cta-box h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 53px); font-weight: 400; letter-spacing: -.05em; line-height: 1.03; }.cta-box h2 em { color: var(--gold); font-style: italic; }.cta-box p:not(.section-eyebrow) { max-width: 440px; margin: 0 0 23px; color: #bdcbc2; font-size: 13px; line-height: 1.7; }

/* inner page hero */
.page-hero { position: relative; overflow: hidden; padding: 74px 0 77px; color: #ecf2ec; background: var(--forest-deep); }.page-hero::after { content: ""; position: absolute; top: -180px; right: 13%; width: 460px; height: 460px; border: 1px solid rgba(213,165,79,.35); border-radius: 50%; }.page-hero::before { content: ""; position: absolute; right: 2%; bottom: -220px; width: 510px; height: 510px; border: 1px solid rgba(207,224,211,.2); border-radius: 50%; }.page-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }.page-hero .section-eyebrow { color: var(--gold); }.page-hero h1 { margin: 0 0 17px; font-family: Georgia, serif; font-size: clamp(48px, 6vw, 77px); font-weight: 400; letter-spacing: -.065em; line-height: .96; }.page-hero h1 em { color: var(--gold); }.page-hero p:not(.section-eyebrow) { max-width: 610px; margin: 0; color: #bdcbc2; font-size: 15px; line-height: 1.7; }.hero-index { display: flex; flex-direction: column; min-width: 210px; padding: 16px 0 16px 28px; border-left: 1px solid rgba(213,165,79,.75); color: #e0eae0; }.hero-index span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .18em; }.hero-index strong { margin-top: 6px; font-family: Georgia, serif; font-size: 30px; font-weight: 400; letter-spacing: -.04em; }.hero-index small { margin-top: 8px; color: #9eb1a5; font-size: 8px; font-weight: 800; letter-spacing: .14em; }.shop-section { padding-top: 68px; }.shop-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 31px; }.results-label { margin: 0 0 6px; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.shop-toolbar h2 { margin: 0; font-family: Georgia, serif; font-size: 35px; font-weight: 400; letter-spacing: -.04em; }.sort-wrap { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }.sort-wrap select { min-width: 150px; padding: 9px 29px 9px 12px; border: 1px solid var(--line); color: var(--ink); background: var(--surface); font-size: 11px; }
.shop-layout { display: grid; grid-template-columns: 214px 1fr; gap: 35px; }.filter-panel { padding-right: 21px; border-right: 1px solid var(--line); }.filter-header { display: flex; justify-content: space-between; margin-bottom: 27px; font-size: 12px; }.filter-header a { color: var(--clay); font-size: 10px; }.filter-block { margin-bottom: 30px; }.filter-label { display: block; margin-bottom: 11px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }.filter-option { display: flex; justify-content: space-between; gap: 6px; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }.filter-option:hover, .filter-option.selected { color: var(--forest); }.filter-option.selected { font-weight: 800; }.filter-note { display: flex; gap: 8px; padding: 12px; background: var(--surface-alt); color: var(--muted); font-size: 10px; line-height: 1.5; }.filter-note span { display: grid; flex: 0 0 auto; place-items: center; width: 15px; height: 15px; border: 1px solid var(--muted); border-radius: 50%; font-family: Georgia, serif; }.filter-note p { margin: 0; }

/* categories and brands */
.categories-section { padding-top: 70px; }.category-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.category-card { display: flex; flex-direction: column; min-height: 385px; padding: 25px; border: 1px solid var(--line); color: var(--ink); transition: transform .2s, box-shadow .2s; }.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); }.category-card.accent-clay { background: var(--clay-soft); }.category-card.accent-sage { background: var(--sage-soft); }.category-card.accent-gold { background: var(--gold-soft); }.category-card.accent-plum { background: var(--plum-soft); }.category-card.accent-blue { background: var(--blue-soft); }.category-card.accent-terracotta { background: #f5e6de; }.category-card.accent-forest { background: var(--forest-soft); }.category-card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 47px; }.category-index { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .12em; }.category-icon.large { font-size: 42px; }.category-card .section-eyebrow { margin-bottom: 6px; }.category-card h2 { margin: 0 0 11px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; letter-spacing: -.04em; }.category-card > p:not(.section-eyebrow) { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }.children-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }.children-list span, .seller-types span { padding: 5px 7px; border: 1px solid color-mix(in srgb, var(--ink) 15%, transparent); color: var(--ink-soft); font-size: 9px; }.card-arrow { margin-top: auto; padding-top: 23px; color: var(--forest); font-size: 11px; font-weight: 800; }.architecture-note { padding-top: 0; }.architecture-note-box { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 53px 60px; background: var(--surface-alt); }.architecture-note-box p:last-child { max-width: 430px; margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.8; }
.brands-section { padding-top: 70px; }.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }.brand-card { border: 1px solid var(--line); background: var(--surface); transition: transform .2s, box-shadow .2s; }.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); }.brand-banner { position: relative; display: flex; align-items: center; justify-content: center; height: 155px; overflow: hidden; color: #edf3ed; background: var(--forest); }.brand-card.accent-sage .brand-banner { background: #2f6eaa; }.brand-card.accent-clay .brand-banner { background: var(--clay); }.brand-banner::before { content: ""; position: absolute; width: 255px; height: 135px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; transform: rotate(-24deg); }.brand-banner::after { content: ""; position: absolute; width: 130px; height: 240px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: rotate(28deg); }.brand-banner-symbol { position: relative; z-index: 1; font-family: Georgia, serif; font-size: 63px; }.brand-banner-code { position: absolute; z-index: 1; right: 13px; bottom: 11px; color: rgba(255,255,255,.72); font-size: 8px; font-weight: 800; letter-spacing: .15em; }.brand-card-body { position: relative; padding: 25px 21px 21px; }.brand-avatar { position: absolute; top: -24px; left: 21px; display: grid; place-items: center; width: 46px; height: 46px; border: 4px solid var(--surface); border-radius: 50%; color: #fff; background: var(--clay); font-family: Georgia, serif; font-size: 20px; }.brand-title-row { display: flex; align-items: start; justify-content: space-between; gap: 12px; padding-top: 17px; }.brand-title-row h2 { margin: 0; font-family: Georgia, serif; font-size: 23px; font-weight: 400; letter-spacing: -.03em; line-height: 1.1; }.brand-title-row p { margin: 6px 0 0; color: var(--muted); font-size: 10px; }.brand-description { min-height: 64px; margin: 18px 0; color: var(--ink-soft); font-size: 12px; line-height: 1.65; }.brand-status { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--line); color: var(--forest); font-size: 10px; font-weight: 750; }.brand-status span { font-size: 16px; }

/* healing, listing details */
.section-directory { padding-top: 70px; }.section-hero-healing-wellness { background: #0A2E5C; }.split-feature { padding-top: 15px; }.split-feature-grid { display: grid; grid-template-columns: 1fr 2fr; align-items: start; gap: 50px; padding: 54px 62px; background: var(--surface-alt); }.split-feature-number { color: var(--clay); font-family: Georgia, serif; font-size: 95px; letter-spacing: -.08em; line-height: .85; }.split-feature-number span { margin-left: 8px; color: var(--muted); font-size: 25px; }.split-feature-grid h2 { margin-bottom: 20px; }.split-feature-grid p:not(.section-eyebrow) { max-width: 505px; margin: 0 0 24px; color: var(--ink-soft); line-height: 1.7; }
.listing-detail-section { padding: 44px 0 90px; }.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 39px; color: var(--muted); font-size: 10px; }.breadcrumbs a:hover { color: var(--forest); }.breadcrumbs strong { color: var(--ink); font-weight: 750; }.listing-detail-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); align-items: center; gap: 88px; }.detail-media { position: relative; display: grid; place-items: center; min-height: 560px; overflow: hidden; background-size: cover; background-position: center; }.detail-media.has-media .media-symbol { display: none; }.detail-media.has-media .media-orbit { opacity: .12; }.detail-media .media-symbol { font-size: 150px; }.large-symbol { position: relative; z-index: 1; }.detail-media .orbit-a { width: 150%; height: 65%; }.detail-media .orbit-b { width: 73%; height: 125%; }.detail-copy h1 { max-width: 600px; margin: 13px 0 10px; font-family: Georgia, serif; font-size: clamp(44px, 5vw, 68px); font-weight: 400; letter-spacing: -.055em; line-height: .99; }.detail-byline { margin: 0; color: var(--muted); font-size: 11px; }.detail-description { max-width: 530px; margin: 28px 0 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }.detail-price { display: flex; align-items: baseline; gap: 7px; margin: 30px 0 22px; font-size: 24px; font-weight: 800; }.detail-price small { color: var(--muted); font-size: 10px; letter-spacing: .11em; }.detail-divider { height: 1px; background: var(--line); }.detail-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 22px 0; }.detail-points > div { display: flex; gap: 9px; }.detail-point-icon { color: var(--clay); font-family: Georgia, serif; font-size: 20px; }.detail-points strong, .detail-points small { display: block; }.detail-points strong { font-size: 10px; }.detail-points small { margin-top: 4px; color: var(--muted); font-size: 9px; line-height: 1.4; }.detail-actions { display: flex; align-items: center; gap: 9px; }.detail-actions form:first-child { flex: 1; }.detail-actions form:first-child .button { width: 100%; }.save-detail { min-width: 98px; border: 1px solid var(--line); }.save-detail .icon { transform: scale(.7); }.demo-disclaimer { display: flex; align-items: start; gap: 8px; margin: 18px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }.demo-disclaimer span { display: grid; flex: 0 0 auto; place-items: center; width: 16px; height: 16px; border: 1px solid var(--muted); border-radius: 50%; font-family: Georgia, serif; }.listing-architecture { padding-top: 0; }.architecture-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.architecture-grid > div { min-height: 168px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.architecture-grid span { color: var(--clay); font-size: 10px; font-weight: 800; }.architecture-grid h3 { margin: 23px 0 5px; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }.architecture-grid p { margin: 0; color: var(--muted); font-size: 11px; }

/* brand detail */
.brand-detail-hero { padding: 38px 0 61px; color: #eff4ef; background: var(--forest); }.brand-detail-hero.accent-sage { background: #2f6eaa; }.brand-detail-hero.accent-clay { background: var(--clay); }.brand-detail-hero .breadcrumbs { color: rgba(255,255,255,.67); }.brand-detail-hero .breadcrumbs strong { color: #fff; }.brand-detail-head { display: flex; align-items: center; gap: 20px; }.brand-detail-avatar { display: grid; place-items: center; width: 104px; height: 104px; border: 1px solid rgba(255,255,255,.67); border-radius: 50%; font-family: Georgia, serif; font-size: 48px; }.brand-detail-head > div:nth-child(2) { flex: 1; }.brand-detail-head .brand-title-row { align-items: center; padding-top: 0; }.brand-detail-head h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(39px, 5vw, 61px); font-weight: 400; letter-spacing: -.055em; line-height: 1; }.brand-detail-head .verified-label { color: #f7d88e; }.brand-detail-head p { margin: 10px 0 7px; color: rgba(255,255,255,.7); font-size: 12px; }.brand-detail-head .brand-status { display: inline-flex; padding-top: 0; border: 0; color: #fff; font-weight: 600; }.brand-detail-head .button-outline { border-color: rgba(255,255,255,.72); color: #fff; }.brand-detail-head .button-outline:hover { color: var(--forest-deep); background: #fff; }.brand-detail-section { padding-top: 71px; }.brand-about { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 70px; margin-bottom: 84px; }.brand-about > p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }.compact-heading { margin-bottom: 23px; }.brand-empty-note { display: flex; align-items: center; gap: 13px; margin-top: 26px; padding: 14px 17px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; }.brand-empty-note p { margin: 0; }

/* seller forms */
.seller-hero { background: var(--clay); }.seller-hero .section-eyebrow { color: #f8dfb4; }.seller-hero h1 em { color: #f6ddb1; }.seller-section { padding-top: 78px; }.seller-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 78px; }.seller-aside h2 { max-width: 380px; margin: 0; font-family: Georgia, serif; font-size: 49px; font-weight: 400; letter-spacing: -.055em; line-height: 1; }.seller-aside h2 em { color: var(--clay); font-style: italic; }.process-steps { display: grid; gap: 0; margin: 45px 0 35px; }.process-step { display: flex; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }.process-step:last-child { border-bottom: 1px solid var(--line); }.process-step > span { color: var(--clay); font-size: 10px; font-weight: 850; }.process-step strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }.process-step p { margin: 2px 0 0; color: var(--muted); font-size: 11px; }.seller-types { display: flex; flex-wrap: wrap; gap: 6px; }.seller-form-card { padding: 35px 38px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-small); }.form-card-head { padding-bottom: 25px; border-bottom: 1px solid var(--line); }.form-card-head h2 { margin: 0 0 9px; font-family: Georgia, serif; font-size: 34px; font-weight: 400; letter-spacing: -.04em; }.form-card-head p:last-child { max-width: 550px; margin: 0; color: var(--muted); font-size: 11px; }.seller-form { padding-top: 25px; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 15px; margin-bottom: 24px; }.form-grid label { display: flex; flex-direction: column; gap: 7px; }.form-grid label.full { grid-column: 1 / -1; }.form-grid label > span { color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .05em; }.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); outline: 0; border-radius: 0; color: var(--ink); background: var(--paper); font-size: 12px; }.form-grid textarea { resize: vertical; }.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px color-mix(in srgb, var(--forest) 13%, transparent); }.checkbox-label { flex-direction: row !important; align-items: start; gap: 9px !important; }.checkbox-label input { width: 16px; margin: 2px 0 0; accent-color: var(--forest); }.checkbox-label span { font-weight: 500 !important; line-height: 1.5; }

/* cart, account, policies */
.empty-state { display: flex; flex-direction: column; align-items: center; grid-column: 1 / -1; min-height: 285px; padding: 58px 22px; border: 1px dashed var(--line); text-align: center; }.empty-state .empty-symbol { color: var(--clay); font-family: Georgia, serif; font-size: 40px; }.empty-state h2, .empty-state h3 { margin: 11px 0 6px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }.empty-state p { max-width: 390px; margin: 0 0 22px; color: var(--muted); font-size: 12px; }.large-empty { margin: 0 auto; max-width: 720px; min-height: 330px; }.cart-section { padding-top: 64px; }.cart-layout { display: grid; grid-template-columns: 1.4fr .6fr; align-items: start; gap: 45px; }.cart-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }.cart-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 32px; font-weight: 400; }.cart-heading span { color: var(--muted); font-size: 10px; }.cart-item { display: flex; align-items: center; gap: 17px; padding: 17px 0; border-bottom: 1px solid var(--line); }.cart-item-media { display: grid; flex: 0 0 87px; place-items: center; height: 87px; color: #fff; }.cart-item-media span { font-family: Georgia, serif; font-size: 30px; }.cart-item-copy { flex: 1; }.cart-item-copy h3 { margin: 4px 0; font-family: Georgia, serif; font-size: 20px; font-weight: 400; line-height: 1.1; }.cart-item-copy p, .cart-item-copy > span:last-child { margin: 0; color: var(--muted); font-size: 10px; }.cart-item-price { text-align: right; }.cart-item-price strong, .cart-item-price small { display: block; }.cart-item-price strong { font-size: 13px; }.cart-item-price small { color: var(--muted); font-size: 9px; }.cart-item-price button { margin-top: 12px; padding: 0; border: 0; color: var(--clay); background: transparent; font-size: 10px; }.cart-summary { padding: 26px; border: 1px solid var(--line); background: var(--surface-alt); }.cart-summary h2 { margin: 0 0 26px; font-family: Georgia, serif; font-size: 31px; font-weight: 400; }.summary-line, .summary-total { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }.summary-line strong { color: var(--ink); font-weight: 700; text-align: right; }.summary-total { margin: 10px 0 21px; padding-top: 17px; color: var(--ink); font-size: 14px; }.summary-total strong { font-size: 13px; }.summary-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }.account-section { padding-top: 72px; }.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; }.account-card { min-height: 310px; padding: 37px; border: 1px solid var(--line); background: var(--surface); }.account-card-primary { color: #edf4ee; background: var(--forest); }.account-card-primary .section-eyebrow { color: var(--gold); }.account-card-primary h2 { max-width: 410px; }.account-card h2 { margin: 0 0 17px; font-family: Georgia, serif; font-size: 38px; font-weight: 400; letter-spacing: -.045em; line-height: 1.05; }.account-card p:not(.section-eyebrow) { max-width: 480px; margin: 0 0 22px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }.account-card-primary p:not(.section-eyebrow) { color: #b9cdc0; }.account-icon { display: block; margin-bottom: 25px; color: var(--gold); font-family: Georgia, serif; font-size: 40px; }.account-list { display: grid; margin-top: 37px; }.account-list span { padding: 13px 0; border-top: 1px solid var(--line); font-size: 12px; }.account-list b { display: inline-block; width: 38px; color: var(--clay); font-size: 9px; letter-spacing: .1em; }.policy-section { padding-top: 70px; }.policy-layout { display: grid; grid-template-columns: 235px 1fr; gap: 78px; }.policy-layout aside { display: flex; flex-direction: column; }.policy-link { display: flex; justify-content: space-between; gap: 10px; padding: 13px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }.policy-link:hover, .policy-link.active { color: var(--forest); }.policy-link span { font-size: 14px; }.policy-content { max-width: 660px; }.policy-content h2 { margin: 0 0 25px; font-family: Georgia, serif; font-size: 45px; font-weight: 400; letter-spacing: -.05em; }.policy-content > p:not(.section-eyebrow) { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.85; }.policy-placeholder { display: flex; align-items: center; gap: 15px; margin-top: 46px; padding: 20px; border-left: 2px solid var(--clay); background: var(--surface-alt); }.policy-placeholder span { color: var(--clay); font-family: Georgia, serif; font-size: 28px; }.policy-placeholder p { margin: 0; font-size: 12px; font-weight: 800; }.policy-placeholder small { color: var(--muted); font-size: 10px; font-weight: 500; }

/* admin */
.admin-shell { min-height: 700px; background: var(--surface-alt); }.admin-layout { display: grid; grid-template-columns: 226px 1fr; min-height: 780px; }.admin-sidebar { display: flex; flex-direction: column; padding: 28px 17px 22px 0; border-right: 1px solid var(--line); }.admin-brand { display: flex; align-items: center; gap: 10px; margin: 0 15px 39px; }.admin-brand .mini-mark { width: 32px; height: 32px; font-size: 16px; }.admin-brand strong, .admin-brand small { display: block; }.admin-brand strong { font-size: 11px; letter-spacing: .1em; }.admin-brand small { margin-top: 4px; color: var(--muted); font-size: 9px; }.admin-sidebar nav { display: flex; flex-direction: column; gap: 2px; }.admin-sidebar nav a { display: flex; align-items: center; gap: 11px; padding: 10px 13px; color: var(--ink-soft); font-size: 11px; }.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: var(--forest); background: var(--forest-soft); }.admin-sidebar nav a small { margin-left: auto; color: var(--muted); }.admin-nav-label { margin: 16px 13px 6px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }.admin-back { margin: auto 15px 0; padding-top: 19px; border-top: 1px solid var(--line); color: var(--forest); font-size: 10px; font-weight: 800; }.admin-content { min-width: 0; padding: 39px 0 50px 39px; }.admin-topbar { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-bottom: 28px; }.admin-topbar h1 { margin: 0; font-family: Georgia, serif; font-size: 42px; font-weight: 400; letter-spacing: -.055em; }.admin-topbar h1 em { color: var(--clay); font-style: italic; }.admin-notice { display: flex; align-items: start; gap: 13px; margin-bottom: 23px; padding: 15px 17px; border: 1px solid #e5c878; background: var(--gold-soft); }.admin-notice > span { display: grid; flex: 0 0 auto; place-items: center; width: 19px; height: 19px; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-family: Georgia, serif; }.admin-notice strong { font-size: 11px; }.admin-notice p { margin: 3px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }.admin-notice button { margin-left: auto; border: 0; background: transparent; color: var(--muted); }.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 21px; }.metric-card { padding: 19px; border: 1px solid var(--line); background: var(--surface); }.metric-card span, .metric-card small { display: block; color: var(--muted); font-size: 10px; }.metric-card strong { display: block; margin: 17px 0 4px; color: var(--forest); font-family: Georgia, serif; font-size: 34px; font-weight: 400; }.admin-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }.admin-panel { min-height: 245px; padding: 21px; border: 1px solid var(--line); background: var(--surface); }.panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 15px; }.panel-heading h2 { margin: 0; font-family: Georgia, serif; font-size: 23px; font-weight: 400; }.panel-heading .section-eyebrow { margin-bottom: 6px; }.panel-date { color: var(--muted); font-size: 9px; }.queue-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 143px; text-align: center; }.queue-empty span { color: var(--clay); font-family: Georgia, serif; font-size: 35px; }.queue-empty p { max-width: 270px; margin: 5px 0 0; color: var(--muted); font-size: 10px; }.readiness-list { display: grid; gap: 0; margin-top: 20px; }.readiness-list span { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 10px; }.readiness-list i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); }.readiness-list i.pending { background: var(--gold); }.readiness-list b { margin-left: auto; color: var(--muted); font-size: 9px; font-weight: 600; }.table-panel { min-height: 160px; }.status-flow { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 28px; }.status-flow span { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: 9px; }.status-flow .active-status { border-color: var(--forest); color: var(--forest); background: var(--forest-soft); font-weight: 800; }.status-flow i { color: var(--clay); font-style: normal; }
.not-found { padding: 130px 0; }.not-found h1 { max-width: 570px; margin: 0 0 15px; font-family: Georgia, serif; font-size: clamp(45px, 6vw, 80px); font-weight: 400; letter-spacing: -.065em; line-height: .98; }.not-found p:not(.section-eyebrow) { margin: 0 0 28px; color: var(--ink-soft); }

/* footer and flashes */
.site-footer { margin-top: 80px; color: #dae6dd; background: var(--forest-deep); }.footer-main { display: grid; grid-template-columns: 1.35fr .7fr .78fr .85fr .82fr; gap: 34px; padding: 63px 0 56px; }.footer-brand .brand-mark { color: var(--gold); border-color: var(--gold); }.footer-brand .brand-words strong { color: #fff; }.footer-brand .brand-words em { color: var(--gold); }.footer-tagline { margin: 24px 0 9px; color: #f2ddb1; font-size: 11px; font-weight: 700; letter-spacing: .04em; }.footer-tagline span { color: var(--clay); padding: 0 4px; }.footer-intro > p:not(.footer-tagline) { margin: 0; font-size: 11px; }.footer-powered { display: flex; flex-direction: column; gap: 8px; margin-top: 25px; color: rgba(218,230,221,.55); font-size: 10px; }.powered-label { color: #f2ddb1; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.powered-logo-row { display: flex; align-items: center; gap: 8px; }.powered-logo { display: block; width: 104px; height: 57px; padding: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.24); background: #fff; }.powered-logo img { width: 100%; height: 100%; object-fit: contain; }.powered-logo-official { background: #050505; }.powered-logo-ai { background: #fff; }.powered-links { display: flex; flex-wrap: wrap; gap: 12px; }.powered-links a { color: var(--gold); font-size: 10px; font-weight: 800; }.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }.footer-column h3 { margin: 0 0 8px; color: #f2ddb1; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }.footer-column a { color: rgba(218,230,221,.68); font-size: 11px; }.footer-config { max-width: 160px; color: rgba(218,230,221,.5); font-size: 10px; line-height: 1.6; }.footer-column a:hover, .footer-bottom a:hover { color: #fff; }.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 0; border-top: 1px solid rgba(218,230,221,.17); color: rgba(218,230,221,.47); font-size: 9px; }.footer-bottom-links { display: flex; gap: 16px; }.footer-bottom a { color: rgba(218,230,221,.47); }.footer-credit { color: rgba(218,230,221,.58); }.footer-credit > span { color: #e88970; }.footer-credit a { color: #f2ddb1; }.theme-switcher button { display: flex; align-items: center; gap: 6px; padding: 0; border: 0; color: rgba(218,230,221,.67); background: transparent; font-size: 9px; }.theme-icon { color: var(--gold); font-size: 14px; }.flash-stack { position: fixed; z-index: 12; top: 99px; right: 24px; width: min(360px, calc(100% - 48px)); }.flash { display: flex; align-items: start; gap: 10px; margin-bottom: 8px; padding: 13px 14px; border: 1px solid var(--line); box-shadow: var(--shadow-small); color: var(--ink); background: var(--surface); font-size: 11px; }.flash > span { display: grid; flex: 0 0 auto; place-items: center; width: 17px; height: 17px; border-radius: 50%; color: #fff; background: var(--forest); font-size: 10px; }.flash-error > span { background: var(--clay); }.flash-info > span { color: var(--forest); background: var(--forest-soft); }

@media (max-width: 1180px) {
    .primary-nav { gap: 13px; }.primary-nav a { font-size: 11px; }.hero-grid { gap: 38px; }.listing-grid-four { grid-template-columns: repeat(3,1fr); }.category-ribbon { grid-template-columns: repeat(4,1fr); }.category-tile { min-height: 135px; }.hero-art { min-height: 465px; }.hero-art-center { transform: translate(-50%,-50%) scale(.9); }
}
@media (max-width: 980px) {
    .container { width: min(calc(100% - 40px), var(--container)); }.header-main { gap: 16px; }.mobile-menu-toggle { display: block; order: 2; margin-left: auto; }.primary-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow-small); }.primary-nav.is-open { display: flex; }.primary-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); }.primary-nav a.active::after { display: none; }.primary-nav .seller-nav-link { margin: 13px 0 0; text-align: center; }.header-actions { order: 3; margin-left: 0; }.hero-grid { grid-template-columns: 1fr; gap: 54px; }.hero-copy h1 { max-width: 720px; }.hero-art { max-width: 660px; min-height: 430px; }.search-band-inner { align-items: start; flex-direction: column; gap: 24px; }.hero-search-form { max-width: none; }.healing-grid, .official-grid { gap: 50px; }.footer-main { grid-template-columns: 1.2fr .8fr .8fr; }.footer-intro { grid-row: span 2; }.footer-bottom { flex-wrap: wrap; }.shop-layout { grid-template-columns: 180px 1fr; gap: 23px; }.listing-grid-three { grid-template-columns: repeat(2,1fr); }.category-list-grid, .brand-grid { grid-template-columns: repeat(2,1fr); }.seller-layout { gap: 40px; }.listing-detail-grid { gap: 48px; }.detail-media { min-height: 450px; }.admin-layout { grid-template-columns: 190px 1fr; }.admin-content { padding-left: 25px; }.metric-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
    .container { width: min(calc(100% - 30px), var(--container)); }.topline { display: none; }.site-header { position: sticky; }.header-main { min-height: 68px; }.brand-mark { width: 36px; height: 36px; }.brand-words strong { font-size: 15px; }.desktop-only { display: none !important; }.header-actions { gap: 1px; }.account-button { min-width: 34px; padding: 0 8px; }.hero-section { padding: 70px 0 70px; }.hero-copy h1 { font-size: clamp(46px, 14vw, 65px); }.hero-lede { font-size: 14px; }.hero-actions { flex-wrap: wrap; }.hero-trust { flex-wrap: wrap; }.hero-art { min-height: 340px; padding: 17px; }.hero-art::before { inset: 15px; }.hero-art-center { transform: translate(-50%,-50%) scale(.67); }.hero-art-bottomline { right: 18px; bottom: 18px; left: 18px; flex-direction: column; align-items: start; gap: 4px; }.hero-art-topline { font-size: 8px; }.hero-scroll { position: static; margin-top: 20px; padding-left: 15px; }.search-band { padding: 32px 0; }.search-band h2 { font-size: 28px; }.hero-search-form button { min-width: 88px; }.section { padding: 67px 0; }.section-heading { align-items: start; flex-direction: column; gap: 17px; }.section-heading h2 { font-size: 42px; }.notice-banner { align-items: start; flex-wrap: wrap; }.notice-banner p { min-width: calc(100% - 40px); }.notice-banner a { margin-left: 34px; }.listing-grid-four, .listing-grid-three { grid-template-columns: 1fr 1fr; gap: 11px; }.listing-body { padding: 13px 12px 12px; }.listing-body h3 { font-size: 17px; }.listing-seller, .listing-note { font-size: 9px; }.listing-meta { margin-top: 13px; font-size: 12px; }.listing-footer { align-items: end; }.category-ribbon { grid-template-columns: repeat(2,1fr); }.category-tile { min-height: 145px; }.category-tile:nth-child(7) { grid-column: span 2; }.healing-grid, .official-grid, .cta-box, .architecture-note-box, .brand-about, .account-grid { grid-template-columns: 1fr; gap: 35px; }.healing-art { min-height: 350px; }.healing-copy h2, .official-copy h2 { font-size: 50px; }.official-grid { gap: 30px; }.cta-box { padding: 40px 28px; gap: 25px; }.page-hero { padding: 59px 0 61px; }.page-hero-inner { align-items: start; flex-direction: column; gap: 30px; }.page-hero h1 { font-size: 56px; }.hero-index { min-width: 180px; padding-left: 18px; }.shop-toolbar { align-items: start; flex-direction: column; }.shop-layout { display: block; }.filter-panel { display: none; }.listing-grid-three { grid-template-columns: 1fr 1fr; }.category-list-grid, .brand-grid { grid-template-columns: 1fr; }.category-card { min-height: 330px; }.architecture-note-box { padding: 35px 25px; }.architecture-note-box h2 { font-size: 38px; }.split-feature-grid { grid-template-columns: 1fr; gap: 25px; padding: 35px 25px; }.split-feature-number { font-size: 78px; }.listing-detail-section { padding: 30px 0 60px; }.breadcrumbs { margin-bottom: 24px; }.listing-detail-grid { grid-template-columns: 1fr; gap: 37px; }.detail-media { min-height: 335px; }.detail-media .media-symbol { font-size: 110px; }.detail-copy h1 { font-size: 52px; }.detail-points { grid-template-columns: 1fr 1fr; }.detail-points > div:last-child { grid-column: 1 / -1; }.brand-detail-head { align-items: start; flex-wrap: wrap; }.brand-detail-avatar { width: 75px; height: 75px; font-size: 35px; }.brand-detail-head > div:nth-child(2) { min-width: calc(100% - 100px); }.brand-detail-head .brand-title-row { align-items: start; flex-direction: column; gap: 8px; }.brand-detail-head h1 { font-size: 44px; }.brand-detail-head .button-outline { width: 100%; margin-top: 11px; }.brand-about { margin-bottom: 59px; }.seller-layout { grid-template-columns: 1fr; }.seller-aside h2 { font-size: 43px; }.seller-form-card { padding: 25px 18px; }.form-grid { grid-template-columns: 1fr; }.form-grid label.full { grid-column: auto; }.cart-layout { grid-template-columns: 1fr; gap: 28px; }.cart-item { align-items: start; }.cart-item-media { flex-basis: 67px; height: 67px; }.cart-item-copy h3 { font-size: 17px; }.cart-item-price { margin-left: auto; }.account-card { padding: 28px 24px; }.policy-layout { grid-template-columns: 1fr; gap: 38px; }.policy-layout aside { display: grid; grid-template-columns: 1fr 1fr; column-gap: 15px; }.policy-content h2 { font-size: 41px; }.admin-shell { overflow: hidden; }.admin-layout { display: block; }.admin-sidebar { display: none; }.admin-content { padding: 35px 0; }.admin-topbar { align-items: start; flex-direction: column; }.admin-topbar h1 { font-size: 38px; }.admin-main-grid { grid-template-columns: 1fr; }.metric-grid { gap: 8px; }.metric-card { padding: 14px; }.metric-card strong { font-size: 28px; }.status-flow { align-items: start; flex-direction: column; }.status-flow i { transform: rotate(90deg); }.footer-main { grid-template-columns: repeat(2,1fr); gap: 31px 20px; padding: 48px 0 40px; }.footer-intro { grid-column: 1 / -1; grid-row: auto; }.footer-bottom { align-items: start; flex-direction: column; gap: 12px; }.footer-bottom-links { flex-wrap: wrap; gap: 9px 14px; }.flash-stack { top: 75px; right: 15px; width: calc(100% - 30px); }
}
@media (max-width: 430px) { .listing-grid-four, .listing-grid-three { grid-template-columns: 1fr; }.listing-media { aspect-ratio: 1.35 / 1; }.hero-art-center { transform: translate(-50%,-50%) scale(.57); }.hero-copy h1 { font-size: 48px; }.detail-actions { align-items: stretch; flex-direction: column; }.save-detail { width: 100%; }.detail-points { grid-template-columns: 1fr; }.detail-points > div:last-child { grid-column: auto; }.topline-links { display: none; } }
