:root {
  --ink: #070707;
  --ink-2: #0d0d0f;
  --panel: #121215;
  --panel-2: #18181c;
  --line: #29292f;
  --text: #f5f5f1;
  --muted: #9b9ba3;
  --soft: #d8d8dc;
  --violet: #8128ff;
  --violet-2: #a667ff;
  --cyan: #14d9ff;
  --pink: #f30a9a;
  --danger: #ff5656;
  --success: #7cffb2;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
  --radius: 2px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; background: var(--ink); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
::selection { background: var(--violet); color: white; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.shell { width: min(1440px, calc(100% - 64px)); margin-inline: 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: 9999; left: 16px; top: -80px; background: white; color: black; padding: 12px 18px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

.announcement { height: 32px; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 24px; white-space: nowrap; padding-inline: 20px; background: var(--violet); color: white; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.staging-banner { padding: 9px 20px; background: #ffd439; color: #151109; text-align: center; font-size: 12px; font-weight: 800; line-height: 1.35; letter-spacing: .04em; }
.announcement-dot { font-size: 7px; color: var(--cyan); }
.site-header { position: sticky; z-index: 100; top: 0; height: var(--header-height); background: rgba(7,7,7,.9); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: grid; grid-template-columns: 265px 1fr auto; align-items: center; }
.brand-lockup { display: inline-flex; width: max-content; align-items: center; gap: 12px; }
.brand-lockup img { width: 42px; height: 48px; object-fit: contain; filter: drop-shadow(4px 0 9px rgba(129,40,255,.35)); }
.brand-lockup span { display: flex; flex-direction: column; line-height: .86; }
.brand-lockup b { font: 19px var(--display); letter-spacing: .07em; }
.brand-lockup small { margin-top: 7px; font-size: 8px; font-weight: 700; letter-spacing: .32em; color: var(--muted); }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 48px); }
.desktop-nav a { position: relative; padding: 31px 0; color: #d7d7dc; font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 22px; left: 0; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .sibling-brand-link { color: var(--cyan); }
.desktop-nav .sibling-brand-link span { color: var(--violet-2); }
.header-actions { display: flex; align-items: stretch; height: 100%; }
.header-action { display: flex; position: relative; align-items: center; gap: 8px; padding: 0 15px; border-left: 1px solid rgba(255,255,255,.08); color: #dddde2; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; transition: color .2s, background .2s; }
.header-action:hover { background: rgba(255,255,255,.035); color: white; }
.header-action > span:first-child { font-size: 21px; font-weight: 400; }
.cart-count { display: inline-grid; min-width: 21px; height: 21px; place-items: center; padding: 0 5px; border-radius: 99px; background: var(--violet); color: white; font-size: 10px; font-weight: 700; }
.menu-button { display: none; }
.mobile-menu { position: fixed; z-index: 99; inset: calc(32px + var(--header-height)) 0 0; background: rgba(7,7,7,.98); }
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { width: min(600px, calc(100% - 48px)); margin: 32px auto; }
.mobile-menu-inner > a { display: flex; align-items: baseline; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font: clamp(31px, 10vw, 52px) var(--display); text-transform: uppercase; }
.mobile-menu-inner > a span { font: 10px var(--body); color: var(--violet-2); }
.mobile-menu-inner > .sibling-brand-link { color: var(--cyan); }
.mobile-menu-inner > .sibling-brand-link span { color: var(--cyan); }
.mobile-contact { margin-top: 32px; display: grid; gap: 8px; }
.mobile-contact small { color: var(--muted); letter-spacing: .12em; }
.mobile-contact a { color: var(--cyan); }

.messages { position: fixed; z-index: 150; top: 128px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.message { pointer-events: auto; width: min(520px, 100%); margin-left: auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 16px; background: var(--text); color: var(--ink); box-shadow: 0 14px 50px rgba(0,0,0,.45); font-size: 14px; }
.message button, .toast button { border: 0; background: none; font-size: 22px; line-height: 1; }
.message-error { border-left: 4px solid var(--danger); }
.message-success { border-left: 4px solid var(--success); }
.cart-feedback { position: fixed; z-index: 200; right: 24px; top: 132px; }
.toast { display: grid; grid-template-columns: 34px 1fr auto 24px; align-items: center; gap: 12px; width: min(460px, calc(100vw - 32px)); padding: 14px; background: var(--text); color: var(--ink); box-shadow: 0 16px 60px rgba(0,0,0,.55); animation: toast-in .25s ease-out; }
.toast-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--violet); color: white; font-weight: 700; }
.toast div { display: flex; flex-direction: column; }
.toast small { color: #595960; }
.toast a { padding-bottom: 2px; border-bottom: 1px solid; font-size: 12px; font-weight: 700; text-transform: uppercase; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px); } }

.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--soft); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kicker span { width: 28px; height: 1px; background: var(--violet-2); }
.eyebrow { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 24px; border: 1px solid transparent; border-radius: var(--radius); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--text); color: var(--ink); }
.button-primary:hover { background: var(--cyan); }
.button-ghost { border-color: rgba(255,255,255,.4); background: rgba(7,7,7,.25); backdrop-filter: blur(8px); }
.button-ghost:hover, .button-outline:hover { border-color: var(--violet-2); color: white; }
.button-outline { border-color: var(--line); background: transparent; }
.button:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid var(--muted); background: none; color: var(--text); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--cyan); }
.text-link:hover { border-color: var(--cyan); }

.hero { position: relative; min-height: calc(100vh - 112px); display: flex; align-items: flex-end; overflow: hidden; background: #090b12; }
.hero-media, .hero-vignette, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-vignette { background: linear-gradient(90deg, rgba(4,4,7,.93) 0%, rgba(4,4,7,.68) 32%, rgba(4,4,7,.12) 69%, rgba(4,4,7,.3) 100%), linear-gradient(0deg, rgba(4,4,7,.68), transparent 42%); }
.hero-grid { opacity: .13; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(78px, 9vh, 130px); }
.hero h1 { max-width: 880px; margin: 0; font: clamp(58px, 8.2vw, 134px)/.84 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 em, .page-hero h1 em, .success-hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.85); text-shadow: 5px 2px 0 rgba(129,40,255,.35); }
.hero-copy { max-width: 480px; margin: 30px 0 26px; color: #c9c9d0; font-size: clamp(15px, 1.4vw, 19px); }
.hero-actions { display: flex; gap: 12px; }
.hero-index { position: absolute; z-index: 3; top: 40px; right: 30px; display: grid; gap: 4px; justify-items: end; color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .15em; }
.hero-index span:first-child { font: 34px var(--display); color: white; }
.hero-scroll { position: absolute; z-index: 3; right: 34px; bottom: 28px; display: flex; align-items: center; gap: 12px; writing-mode: vertical-rl; font-size: 8px; letter-spacing: .2em; }
.hero-scroll i { display: block; width: 1px; height: 42px; background: linear-gradient(var(--cyan), transparent); }
.service-strip { border-block: 1px solid var(--line); background: #0a0a0b; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-grid > div { display: flex; align-items: center; gap: 18px; min-height: 102px; padding: 20px; border-right: 1px solid var(--line); }
.service-grid > div:first-child { border-left: 1px solid var(--line); }
.service-grid > div > span { color: var(--violet-2); font-size: 9px; }
.service-grid p { display: grid; margin: 0; }
.service-grid b { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.service-grid small { color: var(--muted); font-size: 11px; }

.section { padding-block: clamp(90px, 11vw, 170px); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(44px, 5vw, 72px); }
.section-heading h2, .category-heading h2, .story-copy h2, .cta-inner h2 { margin: 0; font: clamp(42px, 6vw, 86px)/.9 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 42px 18px; }
.product-card { min-width: 0; }
.product-card-image { position: relative; display: block; aspect-ratio: .78; overflow: hidden; background: #161619; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .35s; }
.product-card:hover img { transform: scale(1.045); filter: saturate(1.05); }
.product-badges { position: absolute; z-index: 2; top: 12px; left: 12px; display: flex; gap: 6px; }
.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 9px; background: #f4f4f0; color: #080808; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.badge-neon { background: var(--violet); color: white; }
.product-card-arrow { position: absolute; z-index: 2; right: 12px; bottom: 12px; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: rgba(7,7,7,.76); backdrop-filter: blur(8px); opacity: 0; transform: translateY(5px); transition: opacity .25s, transform .25s; }
.product-card:hover .product-card-arrow { opacity: 1; transform: none; }
.product-card-body { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-top: 15px; }
.product-card-body p { margin: 0 0 3px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 15px; font-weight: 600; }
.product-price { display: grid; flex-shrink: 0; justify-items: end; font-size: 13px; }
.product-price s { color: var(--muted); font-size: 10px; }
.product-price strong { font-weight: 600; }

.category-section { padding-block: 130px; background: #eeeef0; color: #090909; }
.category-heading > p { max-width: 360px; margin: 0 0 10px; color: #52525b; }
.category-section .kicker { color: #2b2b30; }
.category-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 250px; gap: 14px; }
.category-card { position: relative; overflow: hidden; background: #111; color: white; }
.category-card-1, .category-card-4 { grid-column: span 7; }
.category-card-2, .category-card-3 { grid-column: span 5; }
.category-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) brightness(.72); transition: transform .55s, filter .35s; }
.category-card:hover img { transform: scale(1.04); filter: grayscale(0) brightness(.9); }
.category-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.74), transparent 65%); }
.category-number, .category-name, .category-arrow { position: absolute; z-index: 2; }
.category-number { top: 18px; left: 20px; font-size: 9px; letter-spacing: .1em; }
.category-name { left: 20px; bottom: 16px; font: clamp(28px, 3.5vw, 52px)/1 var(--display); letter-spacing: -.03em; }
.category-arrow { right: 18px; bottom: 20px; font-size: 24px; }

.story-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 760px; background: var(--panel); }
.story-image { position: relative; min-height: 680px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(.75) contrast(1.06); }
.story-stamp { position: absolute; right: -1px; bottom: -1px; min-width: 160px; padding: 26px; background: var(--violet); color: white; font-size: 9px; letter-spacing: .15em; }
.story-stamp b { display: block; margin-top: 4px; font: 39px var(--display); letter-spacing: -.05em; }
.story-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(60px, 8vw, 130px); }
.story-copy h2 { margin-bottom: 42px; }
.story-copy > p:not(.kicker) { max-width: 520px; color: var(--muted); }
.story-copy .story-lead { color: var(--text)!important; font-size: 20px; }
.story-copy .button { margin-top: 30px; }
.cta-section { position: relative; overflow: hidden; padding: 150px 0; background: radial-gradient(circle at 72% 48%, rgba(129,40,255,.32), transparent 30%), #09090b; text-align: center; }
.cta-inner { position: relative; z-index: 2; display: grid; justify-items: center; }
.cta-inner > p { color: var(--muted); }
.cta-inner h2 { font-size: clamp(58px, 9vw, 130px); }
.cta-inner .button { margin-top: 36px; }
.cta-orbit { position: absolute; inset: 50% auto auto 50%; width: min(700px, 90vw); aspect-ratio: 1; transform: translate(-50%,-50%); }
.cta-orbit span { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-orbit span:nth-child(2) { inset: 15%; border-color: rgba(20,217,255,.18); }
.cta-orbit span:nth-child(3) { inset: 30%; border-color: rgba(243,10,154,.22); }

.site-footer { overflow: hidden; background: #050505; border-top: 1px solid var(--line); }
.footer-marquee { overflow: hidden; padding: 16px 0; border-bottom: 1px solid var(--line); color: #4f4f57; font: 19px var(--display); white-space: nowrap; }
.footer-marquee div { width: max-content; animation: marquee 26s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 60px; padding-block: 80px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h2 { margin: 0 0 12px; color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; color: #c7c7cd; font-size: 13px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-grid .sibling-brand-link { margin-top: 8px; color: var(--cyan); }
.footer-brand img { width: 76px; height: 86px; object-fit: contain; }
.footer-brand p { max-width: 340px; margin-top: 20px; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 18px; border-top: 1px solid var(--line); color: #66666e; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.page-hero, .shop-hero { padding: clamp(100px, 12vw, 180px) 0 80px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 40%, rgba(129,40,255,.2), transparent 28%), var(--ink); }
.page-hero h1, .shop-hero h1, .page-heading h1, .checkout-heading h1, .staff-head h1, .account-head h1 { margin: 0; font: clamp(56px, 9vw, 132px)/.86 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.page-hero > .shell > p:last-child, .shop-hero > .shell > p:last-child { max-width: 510px; color: var(--muted); font-size: 18px; }
.about-manifesto { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; padding-block: 140px; }
.about-mark { display: grid; min-height: 440px; place-items: center; background: radial-gradient(circle, rgba(129,40,255,.16), transparent 55%), #0c0c0e; }
.about-mark img { width: 65%; filter: drop-shadow(10px 3px 28px rgba(129,40,255,.3)); }
.about-manifesto h2 { margin: 18px 0 50px; font: clamp(34px, 4vw, 64px)/.98 var(--display); letter-spacing: -.04em; }
.about-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; color: var(--muted); font-size: 17px; }
.about-image-band { position: relative; height: 65vh; min-height: 580px; }
.about-image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: brightness(.72) saturate(.8); }
.about-image-band > div { position: absolute; right: 0; bottom: 24px; left: 0; display: flex; justify-content: space-between; font: clamp(18px, 3vw, 46px) var(--display); }
.info-sections { padding-block: 100px; }
.info-sections article { display: grid; grid-template-columns: 90px 1fr; padding: 45px 0; border-top: 1px solid var(--line); }
.info-sections article > span { color: var(--violet-2); font-size: 10px; }
.info-sections article > div { display: grid; grid-template-columns: .7fr 1fr; align-items: start; gap: 50px; }
.info-sections h2 { margin: 0; font: 28px var(--display); text-transform: uppercase; }
.info-sections p { max-width: 620px; margin: 0; color: var(--muted); }

.shop-hero { padding-bottom: 60px; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 60px; padding-block: 70px 130px; }
.filters { border-right: 1px solid var(--line); padding-right: 30px; }
.filter-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.filter-heading button { display: none; border: 0; background: none; color: var(--cyan); }
.filters form { display: grid; gap: 36px; }
.filters fieldset { display: grid; gap: 9px; margin: 0; padding: 0; border: 0; }
.filters legend, .search-field > label { margin-bottom: 13px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.search-field > div { display: flex; border-bottom: 1px solid #55555c; }
.search-field input { width: 100%; padding: 10px 0; border: 0; background: transparent; color: white; outline: none; }
.search-field button { border: 0; background: none; color: var(--cyan); }
.check-row { display: flex; align-items: center; gap: 10px; color: #b4b4bc; font-size: 13px; cursor: pointer; }
.check-row input { appearance: none; width: 14px; height: 14px; margin: 0; border: 1px solid #55555e; border-radius: 50%; }
.check-row input:checked { border: 4px solid var(--violet-2); background: white; }
.check-row:has(input:checked) { color: white; }
.filter-submit { display: none; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.catalog-toolbar p { margin: 0; }
.catalog-toolbar b { color: white; }
.catalog-toolbar label { display: flex; align-items: center; gap: 10px; }
.catalog-toolbar select, .staff-filters select { padding: 8px 30px 8px 10px; border: 1px solid var(--line); background: var(--panel); color: white; }
.catalog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.catalog-empty { grid-column: 1/-1; }
.htmx-request .catalog-grid { opacity: .45; transition: opacity .2s; }

.product-detail { padding-block: 28px 120px; }
.breadcrumbs { display: flex; gap: 10px; padding: 0 0 26px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--cyan); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(380px,.85fr); gap: clamp(48px, 7vw, 110px); }
.product-gallery { position: relative; }
.product-main-image { aspect-ratio: .84; margin: 0; overflow: hidden; background: #141417; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.image-index { position: absolute; right: 14px; bottom: 14px; padding: 7px 9px; background: rgba(7,7,7,.72); font-size: 8px; letter-spacing: .12em; }
.product-info { align-self: start; position: sticky; top: 118px; padding-top: 16px; }
.product-info h1 { margin: 11px 0 18px; font: clamp(42px, 5vw, 72px)/.95 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.detail-price { display: flex; align-items: baseline; gap: 12px; }
.detail-price strong { font-size: 24px; }
.detail-price strong small { color: var(--muted); font-size: 9px; letter-spacing: .1em; }
.detail-price s { color: var(--muted); }
.product-description { max-width: 620px; margin: 26px 0; color: #b5b5bd; font-size: 16px; }
.variant-picker { margin: 30px 0 20px; padding: 0; border: 0; }
.variant-picker legend { margin-bottom: 12px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.variant-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.variant-option { position: relative; min-height: 55px; display: grid; align-content: center; padding: 10px 12px; border: 1px solid var(--line); color: #d7d7dc; cursor: pointer; }
.variant-option input { position: absolute; opacity: 0; }
.variant-option:has(input:checked) { border-color: var(--cyan); background: rgba(20,217,255,.06); color: white; }
.variant-option small { color: var(--pink); font-size: 8px; text-transform: uppercase; }
.variant-option.sold-out { opacity: .38; text-decoration: line-through; cursor: not-allowed; }
.purchase-row { display: grid; grid-template-columns: 88px 1fr; gap: 8px; }
.quantity-field { height: 56px; display: grid; grid-template-columns: 1fr; padding: 6px 10px; border: 1px solid var(--line); }
.quantity-field > span { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.quantity-field select { border: 0; background: transparent; color: white; outline: none; }
.add-button { height: 56px; }
.product-promises { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 28px 0; }
.product-promises > div { display: flex; gap: 10px; padding: 14px; background: var(--panel); }
.product-promises > div > span { color: var(--violet-2); font-size: 8px; }
.product-promises p { display: grid; margin: 0; }
.product-promises b { font-size: 10px; text-transform: uppercase; }
.product-promises small { color: var(--muted); font-size: 9px; }
.product-info details { border-top: 1px solid var(--line); }
.product-info details:last-child { border-bottom: 1px solid var(--line); }
.product-info summary { display: flex; justify-content: space-between; padding: 18px 0; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; list-style: none; }
.product-info details p { margin: 0; padding: 0 0 20px; color: var(--muted); font-size: 13px; }
.related-section { border-top: 1px solid var(--line); }
.empty-state { display: grid; justify-items: center; padding: 100px 30px; text-align: center; }
.empty-state > span { color: var(--violet-2); font-size: 70px; }
.empty-state h2 { margin: 8px 0; font: clamp(28px,4vw,48px) var(--display); }
.empty-state p { color: var(--muted); }
.empty-state .button { margin-top: 22px; }

.cart-page { min-height: 70vh; padding-block: 80px 140px; }
.compact-heading { margin-bottom: 54px; }
.page-heading .back-link { display: inline-block; margin-bottom: 30px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.cart-panel { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(320px,.5fr); gap: clamp(48px,7vw,110px); }
.cart-table-head { display: grid; grid-template-columns: 1fr 120px 110px; padding: 0 44px 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.cart-table-head span:nth-child(2), .cart-table-head span:last-child { text-align: right; }
.cart-line { position: relative; display: grid; grid-template-columns: 160px minmax(0,1fr) 120px 110px; gap: 22px; align-items: center; padding: 24px 44px 24px 0; border-bottom: 1px solid var(--line); }
.cart-line-image { aspect-ratio: .9; overflow: hidden; background: var(--panel); }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info p { margin: 0 0 4px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cart-line-info h2 { margin: 0 0 7px; font-size: 17px; }
.cart-line-info > span { color: var(--muted); font-size: 12px; }
.cart-quantity select { width: 68px; height: 42px; float: right; padding: 0 12px; border: 1px solid var(--line); background: var(--panel); color: white; }
.cart-line-total { text-align: right; font-size: 14px; }
.cart-remove { position: absolute; right: 0; bottom: 20px; }
.cart-remove button { padding: 0 0 2px; border: 0; border-bottom: 1px solid #4c4c53; background: none; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.mobile-line-price { display: none; }
.keep-shopping { margin-top: 28px; }
.cart-summary { align-self: start; position: sticky; top: 120px; padding: 30px; background: var(--panel); border: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.cart-summary > div strong { color: white; }
.cart-summary .summary-total { margin-top: 4px; padding: 24px 0; color: white; }
.summary-total strong { font-size: 22px; }
.summary-total small { color: var(--muted); font-size: 8px; }
.summary-note { color: var(--muted); font-size: 10px; }
.checkout-button { width: 100%; margin-top: 16px; }
.secure-note { justify-content: center!important; border: 0!important; color: var(--muted)!important; font-size: 9px!important; text-transform: uppercase; letter-spacing: .08em; }
.secure-note span { color: var(--success); font-size: 7px; }
.cart-empty { grid-column: 1/-1; min-height: 480px; border: 1px solid var(--line); }

.checkout-page { padding-block: 60px 130px; }
.checkout-heading { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; margin-bottom: 55px; }
.checkout-heading > a { align-self: start; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.checkout-heading h1 { font-size: clamp(52px,7vw,92px); text-align: center; }
.checkout-lock { justify-self: end; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.checkout-lock::first-letter { color: var(--success); }
.checkout-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(350px,.8fr); gap: clamp(55px,8vw,120px); max-width: 1260px; margin-inline: auto; }
.guest-checkout-note { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px; border: 1px solid rgba(20,217,255,.22); background: rgba(20,217,255,.045); }
.guest-checkout-note > div { display: flex; align-items: center; gap: 13px; }
.guest-checkout-note > div > span { font-size: 24px; color: var(--cyan); }
.guest-checkout-note p { display: grid; margin: 0; }
.guest-checkout-note small { color: var(--muted); }
.guest-checkout-note > a { font-size: 10px; font-weight: 700; border-bottom: 1px solid; text-transform: uppercase; }
.checkout-step { padding: 38px 0; border-bottom: 1px solid var(--line); }
.step-title { display: flex; gap: 18px; margin-bottom: 27px; }
.step-title > span { color: var(--violet-2); font-size: 9px; }
.step-title h2 { margin: 0; font: 24px var(--display); text-transform: uppercase; }
.step-title p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
.field-full { grid-column: 1/-1; }
.field { display: grid; gap: 7px; }
.field label { color: #c7c7cd; font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea, .auth-form input { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #34343a; border-radius: 0; background: #0c0c0e; color: white; outline: none; transition: border-color .2s, background .2s; }
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .auth-form input:focus { border-color: var(--cyan); background: #101014; }
.errorlist { margin: 0; padding: 0; color: #ff7777; font-size: 10px; list-style: none; }
.form-alert { margin-bottom: 24px; padding: 14px; border-left: 3px solid var(--danger); background: rgba(255,86,86,.08); color: #ffc0c0; font-size: 13px; }
.radio-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.radio-card { position: relative; min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card:has(input:checked) { border-color: var(--cyan); background: rgba(20,217,255,.045); }
.radio-indicator { flex: 0 0 15px; height: 15px; border: 1px solid #777780; border-radius: 50%; }
.radio-card:has(input:checked) .radio-indicator { border: 4px solid var(--cyan); background: white; }
.radio-card > span:last-child { display: grid; }
.radio-card b { font-size: 12px; }
.radio-card small { color: var(--muted); font-size: 9px; }
.shipping-address { margin-top: 20px; }
.shipping-address.is-hidden { display: none; }
.final-step { border-bottom: 0; }
.terms-check { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; color: var(--muted); font-size: 11px; }
.terms-check input { accent-color: var(--violet); }
.place-order-button { width: 100%; height: 58px; }
.place-order-note { margin: 12px auto 0; max-width: 520px; color: var(--muted); font-size: 9px; text-align: center; }
.checkout-summary { align-self: start; position: sticky; top: 120px; padding: 28px; background: var(--panel); border: 1px solid var(--line); }
.checkout-products { display: grid; gap: 18px; margin: 24px 0; }
.checkout-product { display: grid; grid-template-columns: 62px 1fr auto; align-items: center; gap: 12px; }
.checkout-product > div { position: relative; width: 62px; height: 72px; background: var(--ink); }
.checkout-product img { width: 100%; height: 100%; object-fit: cover; }
.checkout-product > div > span { position: absolute; top: -6px; right: -6px; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: var(--violet); font-size: 8px; }
.checkout-product p { display: grid; margin: 0; }
.checkout-product b { font-size: 12px; }
.checkout-product small { color: var(--muted); font-size: 9px; }
.checkout-product > strong { font-size: 11px; }
.checkout-totals { border-top: 1px solid var(--line); }
.checkout-totals > div { display: flex; justify-content: space-between; padding: 13px 0; color: var(--muted); font-size: 11px; }
.checkout-totals > div:last-child { margin-top: 4px; padding-top: 20px; border-top: 1px solid var(--line); color: white; }
.checkout-totals > div:last-child strong { font-size: 19px; }
.checkout-totals small { color: var(--muted); font-size: 8px; }
.summary-trust { margin: 14px 0 0; color: var(--muted); font-size: 8px; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.summary-trust span { color: var(--success); }

.success-page { padding-block: 90px 140px; }
.success-hero { max-width: 920px; margin: 0 auto 80px; text-align: center; }
.success-hero .kicker { justify-content: center; }
.success-orbit { display: grid; width: 82px; height: 82px; place-items: center; margin: 0 auto 30px; border: 1px solid rgba(20,217,255,.35); border-radius: 50%; background: radial-gradient(circle, rgba(129,40,255,.42), transparent 67%); color: var(--success); font-size: 30px; }
.success-hero h1 { margin: 0; font: clamp(62px,9vw,126px)/.84 var(--display); letter-spacing: -.06em; }
.success-hero > p:last-child { max-width: 650px; margin: 28px auto 0; color: var(--muted); font-size: 17px; }
.success-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 22px; max-width: 1120px; margin: auto; }
.order-card, .next-steps, .order-address { padding: 30px; background: var(--panel); border: 1px solid var(--line); }
.order-card-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.order-card-head h2 { margin: 4px 0 0; font: 27px var(--display); text-transform: uppercase; }
.order-card-head > span { color: var(--muted); font-size: 10px; }
.order-item { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 8px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.order-item > span { color: var(--violet-2); font-size: 11px; }
.order-item p { display: grid; margin: 0; }
.order-item b { font-size: 12px; }
.order-item small { color: var(--muted); font-size: 9px; }
.order-item strong { font-size: 11px; }
.order-card-totals { padding-top: 13px; }
.order-card-totals > div { display: flex; justify-content: space-between; padding: 7px 0; color: var(--muted); font-size: 11px; }
.order-card-totals > div:last-child { margin-top: 9px; padding-top: 16px; border-top: 1px solid var(--line); color: white; font-size: 15px; }
.next-steps ol { display: grid; gap: 0; margin: 24px 0 30px; padding: 0; list-style: none; }
.next-steps li { display: flex; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.next-steps li > span { color: var(--cyan); font-size: 9px; }
.next-steps li p { display: grid; margin: 0; }
.next-steps li b { font-size: 12px; }
.next-steps li small { color: var(--muted); }
.next-steps .button { width: 100%; }
.success-actions { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 50px; }
.order-detail-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; }
.order-address h2 { margin: 9px 0 22px; font: 23px var(--display); text-transform: uppercase; }
.order-address p { color: var(--muted); }

.auth-page { min-height: calc(100vh - 112px); display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: sticky; top: var(--header-height); height: calc(100vh - var(--header-height)); display: flex; align-items: flex-end; padding: clamp(40px,7vw,100px); background: linear-gradient(0deg, rgba(7,7,7,.75), transparent), url("/static/images/planeta-community.a47facf80392.jpg") center 34%/cover; }
.register-visual { background-image: linear-gradient(0deg, rgba(7,7,7,.82), transparent), url("/static/images/products/planeta-hoodie-official.c7d832f1a239.jpg"); }
.auth-visual p { color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.auth-visual h2 { margin: 0; font: clamp(42px,5vw,78px)/.9 var(--display); letter-spacing: -.04em; }
.auth-panel { display: grid; place-items: center; padding: 70px; }
.auth-form-wrap { width: min(480px,100%); }
.auth-form-wrap h1 { margin: 0; font: clamp(48px,7vw,82px)/.9 var(--display); }
.auth-intro { margin: 20px 0 32px; color: var(--muted); }
.auth-form { display: grid; gap: 17px; }
.auth-form .button { width: 100%; margin-top: 6px; }
.help-text { color: #73737d; font-size: 9px; }
.help-text ul { margin: 6px 0 0; padding-left: 16px; }
.auth-switch { margin: 25px 0; color: var(--muted); text-align: center; }
.auth-switch a { color: white; border-bottom: 1px solid; }
.guest-path { display: grid; justify-items: center; gap: 10px; color: var(--muted); }
.guest-path span { font-size: 10px; }
.guest-path a { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.forgot-link { justify-self: end; margin-top: -8px; color: var(--muted); font-size: 10px; border-bottom: 1px solid #44444a; }
.simple-auth { min-height: 70vh; display: grid; place-items: center; padding-block: 100px; }
.simple-auth > div { width: min(580px, 100%); padding: clamp(30px,6vw,70px); border: 1px solid var(--line); background: radial-gradient(circle at 95% 0, rgba(129,40,255,.18), transparent 30%), var(--panel); }
.simple-auth h1 { margin: 0; font: clamp(48px,7vw,82px)/.88 var(--display); letter-spacing: -.045em; }
.simple-auth > div > p:not(.kicker) { margin: 25px 0; color: var(--muted); }
.simple-auth .back-link { display: inline-block; margin-top: 25px; color: var(--muted); font-size: 10px; text-transform: uppercase; }

.account-page, .staff-page { min-height: 70vh; padding-block: 80px 140px; }
.account-head, .staff-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 55px; }
.account-head h1, .staff-head h1 { font-size: clamp(48px,7vw,92px); }
.account-head > div > p:last-child, .staff-head > div > p:last-child { color: var(--muted); }
.account-head form button { border: 0; }
.staff-banner { display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 20px; margin-bottom: 55px; padding: 20px 24px; border: 1px solid rgba(129,40,255,.5); background: linear-gradient(90deg, rgba(129,40,255,.18), transparent); }
.staff-banner > span { color: var(--cyan); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.staff-banner p { display: grid; margin: 0; }
.staff-banner small { color: var(--muted); }
.account-section-head, .staff-card-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.account-section-head h2, .staff-card-head h2 { margin: 5px 0 0; font: 28px var(--display); text-transform: uppercase; }
.account-section-head > a, .staff-card-head > a { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.orders-list { border-top: 1px solid var(--line); }
.account-order { display: grid; grid-template-columns: 140px 140px 1fr 140px 20px; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.account-order .order-number { font-weight: 700; }
.account-order > strong { text-align: right; }
.account-order i { color: var(--cyan); font-style: normal; }
.status-pill { display: inline-flex; width: max-content; align-items: center; min-height: 23px; padding: 0 9px; border: 1px solid #3a3a40; color: #b9b9c0; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-confirmed, .status-paid, .status-active, .status-completed { border-color: rgba(124,255,178,.35); color: var(--success); }
.status-pending, .status-preparing { border-color: rgba(255,194,80,.35); color: #ffc250; }
.status-cancelled, .status-out { border-color: rgba(255,86,86,.35); color: #ff7777; }
.account-empty { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 20px; padding: 36px; border: 1px solid var(--line); }
.account-empty > span { color: var(--violet-2); font-size: 50px; }
.account-empty p { display: grid; margin: 0; }
.account-empty small { color: var(--muted); }

.staff-nav { display: flex; gap: 30px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.staff-nav a { position: relative; padding: 0 0 15px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.staff-nav a.active { color: white; }
.staff-nav a.active::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--cyan); }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 52px; }
.metric-grid article { min-height: 150px; display: grid; align-content: space-between; padding: 20px; border: 1px solid var(--line); background: var(--panel); }
.metric-grid article > span { color: var(--violet-2); font-size: 8px; }
.metric-grid p { margin: 0; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.metric-grid strong { font: 35px var(--display); }
.staff-columns { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.staff-card { padding: 24px; border: 1px solid var(--line); background: #0b0b0d; }
.staff-table > a { display: grid; grid-template-columns: 80px 1fr 100px 90px; align-items: center; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); }
.staff-table > a > span:first-child { color: var(--violet-2); font-size: 10px; }
.staff-table p, .stock-list p, .data-row p { display: grid; margin: 0; }
.staff-table b, .stock-list b, .data-row b { font-size: 11px; }
.staff-table small, .stock-list small, .data-row small { color: var(--muted); font-size: 8px; }
.staff-table > a > strong { text-align: right; font-size: 10px; }
.stock-list > a { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.stock-number { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,194,80,.35); color: #ffc250; }
.stock-number.out { border-color: rgba(255,86,86,.4); color: var(--danger); }
.stock-list i { color: var(--cyan); font-style: normal; }
.staff-empty { padding: 30px 0; color: var(--muted); }
.staff-filters { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.staff-filters label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.data-table { border: 1px solid var(--line); }
.data-table-head, .data-row { display: grid; grid-template-columns: 2fr 1fr .7fr .7fr .8fr 25px; align-items: center; gap: 18px; padding: 14px 20px; }
.data-table-head { background: var(--panel); color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.data-row { min-height: 68px; border-top: 1px solid var(--line); font-size: 11px; }
.data-row:hover { background: rgba(255,255,255,.025); }
.data-row i { color: var(--cyan); font-style: normal; }
.orders-table .data-table-head, .orders-table .data-row { grid-template-columns: .6fr 1.3fr .9fr 1.15fr .8fr .7fr; }

/* First-party catalog workspace */
.inventory-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.inventory-heading h2 { margin: 4px 0 0; font: clamp(24px, 2.3vw, 34px) var(--display); text-transform: uppercase; }
.inventory-heading > p { margin: 0; color: var(--muted); font-size: 12px; }
.inventory-filters { display: flex; align-items: end; gap: 9px; margin-bottom: 20px; }
.inventory-filters label { display: grid; gap: 6px; min-width: 0; }
.inventory-filters label > span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.inventory-filters .inventory-search { flex: 1; }
.inventory-filters input, .inventory-filters select { width: 100%; height: 48px; padding: 0 15px; border: 1px solid var(--line); border-radius: 0; background: var(--panel); color: var(--text); outline: none; }
.inventory-filters input:focus, .inventory-filters select:focus { border-color: var(--cyan); }
.inventory-filters select { min-width: 170px; }
.inventory-filters .button { min-height: 48px; }
.inventory-clear { align-self: center; color: var(--muted); font-size: 11px; text-decoration: underline; text-underline-offset: 4px; }
.inventory-list { border: 1px solid var(--line); background: #0b0b0d; }
.inventory-list-head, .inventory-row { display: grid; grid-template-columns: minmax(300px, 2fr) .75fr .6fr .5fr .85fr 24px; align-items: center; gap: 18px; padding-inline: 22px; }
.inventory-list-head { min-height: 42px; background: var(--panel); color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.inventory-row { min-height: 88px; border-top: 1px solid var(--line); font-size: 12px; transition: background .16s; }
.inventory-row:hover { background: #15151a; }
.inventory-row > strong { font-size: 14px; }
.inventory-product { display: flex; align-items: center; gap: 15px; min-width: 0; }
.inventory-product > span:last-child { display: grid; min-width: 0; }
.inventory-product strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.inventory-product small { color: var(--muted); font-size: 10px; }
.inventory-thumb { display: grid; flex: 0 0 56px; width: 56px; height: 60px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #242030, #0b0b0d); color: var(--violet-2); font: 22px var(--display); }
.inventory-thumb img { width: 100%; height: 100%; object-fit: cover; }
.inventory-zero { color: var(--danger); }
.inventory-date { color: var(--muted); }
.inventory-arrow { color: var(--cyan); font-size: 16px; }
.inventory-empty { display: grid; justify-items: center; padding: 70px 20px; text-align: center; }
.inventory-empty > span { color: var(--violet-2); font: 70px var(--display); line-height: 1; }
.inventory-empty h2 { margin: 20px 0 0; font: 25px var(--display); text-transform: uppercase; }
.inventory-empty p { margin: 8px 0 25px; color: var(--muted); }
.inventory-pagination { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; color: var(--muted); font-size: 11px; }
.inventory-pagination > div { display: flex; gap: 24px; }
.inventory-pagination a { color: var(--text); border-bottom: 1px solid var(--violet-2); }
.editor-page .staff-head { margin-bottom: 36px; }
.editor-page .staff-head h1 { font-size: clamp(42px, 6vw, 88px); }
.editor-back { display: inline-block; margin-bottom: 38px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editor-back:hover { color: var(--cyan); }
.editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 24px; }
.editor-main { display: grid; gap: 18px; }
.editor-side { position: sticky; top: 112px; display: grid; gap: 14px; }
.editor-card { border: 1px solid var(--line); background: #0d0d10; }
.editor-card-head { display: flex; align-items: flex-start; gap: 17px; padding: 23px 26px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg, rgba(129,40,255,.13), transparent 60%); }
.editor-card-head > span { padding-top: 3px; color: var(--violet-2); font-size: 11px; font-weight: 700; }
.editor-card-head h2 { margin: 0; font: 24px var(--display); text-transform: uppercase; }
.editor-card-head p { margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.editor-card-body { padding: 26px; }
.editor-fields { display: grid; gap: 18px; }
.editor-fields .field { min-width: 0; }
.editor-fields .field label { display: block; margin-bottom: 7px; color: #d9d9df; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editor-fields input:not([type=checkbox]):not([type=file]), .editor-fields select, .editor-fields textarea { display: block; width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #37373f; border-radius: 0; background: #17171b; color: white; font-size: 13px; }
.editor-fields textarea { min-height: 110px; resize: vertical; }
.editor-fields input[type=file] { display: block; width: 100%; padding: 11px; border: 1px dashed #55545f; color: var(--muted); font-size: 11px; }
.editor-fields input:focus, .editor-fields select:focus, .editor-fields textarea:focus { outline: 2px solid var(--cyan); outline-offset: 1px; }
.editor-fields .help-text { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.editor-fields .errorlist, .editor-form > .form-alert .errorlist { margin: 5px 0 0; padding-left: 17px; color: var(--danger); font-size: 11px; }
.editor-check-field label { display: flex; align-items: center; gap: 10px; color: #dedee3; font-size: 11px; font-weight: 600; }
.editor-check-field input { width: 16px; height: 16px; accent-color: var(--violet); }
.editor-repeat-row { position: relative; margin-bottom: 14px; padding: 21px; border: 1px solid #32323a; background: #121216; }
.editor-repeat-row.is-deleted { opacity: .45; border-color: var(--danger); }
.editor-repeat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; }
.editor-repeat-top strong { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.editor-remove, .editor-add { border: 0; background: none; color: var(--cyan); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editor-remove { color: #ff9a9a; }
.editor-add { width: 100%; min-height: 45px; border: 1px dashed #625675; }
.editor-add:hover { background: rgba(129,40,255,.1); }
.editor-add:disabled { opacity: .45; cursor: not-allowed; }
.variant-fields { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.variant-fields .field:first-child, .variant-fields .field:nth-child(2) { grid-column: span 2; }
.variant-fields .editor-check-field { align-self: end; min-height: 44px; }
.image-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.editor-image-preview { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.editor-image-preview img { width: 72px; height: 74px; object-fit: cover; background: #222; }
.editor-publish-note { display: flex; gap: 10px; padding: 16px; border: 1px solid rgba(20,217,255,.28); background: rgba(20,217,255,.055); }
.editor-publish-note > span { color: var(--cyan); font-size: 11px; }
.editor-publish-note p { margin: 0; color: #c9c9ce; font-size: 11px; }
.editor-preview { display: block; padding: 7px 0; color: var(--cyan); font-size: 11px; font-weight: 700; text-align: center; text-transform: uppercase; }
.editor-save { width: 100%; }
.editor-archive-link { display: block; padding: 6px; color: #ff9a9a; font-size: 10px; text-align: center; text-decoration: underline; text-underline-offset: 4px; text-transform: uppercase; }
.archive-card { width: min(680px, 100%); margin: 20px auto 60px; padding: clamp(28px, 5vw, 55px); border: 1px solid rgba(255,86,86,.35); background: linear-gradient(130deg, rgba(255,86,86,.07), #111115 55%); }
.archive-icon { color: #ff9a9a; font: 65px var(--display); }
.archive-card h1 { margin: 12px 0 22px; font: clamp(35px, 5vw, 60px)/.95 var(--display); }
.archive-card > p:last-of-type { color: var(--muted); }
.archive-card > p strong { color: white; }
.archive-actions { display: flex; gap: 12px; margin-top: 32px; }
.staff-security-link { display: inline-block; margin-top: 12px; color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1100px) {
  .editor-layout { grid-template-columns: minmax(0, 1fr) 290px; }
  .variant-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inventory-list-head, .inventory-row { grid-template-columns: minmax(210px, 2fr) .75fr .6fr .5fr 24px; }
  .inventory-date, .inventory-list-head > span:nth-child(5) { display: none; }
}
@media (max-width: 800px) {
  .inventory-filters { flex-wrap: wrap; }
  .inventory-filters .inventory-search { flex-basis: 100%; }
  .inventory-filters select { min-width: 0; }
  .inventory-filters label:not(.inventory-search) { flex: 1; }
  .editor-layout { grid-template-columns: 1fr; }
  .editor-main { grid-row: 1; }
  .editor-side { position: static; grid-row: 2; }
  .inventory-list-head, .inventory-row { grid-template-columns: minmax(170px, 2fr) .75fr .5fr 24px; gap: 10px; padding-inline: 12px; }
  .inventory-list-head > span:nth-child(3), .inventory-row > span:nth-child(3) { display: none; }
}
@media (max-width: 550px) {
  .inventory-heading { align-items: flex-start; flex-direction: column; }
  .inventory-filters .button { flex: 1; }
  .inventory-list-head, .inventory-row { grid-template-columns: minmax(0, 1fr) auto 18px; }
  .inventory-list-head > span:nth-child(4), .inventory-row > strong:nth-child(4) { display: none; }
  .inventory-thumb { flex-basis: 45px; width: 45px; height: 51px; }
  .inventory-product strong { max-width: 155px; }
  .inventory-row { min-height: 74px; }
  .editor-card-head, .editor-card-body { padding: 19px; }
  .variant-fields, .image-fields { grid-template-columns: 1fr; }
  .variant-fields .field:first-child, .variant-fields .field:nth-child(2) { grid-column: auto; }
  .archive-actions { flex-direction: column; }
  .archive-actions .button, .archive-actions form { width: 100%; }
}

@media (max-width: 1180px) {
  .shell { width: min(100% - 40px, 1200px); }
  .header-inner { grid-template-columns: 220px 1fr auto; }
  .desktop-nav { gap: 20px; }
  .search-action span:last-child, .account-action span:last-child, .cart-action > span:nth-child(2) { display: none; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .product-grid-featured .product-card:nth-child(n+7) { display: none; }
  .story-copy { padding: 60px; }
  .shop-layout { grid-template-columns: 220px 1fr; gap: 35px; }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .cart-panel { gap: 40px; }
  .cart-line { grid-template-columns: 130px minmax(0,1fr) 80px 90px; }
  .checkout-grid { gap: 45px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .announcement { justify-content: flex-start; overflow: hidden; }
  .announcement span:nth-child(n+4) { display: none; }
  .header-inner { grid-template-columns: 54px 1fr auto; }
  .menu-button { display: grid; width: 42px; height: 42px; place-content: center; gap: 7px; padding: 0; border: 0; background: none; }
  .menu-button span { display: block; width: 23px; height: 1px; background: white; transition: transform .25s; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .brand-lockup { justify-self: center; }
  .brand-lockup img { width: 35px; height: 40px; }
  .brand-lockup b { font-size: 15px; }
  .brand-lockup small { display: none; }
  .desktop-nav, .search-action, .account-action { display: none; }
  .cart-action { border: 0; padding-right: 0; }
  .cart-action > span:first-child { font-size: 19px; }
  .hero { min-height: calc(88vh - 100px); }
  .hero-media { object-position: 62% center; }
  .hero-vignette { background: linear-gradient(0deg, rgba(4,4,7,.88) 0%, rgba(4,4,7,.4) 60%, rgba(4,4,7,.2)); }
  .hero-content { padding-bottom: 68px; }
  .hero-copy { max-width: 440px; }
  .hero-index { display: none; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid > div { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-auto-rows: 230px; }
  .category-card { grid-column: span 6; }
  .story-section { grid-template-columns: 1fr; }
  .story-image { min-height: 620px; }
  .story-copy { padding: 80px 30px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 30px; }
  .about-manifesto { grid-template-columns: 1fr; }
  .about-mark { min-height: 340px; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { border: 0; padding: 0; }
  .filter-heading { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .filter-heading button { display: block; }
  .filters form { display: none; padding: 20px; background: var(--panel); }
  .filters form.is-open { display: grid; }
  .filter-submit { display: inline-flex; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .cart-panel { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .checkout-heading { grid-template-columns: 1fr auto; }
  .checkout-heading > div { grid-column: 1/-1; grid-row: 2; margin-top: 36px; }
  .checkout-heading h1 { text-align: left; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; grid-row: 1; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-panel { min-height: 70vh; }
  .success-grid { grid-template-columns: 1fr; }
  .staff-columns { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .data-table { overflow-x: auto; }
  .data-table-head, .data-row { min-width: 820px; }
}

@media (max-width: 620px) {
  .shell { width: calc(100% - 28px); }
  .announcement { gap: 10px; padding-inline: 14px; font-size: 8px; }
  .announcement span:nth-child(n+3) { display: none; }
  .header-action { padding: 0 8px; }
  .hero { min-height: 690px; }
  .hero-media { object-position: 69% center; }
  .hero h1 { font-size: clamp(49px,15vw,72px); }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .hero-scroll { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid > div { min-height: 78px; border-left: 1px solid var(--line); }
  .section { padding-block: 80px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading h2, .category-heading h2, .story-copy h2 { font-size: 44px; }
  .product-grid { gap: 28px 9px; }
  .product-card-image { aspect-ratio: .76; }
  .product-card-body { display: grid; gap: 8px; }
  .product-card h3 { font-size: 13px; }
  .product-price { justify-items: start; }
  .category-section { padding-block: 80px; }
  .category-heading > p { font-size: 14px; }
  .category-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .category-card { grid-column: 1; }
  .story-image { min-height: 530px; }
  .story-copy { padding-inline: 20px; }
  .cta-section { padding: 100px 0; }
  .cta-inner h2 { font-size: 58px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); padding-block: 60px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { gap: 20px; }
  .footer-bottom span:last-child { text-align: right; }
  .page-hero, .shop-hero { padding-top: 90px; }
  .page-hero h1, .shop-hero h1, .page-heading h1 { font-size: 58px; }
  .about-manifesto { gap: 45px; padding-block: 80px; }
  .about-columns { grid-template-columns: 1fr; gap: 5px; }
  .about-image-band { min-height: 500px; }
  .about-image-band > div { flex-direction: column; gap: 6px; }
  .info-sections article { grid-template-columns: 40px 1fr; }
  .info-sections article > div { grid-template-columns: 1fr; gap: 15px; }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-toolbar { align-items: flex-start; gap: 12px; }
  .catalog-toolbar label { align-items: flex-start; flex-direction: column; }
  .product-detail { padding-bottom: 80px; }
  .product-main-image { aspect-ratio: .79; }
  .product-info h1 { font-size: 43px; }
  .variant-options { grid-template-columns: 1fr; }
  .product-promises { grid-template-columns: 1fr; }
  .cart-page { padding-block: 55px 90px; }
  .cart-table-head { display: none; }
  .cart-line { grid-template-columns: 92px 1fr 58px; gap: 12px; padding: 18px 0; }
  .cart-line-total { display: none; }
  .mobile-line-price { display: block; margin-top: 8px; }
  .cart-remove { right: 0; bottom: 18px; }
  .cart-quantity select { width: 56px; }
  .cart-summary { padding: 22px; }
  .checkout-page { padding-block: 40px 90px; }
  .checkout-lock { font-size: 7px; }
  .checkout-heading h1 { font-size: 56px; }
  .checkout-summary { padding: 20px; }
  .field-grid, .radio-cards { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .success-page { padding-block: 65px 100px; }
  .success-hero h1 { font-size: 64px; }
  .order-card, .next-steps { padding: 20px; }
  .success-actions { align-items: stretch; flex-direction: column; text-align: center; }
  .order-detail-layout { grid-template-columns: 1fr; }
  .auth-panel { padding: 70px 20px; }
  .auth-form-wrap h1 { font-size: 53px; }
  .account-page, .staff-page { padding-block: 55px 90px; }
  .account-head, .staff-head { flex-direction: column; gap: 24px; }
  .account-head h1, .staff-head h1 { font-size: 52px; }
  .staff-banner { grid-template-columns: 1fr auto; }
  .staff-banner > span { grid-column: 1/-1; }
  .account-order { grid-template-columns: 1fr auto; gap: 9px; }
  .account-order > span:nth-child(2), .account-order .status-pill { grid-column: 1; }
  .account-order > strong, .account-order > i { grid-column: 2; grid-row: 1; }
  .account-empty { grid-template-columns: 1fr; justify-items: start; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .metric-grid article { min-height: 135px; }
  .staff-table > a { grid-template-columns: 60px 1fr 75px; }
  .staff-table > a .status-pill { display: none; }
}

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