@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Inter+Tight:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --bg: #070708;
    --bg-deep: #040405;
    --surface: #0d0d0f;
    --surface-raised: #121215;
    --surface-soft: #17171a;
    --line: rgba(255, 255, 255, .095);
    --line-strong: rgba(255, 255, 255, .18);
    --text: #f3f1eb;
    --text-soft: #c9c5bc;
    --muted: #898783;
    --faint: #5e5d5b;
    --red: #f13b3f;
    --red-dark: #6f1217;
    --green: #43ca94;
    --yellow: #efbd5e;
    --blue: #75a7ff;
    --purple: #b795f8;
    --display: 'Inter Tight', 'Arial Narrow', Arial, sans-serif;
    --body: 'Manrope', system-ui, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;
    --radius-xs: 6px;
    --radius-sm: 9px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--red);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.narrow {
    width: min(1080px, calc(100% - 64px));
}

.muted {
    color: var(--muted);
}

.small-text {
    font-size: .82rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 18px;
    height: 1px;
    background: var(--red);
    content: '';
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .04em;
    transition: color .18s ease;
}

.back-link:hover {
    color: var(--text);
}

/* Shared brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: max-content;
}

.brand-mark {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    overflow: hidden;
    background: var(--red);
    color: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.brand-mark::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 0, 0, .58);
    content: '';
}

.brand-copy {
    display: grid;
    gap: 0;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .035em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .57rem;
    font-weight: 500;
    letter-spacing: .2em;
}

/* Public navigation */
.site-header {
    position: sticky;
    z-index: 60;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 8, .88);
    backdrop-filter: blur(22px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav > a,
.main-nav .link-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 0;
    background: transparent;
    color: var(--text-soft);
    font-size: .8rem;
    font-weight: 600;
    transition: color .18s ease, background .18s ease;
}

.main-nav > a:hover,
.main-nav .link-button:hover {
    color: #fff;
}

.main-nav form {
    display: flex;
}

.main-nav .nav-cta {
    margin-left: 7px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xs);
}

.main-nav .nav-cta:hover {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .04);
}

.cart-link {
    gap: 8px;
}

.count {
    min-width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    padding-inline: 5px;
    border-radius: 99px;
    background: var(--text);
    color: #0b0b0c;
    font-family: var(--mono);
    font-size: .6rem;
    font-weight: 600;
}

.menu-toggle,
.icon-button {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: var(--surface);
    color: var(--text);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    width: 17px;
    height: 1px;
    display: block;
    background: currentColor;
    content: '';
}

.menu-toggle {
    gap: 4px;
}

/* Alerts */
.flash-wrap {
    padding-top: 14px;
}

.flash {
    position: relative;
    padding: 14px 16px 14px 42px;
    border: 1px solid;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    font-size: .86rem;
}

.flash::before {
    position: absolute;
    top: 17px;
    left: 17px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    content: '';
}

.flash ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.flash.success {
    border-color: rgba(67, 202, 148, .28);
    background: rgba(67, 202, 148, .075);
    color: #a8efd2;
}

.flash.error {
    border-color: rgba(241, 59, 63, .3);
    background: rgba(241, 59, 63, .08);
    color: #ffb6b8;
}

/* Buttons */
.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid var(--red);
    border-radius: var(--radius-xs);
    background: var(--red);
    color: #fff;
    font-family: var(--body);
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: none;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button::after {
    font-size: .86rem;
    font-weight: 400;
    line-height: 1;
}

.hero .button::after,
.product-detail .button::after {
    content: '↗';
}

.button:hover {
    border-color: #ff5b5f;
    background: #ff4a4f;
    transform: translateY(-1px);
}

.button.secondary {
    border-color: var(--line-strong);
    background: transparent;
    color: var(--text);
}

.button.secondary:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .045);
}

.button.approve {
    border-color: #2ca877;
    background: #218b64;
}

.button.approve:hover {
    background: #2a9d72;
}

.button.small {
    min-height: 34px;
    padding-inline: 12px;
    font-size: .72rem;
}

.button.large {
    min-height: 54px;
    padding-inline: 24px;
    font-size: .84rem;
}

.button.full {
    width: 100%;
}

.link-button,
.danger-link {
    border: 0;
    background: none;
    color: inherit;
}

.danger-link {
    padding: 0;
    color: #f57c7f;
    font-size: .78rem;
}

/* Home hero */
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(255, 255, 255, .035) 50%, transparent calc(50% + 1px)),
        var(--bg-deep);
}

.hero::before {
    position: absolute;
    top: -260px;
    right: -230px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(241, 59, 63, .16);
    border-radius: 50%;
    content: '';
}

.hero::after {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 320px;
    height: 560px;
    background: linear-gradient(180deg, rgba(241, 59, 63, .11), transparent 78%);
    content: '';
    transform: rotate(34deg);
    transform-origin: top;
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
    padding-block: 72px;
}

.hero-copy {
    max-width: 740px;
}

.hero-index {
    margin: 0 0 30px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .65rem;
    letter-spacing: .12em;
}

.hero h1 {
    max-width: 820px;
    margin: 22px 0 0;
    font-family: var(--display);
    font-size: clamp(4.2rem, 7.3vw, 7.25rem);
    font-weight: 700;
    letter-spacing: -.068em;
    line-height: .82;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--red);
}

.hero-lead {
    max-width: 590px;
    margin: 34px 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.hero-note {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .04em;
}

.hero-showcase {
    position: relative;
    width: min(100%, 430px);
    justify-self: end;
}

.showcase-index {
    position: absolute;
    z-index: 3;
    top: -28px;
    right: 0;
    color: var(--faint);
    font-family: var(--mono);
    font-size: .63rem;
    letter-spacing: .12em;
    writing-mode: vertical-rl;
}

.showcase-card {
    position: relative;
    display: block;
    padding: 18px;
    border: 1px solid var(--line-strong);
    background: #0a0a0b;
    box-shadow: var(--shadow);
}

.showcase-card::before {
    position: absolute;
    z-index: 2;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    pointer-events: none;
    content: '';
}

.showcase-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(241, 59, 63, .24), transparent 45%),
        #151518;
}

.showcase-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.showcase-card:hover .showcase-art img {
    transform: scale(1.025);
}

.showcase-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--text);
    font-family: var(--display);
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -.07em;
}

.showcase-caption {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    padding: 18px 2px 2px;
}

.showcase-caption small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .57rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.showcase-caption strong {
    display: block;
    overflow: hidden;
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showcase-price {
    font-family: var(--mono);
    font-size: .78rem;
    white-space: nowrap;
}

.showcase-placeholder {
    min-height: 460px;
    display: grid;
    align-content: end;
    padding: 35px;
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(145deg, transparent 50%, rgba(241, 59, 63, .09)),
        var(--surface);
}

.showcase-placeholder span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .62rem;
    letter-spacing: .12em;
}

.showcase-placeholder strong {
    margin-top: 12px;
    font-family: var(--display);
    font-size: 3.3rem;
    line-height: .82;
}

.feature-strip {
    border-bottom: 1px solid var(--line);
    background: #09090a;
}

.feature-strip-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    border-right: 0;
}

.feature-item b {
    color: var(--red);
    font-family: var(--mono);
    font-size: .67rem;
    font-weight: 500;
}

.feature-item strong {
    display: block;
    font-family: var(--display);
    font-size: .83rem;
    letter-spacing: .02em;
}

.feature-item span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: .69rem;
}

/* Catalog */
.catalog,
.page-section,
.product-detail {
    padding: 96px 0;
}

.catalog {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .015), transparent 280px),
        var(--bg);
}

.section-head,
.page-title,
.panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.section-head h2,
.page-title h1,
.panel-heading h1 {
    margin: 8px 0 0;
    font-family: var(--display);
    font-size: clamp(2.4rem, 4.2vw, 4.25rem);
    font-weight: 650;
    letter-spacing: -.052em;
    line-height: .95;
}

.page-title p,
.panel-heading p {
    max-width: 600px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .86rem;
}

.catalog-tools {
    display: grid;
    gap: 20px;
    margin-bottom: 38px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tab {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .63rem;
    transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.category-tab:hover,
.category-tab.active {
    border-color: var(--line-strong);
    background: var(--surface-raised);
    color: var(--text);
}

.category-tab.active::before {
    width: 5px;
    height: 5px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--red);
    content: '';
}

.search-form,
.toolbar {
    display: flex;
    gap: 8px;
}

.search-form {
    width: min(100%, 530px);
}

.search-form input {
    min-width: 260px;
}

.search-form input,
.search-form select,
.toolbar input,
.toolbar select,
input,
select,
textarea {
    width: 100%;
    min-height: 45px;
    padding: 11px 13px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xs);
    outline: none;
    background: #0d0d10;
    color: var(--text);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.search-form input,
.search-form select,
.toolbar input,
.toolbar select {
    width: auto;
}

input::placeholder,
textarea::placeholder {
    color: #666561;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(255, 255, 255, .24);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(241, 59, 63, .72);
    background: #111114;
    box-shadow: 0 0 0 3px rgba(241, 59, 63, .09);
}

textarea {
    resize: vertical;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 22px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(241, 59, 63, .1), transparent 48%),
        #101013;
}

.product-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, .32));
    pointer-events: none;
    content: '';
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .48s cubic-bezier(.2, .7, .2, 1), filter .48s ease;
}

.product-card:hover .product-image img {
    filter: contrast(1.04);
    transform: scale(1.035);
}

.product-image > span {
    color: #353538;
    font-family: var(--display);
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -.06em;
}

.product-image em {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    background: rgba(7, 7, 8, .84);
    color: var(--text);
    font-family: var(--mono);
    font-size: .55rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .1em;
    backdrop-filter: blur(10px);
}

.product-card-body {
    padding: 17px 2px 0;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-meta span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card h3 {
    margin: 8px 0 7px;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 650;
    letter-spacing: -.025em;
    line-height: 1.1;
}

.product-card h3 a {
    transition: color .18s ease;
}

.product-card h3 a:hover {
    color: #fff;
}

.product-card p {
    height: 43px;
    overflow: hidden;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.65;
}

.price-row {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.price-row strong {
    font-family: var(--mono);
    font-size: .82rem;
    font-weight: 500;
}

.price-row del,
.detail-price del {
    display: block;
    color: var(--faint);
    font-size: .66rem;
    font-weight: 400;
}

.card-add {
    min-height: 34px;
    padding-inline: 12px;
    border-color: var(--line-strong);
    background: transparent;
    color: var(--text);
}

.card-add:hover {
    border-color: var(--red);
    background: var(--red);
}

.card-add::after {
    content: '+';
    font-family: var(--mono);
}

.current-cover {
    width: 120px;
    height: 120px;
    display: block;
    margin: 2px 0 6px;
    border: 1px solid var(--line-strong);
    object-fit: cover;
}

.pagination {
    margin-top: 44px;
}

.pagination nav > div:first-child {
    display: none;
}

.pagination nav > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
}

.pagination nav span,
.pagination nav a {
    padding: 8px;
}

.empty-state {
    min-height: 260px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 50px 24px;
    border: 1px dashed var(--line-strong);
    background: rgba(255, 255, 255, .012);
    text-align: center;
}

.empty-state h2,
.empty-state h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 1.8rem;
    letter-spacing: -.03em;
}

.empty-state p {
    margin: 0 0 20px;
    color: var(--muted);
}

/* Product detail */
.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    align-items: start;
    gap: clamp(45px, 7vw, 94px);
}

.detail-media {
    position: relative;
}

.detail-media::before {
    position: absolute;
    z-index: -1;
    top: -18px;
    left: -18px;
    width: 80px;
    height: 80px;
    border-top: 1px solid var(--red);
    border-left: 1px solid var(--red);
    content: '';
}

.detail-image {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(145deg, rgba(241, 59, 63, .1), transparent 50%),
        var(--surface);
    box-shadow: var(--shadow);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image span {
    color: #343437;
    font-family: var(--display);
    font-size: 6rem;
    font-weight: 800;
}

.detail-copy {
    position: sticky;
    top: 116px;
    padding-top: 6px;
}

.detail-copy h1 {
    margin: 15px 0 19px;
    font-family: var(--display);
    font-size: clamp(3.2rem, 5.5vw, 5.6rem);
    font-weight: 650;
    letter-spacing: -.064em;
    line-height: .88;
}

.delivery-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 7px 9px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: var(--mono);
    font-size: .59rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.delivery-badge::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(67, 202, 148, .45);
    content: '';
}

.lead {
    max-width: 560px;
    color: var(--text-soft);
    font-size: .97rem;
    line-height: 1.8;
}

.detail-price {
    display: flex;
    align-items: end;
    gap: 10px;
    margin: 30px 0 22px;
    font-family: var(--mono);
    font-size: 1.55rem;
    font-weight: 500;
}

.trust-list {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}

.trust-list span {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .75rem;
}

.trust-list span::before {
    position: absolute;
    left: 2px;
    color: var(--red);
    content: '—';
}

.description-card {
    margin-top: 86px;
    padding: 42px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.description-card .eyebrow {
    margin-bottom: 24px;
}

.rich-text {
    max-width: 850px;
    color: var(--text-soft);
    font-size: .9rem;
    line-height: 1.9;
    white-space: normal;
}

/* Cart, checkout and account */
.cart-layout,
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 22px;
}

.cart-list,
.order-list {
    display: grid;
    gap: 8px;
}

.cart-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px minmax(150px, 1fr) 120px auto auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.cart-thumb {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--surface-soft);
    font-family: var(--display);
    font-weight: 700;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cart-info a {
    overflow: hidden;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-info span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .67rem;
}

.quantity-form {
    display: flex;
    align-items: center;
    gap: 7px;
}

.quantity-form input {
    width: 54px;
    min-height: 36px;
    padding: 7px;
}

.quantity-form button {
    border: 0;
    background: none;
    color: var(--muted);
    font-size: .67rem;
}

.summary-card,
.panel-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: none;
}

.summary-card {
    position: sticky;
    top: 106px;
}

.summary-card h2,
.panel-card h2 {
    margin: 0 0 22px;
    font-family: var(--display);
    font-size: 1.22rem;
    font-weight: 650;
    letter-spacing: -.025em;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: .79rem;
}

.summary-line span {
    color: var(--muted);
}

.summary-total {
    padding: 21px 0;
    border-bottom: 0;
    font-size: .96rem;
}

.form-stack {
    display: grid;
    gap: 17px;
}

.form-stack label,
.form-section label {
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    font-size: .75rem;
    font-weight: 600;
}

.form-stack small,
.form-section small {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 400;
    line-height: 1.5;
}

.check {
    display: flex !important;
    align-items: center;
    gap: 9px !important;
}

.check input {
    width: 16px;
    min-height: 16px;
    accent-color: var(--red);
}

.order-row {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color .18s ease, background .18s ease;
}

.order-row:hover {
    border-color: var(--line-strong);
    background: var(--surface-raised);
}

.order-row > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-row > div:last-child {
    align-items: flex-end;
}

.order-row span:not(.status) {
    color: var(--muted);
    font-size: .72rem;
}

.status {
    width: max-content;
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: rgba(255, 255, 255, .035);
    color: var(--text-soft);
    font-family: var(--mono);
    font-size: .57rem;
    font-weight: 500;
    white-space: nowrap;
}

.status-pending {
    border-color: rgba(239, 189, 94, .25);
    background: rgba(239, 189, 94, .08);
    color: #f0ca80;
}

.status-reported {
    border-color: rgba(117, 167, 255, .25);
    background: rgba(117, 167, 255, .08);
    color: #a9c8ff;
}

.status-paid,
.status-preparing {
    border-color: rgba(183, 149, 248, .25);
    background: rgba(183, 149, 248, .08);
    color: #cab1fa;
}

.status-completed {
    border-color: rgba(67, 202, 148, .25);
    background: rgba(67, 202, 148, .08);
    color: #91e2c2;
}

.status-canceled {
    border-color: rgba(241, 59, 63, .25);
    background: rgba(241, 59, 63, .08);
    color: #ff9a9d;
}

.download-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.download-row > div {
    display: grid;
}

.download-row span {
    color: var(--muted);
    font-size: .74rem;
}

.payment-card dl,
.panel-card dl {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 10px;
    margin: 0 0 22px;
}

.payment-card dt,
.panel-card dt {
    color: var(--muted);
    font-size: .7rem;
}

.payment-card dd,
.panel-card dd {
    min-width: 0;
    margin: 0;
    font-size: .78rem;
    font-weight: 600;
}

.iban {
    word-break: break-all;
}

.note-box {
    padding: 14px;
    border-left: 2px solid var(--red);
    background: rgba(255, 255, 255, .025);
    color: var(--muted);
    font-size: .75rem;
}

.note-box p {
    margin: 6px 0 0;
}

/* Authentication */
.auth-shell {
    position: relative;
    min-height: calc(100vh - 179px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 76px 20px;
    background:
        linear-gradient(90deg, transparent 49.94%, rgba(255, 255, 255, .04) 50%, transparent 50.06%),
        var(--bg-deep);
}

.auth-shell::before {
    position: absolute;
    top: 13%;
    left: calc(50% - 300px);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(241, 59, 63, .13);
    border-radius: 50%;
    content: '';
}

.auth-card {
    position: relative;
    z-index: 2;
    width: min(465px, 100%);
    padding: 38px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: rgba(13, 13, 15, .96);
    box-shadow: var(--shadow);
}

.auth-card h1 {
    margin: 10px 0 8px;
    font-family: var(--display);
    font-size: 2.35rem;
    font-weight: 650;
    letter-spacing: -.045em;
    line-height: 1;
}

.auth-card > p {
    margin: 0 0 26px;
    font-size: .79rem;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 21px;
    color: var(--muted);
    font-size: .75rem;
}

.auth-links a {
    color: var(--text);
}

.setup-badge {
    width: max-content;
    display: inline-flex;
    padding: 6px 8px;
    border: 1px solid rgba(67, 202, 148, .28);
    background: rgba(67, 202, 148, .07);
    color: #91e2c2;
    font-family: var(--mono);
    font-size: .57rem;
    font-weight: 500;
    letter-spacing: .1em;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: var(--bg-deep);
}

.footer-main {
    min-height: 210px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.footer-statement {
    max-width: 520px;
    margin-top: 18px;
    color: var(--muted);
    font-size: .76rem;
}

.footer-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
}

.footer-meta div {
    min-height: 96px;
    display: grid;
    align-content: center;
    padding: 18px;
}

.footer-meta div + div {
    border-left: 1px solid var(--line);
}

.footer-meta small,
.footer-meta strong {
    display: block;
}

.footer-meta small {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .56rem;
    letter-spacing: .1em;
}

.footer-meta strong {
    margin-top: 6px;
    font-family: var(--display);
    font-size: .9rem;
    font-weight: 600;
}

.footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--faint);
    font-family: var(--mono);
    font-size: .57rem;
    letter-spacing: .06em;
}

/* Admin shell */
.panel-body {
    min-height: 100vh;
    display: flex;
    background: #09090a;
}

.sidebar {
    position: fixed;
    z-index: 70;
    inset: 0 auto 0 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    padding: 28px 20px 20px;
    border-right: 1px solid var(--line);
    background: var(--bg-deep);
}

.panel-brand {
    margin: 0 8px 38px;
}

.sidebar-label {
    padding: 0 11px 11px;
    color: var(--faint);
    font-family: var(--mono);
    font-size: .56rem;
    font-weight: 500;
    letter-spacing: .16em;
}

.sidebar-nav {
    display: grid;
    gap: 3px;
}

.sidebar-nav a,
.sidebar-bottom a,
.sidebar-bottom button {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 11px;
    border: 0;
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--muted);
    text-align: left;
    font-size: .76rem;
    font-weight: 600;
    transition: color .18s ease, background .18s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active,
.sidebar-bottom a:hover,
.sidebar-bottom button:hover {
    background: rgba(255, 255, 255, .045);
    color: var(--text);
}

.sidebar-nav a.active {
    position: relative;
}

.sidebar-nav a.active::after {
    position: absolute;
    top: 13px;
    right: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    content: '';
    box-shadow: 0 0 12px rgba(241, 59, 63, .55);
}

.nav-icon {
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #6e6d6a;
}

.nav-icon svg {
    width: 17px;
    height: 17px;
}

.sidebar-nav a.active .nav-icon,
.sidebar-nav a:hover .nav-icon {
    color: var(--text);
}

.sidebar-bottom {
    display: grid;
    gap: 3px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.sidebar-backdrop {
    display: none;
}

.panel-main {
    width: calc(100% - 280px);
    margin-left: 280px;
}

.panel-topbar {
    position: sticky;
    z-index: 30;
    top: 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 38px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 10, .9);
    backdrop-filter: blur(18px);
}

.panel-topbar-context {
    color: var(--faint);
    font-family: var(--mono);
    font-size: .58rem;
    letter-spacing: .08em;
}

.panel-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.panel-user-meta {
    display: grid;
    justify-items: end;
    line-height: 1.25;
}

.panel-user-meta small {
    color: var(--faint);
    font-family: var(--mono);
    font-size: .53rem;
    letter-spacing: .08em;
}

.panel-user-meta strong {
    font-size: .72rem;
    font-weight: 600;
}

.panel-avatar {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    font-family: var(--mono);
    font-size: .58rem;
}

.panel-content {
    width: min(100%, 1500px);
    margin-inline: auto;
    padding: 48px;
}

.panel-heading {
    align-items: center;
    margin-bottom: 32px;
}

.panel-heading h1 {
    font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.stat-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
    position: relative;
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.stat-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 1px;
    background: var(--line-strong);
    content: '';
}

.stat-card.accent {
    border-color: rgba(241, 59, 63, .25);
    background:
        linear-gradient(145deg, rgba(241, 59, 63, .075), transparent 68%),
        var(--surface);
}

.stat-card.accent::before {
    width: 100%;
    background: var(--red);
}

.stat-card span,
.stat-card small {
    display: block;
    color: var(--muted);
    font-size: .67rem;
}

.stat-card strong {
    display: block;
    margin: 8px 0;
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 650;
    letter-spacing: -.04em;
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.card-head h2,
.card-head h3 {
    margin: 0;
}

.card-head a,
.card-head span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .61rem;
}

.table-wrap {
    width: 100%;
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .76rem;
}

th {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--faint);
    font-family: var(--mono);
    font-size: .55rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-align: left;
    text-transform: uppercase;
}

td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    color: var(--text-soft);
    vertical-align: middle;
}

tbody tr {
    transition: background .15s ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, .02);
}

td small {
    display: block;
    margin-top: 3px;
    color: var(--faint);
    font-size: .63rem;
}

td.actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
    white-space: nowrap;
}

.table-actions form {
    margin: 0;
}

td a {
    color: var(--text);
    font-size: .72rem;
}

.toolbar {
    margin-bottom: 20px;
}

.toolbar input {
    min-width: 260px;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
    gap: 42px;
}

.form-section {
    display: grid;
    align-content: start;
    gap: 17px;
}

.form-section h2 {
    margin: 0 0 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.two-panel {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.two-panel.wide-first {
    grid-template-columns: minmax(0, 1fr) 340px;
}

.stack-list {
    display: grid;
    gap: 10px;
}

.compact-form {
    display: grid;
    gap: 14px;
}

.inline-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.inline-controls > input {
    width: 80px;
}

.role-form {
    display: flex;
    gap: 8px;
}

.role-form select {
    min-width: 120px;
}

hr {
    margin: 5px 0 18px;
    border: 0;
    border-top: 1px solid var(--line);
}

.split {
    align-items: center;
}

/* Responsive */
@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(310px, .62fr);
        gap: 55px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-panel {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .container,
    .narrow {
        width: min(100% - 36px, 1240px);
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 14px 18px 20px;
        border-bottom: 1px solid var(--line);
        background: #09090a;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
        flex-direction: column;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .main-nav .link-button {
        width: 100%;
        min-height: 45px;
        padding-inline: 10px;
    }

    .main-nav .nav-cta {
        margin: 5px 0 0;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        background: var(--bg-deep);
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 86px 0;
    }

    .hero h1 {
        font-size: clamp(4.1rem, 16vw, 6.5rem);
    }

    .hero-showcase {
        width: min(100%, 540px);
        justify-self: start;
    }

    .feature-strip-inner {
        grid-template-columns: 1fr;
    }

    .feature-item,
    .feature-item:first-child {
        min-height: 78px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .feature-item:last-child {
        border-bottom: 0;
    }

    .section-head,
    .page-title,
    .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-form,
    .toolbar {
        width: 100%;
        flex-direction: column;
    }

    .search-form input,
    .search-form select,
    .toolbar input,
    .toolbar select {
        width: 100%;
        min-width: 0;
    }

    .detail-grid,
    .cart-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .detail-copy {
        position: static;
    }

    .detail-copy h1 {
        font-size: clamp(3.4rem, 12vw, 5.2rem);
    }

    .description-card {
        margin-top: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform .22s ease;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-backdrop {
        position: fixed;
        z-index: 65;
        inset: 0;
        display: block;
        border: 0;
        background: rgba(0, 0, 0, .62);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
    }

    .panel-body.sidebar-is-open .sidebar-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .panel-main {
        width: 100%;
        margin-left: 0;
    }

    .panel-topbar {
        padding-inline: 18px;
    }

    .panel-topbar-context {
        display: none;
    }

    .icon-button {
        display: grid;
    }

    .panel-content {
        padding: 32px 18px;
    }

    .two-panel.wide-first {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1240px);
    }

    .nav-wrap {
        min-height: 70px;
    }

    .main-nav {
        top: 70px;
    }

    .brand-copy strong {
        font-size: .8rem;
    }

    .hero-grid {
        gap: 48px;
        padding: 68px 0;
    }

    .hero-index {
        margin-bottom: 22px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16.5vw, 4.5rem);
    }

    .hero-lead {
        font-size: .88rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-note {
        padding-left: 2px;
    }

    .showcase-card {
        padding: 12px;
    }

    .showcase-caption {
        padding-top: 14px;
    }

    .catalog,
    .page-section,
    .product-detail {
        padding: 70px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .category-tab {
        flex: 0 0 auto;
    }

    .detail-media::before {
        display: none;
    }

    .detail-image span {
        font-size: 4rem;
    }

    .description-card {
        padding: 26px;
    }

    .cart-item {
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 11px;
    }

    .cart-thumb {
        width: 58px;
        height: 58px;
    }

    .cart-item .quantity-form {
        grid-column: 2;
    }

    .cart-item > strong {
        grid-row: 1;
        grid-column: 3;
        font-size: .75rem;
    }

    .cart-item > form:last-child {
        grid-row: 2;
        grid-column: 3;
    }

    .summary-card,
    .panel-card,
    .auth-card {
        padding: 22px;
    }

    .order-row {
        align-items: flex-start;
    }

    .order-row > div:last-child {
        align-items: flex-end;
    }

    .footer-meta {
        grid-template-columns: 1fr;
    }

    .footer-meta div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .panel-heading h1 {
        font-size: 2.5rem;
    }

    .stat-grid,
    .stat-grid.three {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 135px;
    }

    .two-cols {
        grid-template-columns: 1fr;
    }

    .inline-controls,
    .role-form {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-controls > input,
    .role-form select {
        width: 100%;
    }

    .table-wrap {
        width: calc(100% + 20px);
        margin-inline: -10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* v1.4 — bright, trustworthy commerce system */
.public-shell {
    --bg: #f5f7fb;
    --bg-deep: #eef2f7;
    --surface: #ffffff;
    --surface-raised: #ffffff;
    --surface-soft: #f1f4f9;
    --line: #e2e7ef;
    --line-strong: #cbd4e1;
    --text: #111827;
    --text-soft: #344054;
    --muted: #667085;
    --faint: #98a2b3;
    --red: #2158d5;
    --red-dark: #173b91;
    --green: #16865c;
    --yellow: #f5a524;
    --shadow: 0 24px 70px rgba(24, 39, 75, .12);
    color-scheme: light;
    background:
        radial-gradient(circle at 12% 4%, rgba(62, 108, 238, .08), transparent 28rem),
        #f7f9fc;
    color: var(--text);
}

.public-shell .market-notice {
    border: 0;
    background: #173b91;
    color: #fff;
}

.public-shell .site-header {
    border-color: rgba(17, 24, 39, .08);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 8px 32px rgba(29, 48, 86, .06);
}

.public-shell .brand-mark {
    border-radius: 5px;
    background: linear-gradient(145deg, #326ce5, #173b91);
    clip-path: none;
}

.public-shell .brand-mark::after {
    border-color: rgba(255, 255, 255, .72);
}

.public-shell .main-nav > a:hover,
.public-shell .main-nav .link-button:hover,
.public-shell .market-nav a:hover {
    color: #1746b5;
}

.public-shell .count {
    background: #2158d5;
    color: #fff;
}

.public-shell .market-hero {
    min-height: 720px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 76% 42%, rgba(56, 111, 237, .15), transparent 25rem),
        linear-gradient(135deg, #fff 0%, #f3f7ff 58%, #eef4ff 100%);
}

.public-shell .market-hero::before {
    opacity: .45;
    background-image: linear-gradient(rgba(38, 74, 145, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 74, 145, .055) 1px, transparent 1px);
}

.public-shell .release-label,
.public-shell .market-kicker,
.public-shell .section-code {
    color: #2158d5;
}

.public-shell .market-hero h1 {
    max-width: 830px;
    color: #101828;
    letter-spacing: -.055em;
}

.public-shell .market-hero h1 span {
    color: #2158d5;
}

.public-shell .market-lead,
.public-shell .market-section-head > div > p {
    color: #536176;
}

.public-shell .button {
    border-color: #2158d5;
    background: #2158d5;
    color: #fff;
    box-shadow: 0 10px 24px rgba(33, 88, 213, .2);
}

.public-shell .button:hover {
    border-color: #1746b5;
    background: #1746b5;
    box-shadow: 0 14px 30px rgba(33, 88, 213, .27);
    transform: translateY(-2px);
}

.public-shell .button.secondary {
    border-color: #d2d9e6;
    background: #fff;
    color: #27364d;
    box-shadow: none;
}

.public-shell .market-trust-row {
    border-color: #dfe5ef;
    color: #475467;
}

.public-shell .market-trust-row b {
    color: #16865c;
}

.public-shell .featured-product,
.public-shell .market-product-card {
    border: 1px solid #e2e8f1;
    background: #fff;
    box-shadow: 0 18px 50px rgba(35, 55, 95, .1);
}

.public-shell .featured-product {
    border-radius: 24px;
    transform: rotate(1.2deg);
}

.public-shell .featured-art {
    background: #eef3fb;
}

.public-shell .featured-art img,
.public-shell .market-product-card .product-image img,
.public-shell .commerce-art img {
    transition: transform .6s cubic-bezier(.2, .75, .25, 1), filter .35s ease;
}

.public-shell .featured-product:hover .featured-art img {
    transform: scale(1.025) rotate(-.5deg);
}

.public-shell .featured-info,
.public-shell .featured-topline {
    border-color: #e5eaf1;
    color: #344054;
}

.public-shell .public-shell .featured-buy button {
    background: #2158d5;
}

.public-shell .market-catalog {
    background: #f7f9fc;
}

.public-shell .market-search,
.public-shell .category-tabs {
    border-color: #dfe5ee;
    background: #fff;
    box-shadow: 0 9px 28px rgba(35, 55, 95, .055);
}

.public-shell input,
.public-shell select,
.public-shell textarea {
    border-color: #d8dee9;
    background: #fff;
    color: #152238;
}

.public-shell .category-tab {
    color: #5c6879;
}

.public-shell .category-tab.active {
    background: #eaf0ff;
    color: #1746b5;
}

.public-shell .market-product-card {
    overflow: hidden;
    border-radius: 18px;
    transition: transform .42s cubic-bezier(.2, .8, .2, 1), box-shadow .42s ease, border-color .3s ease;
}

.public-shell .market-product-card:hover {
    border-color: #cbd7ef;
    box-shadow: 0 25px 65px rgba(35, 55, 95, .16);
    transform: translateY(-7px);
}

.public-shell .market-product-card .product-image {
    background: linear-gradient(145deg, #f5f7fb, #edf2f8);
}

.public-shell .market-product-card:hover .product-image img {
    transform: scale(1.045) translateY(-2px);
}

.public-shell .product-view {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .9);
    color: #172b4d;
    backdrop-filter: blur(10px);
}

.public-shell .product-card-body,
.public-shell .market-product-card .product-meta {
    color: #667085;
}

.public-shell .market-product-card h3 {
    color: #101828;
}

.public-shell .product-proof,
.public-shell .purchase-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 25px;
    color: #344054;
    font-size: .78rem;
}

.public-shell .proof-stars {
    color: #f5a524;
    font-size: .8rem;
    letter-spacing: .05em;
}

.public-shell .product-proof small {
    color: #667085;
}

.public-shell .product-proof i,
.public-shell .purchase-proof i {
    margin-left: 5px;
    padding-left: 10px;
    border-left: 1px solid #d9e0ea;
    color: #16865c;
    font-style: normal;
    font-weight: 700;
}

.public-shell .store-standards {
    background: #fff;
    color: #101828;
}

.public-shell .product-system {
    background:
        radial-gradient(circle at 12% 14%, rgba(77, 128, 231, .12), transparent 31%),
        radial-gradient(circle at 88% 84%, rgba(121, 163, 241, .13), transparent 29%),
        linear-gradient(145deg, #f4f7fc 0%, #fbfcff 52%, #edf3fc 100%);
    color: #101828;
}

.public-shell .standards-grid article {
    border-color: #e1e7ef;
    background: #f8fafc;
}

.public-shell .system-grid {
    gap: 16px;
    border: 0;
}

.public-shell .system-grid article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(164, 181, 209, .42);
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 8px 24px rgba(48, 71, 111, .06);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    transition:
        transform .24s ease,
        border-color .24s ease,
        background .24s ease,
        box-shadow .24s ease;
}

.public-shell .system-grid article::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, .94), rgba(234, 241, 255, .76)),
        radial-gradient(circle at 88% 12%, rgba(50, 103, 208, .18), transparent 37%);
    content: "";
    opacity: 0;
    transition: opacity .24s ease;
}

.public-shell .system-grid article:hover {
    border-color: rgba(83, 124, 205, .48);
    background: rgba(255, 255, 255, .9);
    box-shadow:
        inset 0 1px 0 #fff,
        0 20px 42px rgba(49, 82, 145, .15);
    transform: translateY(-4px);
}

.public-shell .system-grid article:hover::before {
    opacity: 1;
}

.public-shell .system-grid article:hover span {
    color: #2358bb;
}

.public-shell .system-grid article:hover h3 {
    color: #101828;
}

.public-shell .system-grid article:hover p {
    color: #5f6c80;
}

.public-shell .how-it-works,
.public-shell .product-narrative,
.public-shell .delivery-flow,
.public-shell .product-faq,
.public-shell .related-products {
    background: #f4f7fb;
    color: #101828;
}

.public-shell .market-cta {
    background: linear-gradient(120deg, #173b91, #2d65dc);
    color: #fff;
}

.public-shell .market-cta .button {
    border-color: #fff;
    background: #fff;
    color: #173b91;
}

.public-shell .product-commerce {
    background: linear-gradient(145deg, #f6f9ff, #fff 55%, #eef4ff);
    color: #101828;
}

.public-shell .commerce-art,
.public-shell .purchase-panel {
    border-color: #e0e6ef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(35, 55, 95, .11);
}

.public-shell .purchase-proof {
    margin: -5px 0 18px;
}

.public-shell .purchase-proof a {
    color: #2158d5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.public-shell .product-reviews {
    padding: 100px 0;
    border-top: 1px solid #e1e7ef;
    background: #fff;
    color: #101828;
}

.public-shell .reviews-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.public-shell .reviews-summary h2 {
    margin: 10px 0 22px;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.public-shell .review-score {
    display: flex;
    align-items: center;
    gap: 15px;
}

.public-shell .review-score > strong {
    font-family: var(--display);
    font-size: 3.7rem;
    line-height: 1;
}

.public-shell .review-score > span {
    display: grid;
    gap: 3px;
}

.public-shell .review-score small {
    color: #667085;
}

.public-shell .demo-disclosure {
    max-width: 440px;
    margin-top: 24px;
    padding: 13px 15px;
    border: 1px solid #d9e4f5;
    border-radius: 10px;
    background: #f5f8ff;
    color: #52637c;
    font-size: .77rem;
}

.public-shell .review-cards {
    display: grid;
    gap: 15px;
}

.public-shell .review-card {
    padding: 25px;
    border: 1px solid #e0e6ef;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(35, 55, 95, .07);
}

.public-shell .review-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-shell .review-card em {
    padding: 4px 8px;
    border-radius: 99px;
    background: #eef3ff;
    color: #2158d5;
    font-size: .65rem;
    font-style: normal;
    font-weight: 700;
}

.public-shell .review-card p {
    color: #344054;
    font-size: .98rem;
}

.public-shell .site-footer {
    border-color: #dce3ed;
    background: #0f1f3d;
    color: #f4f7fb;
}

.public-shell .cart-drawer {
    background: #fff;
    color: #101828;
    box-shadow: -20px 0 70px rgba(19, 34, 64, .2);
    transition: transform .42s cubic-bezier(.2, .82, .2, 1), visibility .42s;
}

.public-shell .cart-backdrop {
    background: rgba(14, 29, 55, .28);
    backdrop-filter: blur(4px);
}

/* Motion system: quick, soft and GPU-friendly */
.public-shell [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .62s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.public-shell [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.public-shell .market-catalog > .container {
    transition: opacity .2s ease, transform .24s ease;
}

.public-shell .market-catalog.is-loading > .container {
    opacity: .45;
    transform: translate3d(0, 5px, 0);
}

.public-shell .market-product-card:nth-child(2) { --reveal-delay: 70ms; }
.public-shell .market-product-card:nth-child(3) { --reveal-delay: 140ms; }
.public-shell .market-product-card:nth-child(4) { --reveal-delay: 210ms; }

@media (max-width: 860px) {
    .public-shell .market-hero {
        min-height: auto;
    }

    .public-shell .reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .public-shell .featured-art img,
    .public-shell .market-product-card,
    .public-shell .market-product-card .product-image img,
    .public-shell .cart-drawer {
        transition-duration: .01ms !important;
    }
}

/* ==========================================================================
   SUICIDEHOTLINE STORE 1.2 — commerce storefront
   Public-facing components are scoped so the admin and seller workspaces keep
   their compact operational layout.
   ========================================================================== */

.public-shell {
    --paper: #eeece5;
    --paper-deep: #e5e2da;
    --ink: #111113;
    --ink-soft: #5f5c57;
    background: #080809;
}

.public-shell.cart-is-open {
    overflow: hidden;
}

.public-shell .container {
    width: min(1320px, calc(100% - 72px));
}

.market-notice {
    height: 29px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: var(--red);
    color: #fff;
}

.market-notice-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: .54rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.public-shell .site-header {
    top: 0;
    background: rgba(8, 8, 9, .91);
}

.public-shell .nav-wrap {
    min-height: 74px;
}

.public-shell .brand-mark {
    width: 17px;
    height: 17px;
}

.public-shell .brand-copy strong {
    font-size: .86rem;
    letter-spacing: .08em;
}

.public-shell .brand-copy small {
    font-size: .5rem;
    letter-spacing: .18em;
}

.market-nav {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 28px;
    transform: translateX(-50%);
}

.market-nav a {
    position: relative;
    color: #aaa7a0;
    font-size: .72rem;
    font-weight: 650;
    transition: color .18s ease;
}

.market-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--red);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

.market-nav a:hover {
    color: #fff;
}

.market-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.public-shell .main-nav {
    gap: 2px;
}

.public-shell .main-nav > a,
.public-shell .main-nav .link-button {
    padding-inline: 10px;
    font-size: .7rem;
}

.public-shell .main-nav .nav-cta {
    display: none;
}

.public-shell .cart-link {
    min-height: 40px;
    margin-left: 8px;
    padding: 0 7px 0 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 99px;
}

.public-shell .cart-link:hover {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .04);
}

.public-shell .cart-link .count {
    min-width: 25px;
    height: 25px;
    background: var(--red);
    color: #fff;
}

.mobile-actions,
.mobile-cart {
    display: none;
}

.public-shell .flash-wrap {
    position: fixed;
    z-index: 180;
    top: 118px;
    left: 50%;
    width: min(520px, calc(100% - 30px));
    padding: 0;
    pointer-events: none;
    transform: translateX(-50%);
}

.public-shell .flash {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(15, 15, 17, .96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .42);
    color: #fff;
    backdrop-filter: blur(18px);
}

/* Home / product-led hero */
.market-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 82% 25%, rgba(241, 59, 63, .12), transparent 26%),
        linear-gradient(90deg, #070708 0 55%, #0b0b0d 55% 100%);
}

.market-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 55%;
    width: 1px;
    background: rgba(255, 255, 255, .06);
    content: '';
}

.market-hero-grid {
    min-height: 730px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .78fr);
    align-items: center;
    gap: clamp(60px, 7vw, 112px);
    padding-block: 78px;
}

.market-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.release-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 54px;
    color: #696763;
    font-family: var(--mono);
    font-size: .58rem;
    letter-spacing: .1em;
}

.release-label span {
    color: #aaa7a0;
}

.release-label b {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .13);
    font-weight: 500;
}

.market-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 19px;
    color: #b1aea7;
    font-family: var(--mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.market-kicker::before {
    width: 24px;
    height: 2px;
    background: var(--red);
    content: '';
}

.market-hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4.5rem, 7.3vw, 7.75rem);
    font-weight: 720;
    letter-spacing: -.07em;
    line-height: .83;
}

.market-hero h1 span {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(243, 241, 235, .58);
}

.market-lead {
    max-width: 610px;
    margin: 34px 0 0;
    color: #aaa7a0;
    font-size: .94rem;
    line-height: 1.85;
}

.market-hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 34px;
}

.market-hero-actions .button span,
.market-cta .button span {
    font-family: var(--mono);
    font-weight: 400;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #d4d1ca;
    font-size: .72rem;
    font-weight: 650;
}

.text-action span {
    color: var(--red);
    font-family: var(--mono);
    transition: transform .18s ease;
}

.text-action:hover span {
    transform: translateX(4px);
}

.market-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 24px;
    margin-top: 58px;
    color: #6f6d69;
    font-family: var(--mono);
    font-size: .54rem;
    letter-spacing: .035em;
}

.market-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.market-trust-row b {
    color: var(--red);
    font-weight: 500;
}

.market-featured {
    position: relative;
    z-index: 2;
    width: min(100%, 505px);
    justify-self: end;
}

.featured-orbit {
    position: absolute;
    z-index: -1;
    inset: -85px -135px;
    pointer-events: none;
}

.featured-orbit::before,
.featured-orbit::after,
.featured-orbit span {
    position: absolute;
    border: 1px solid rgba(241, 59, 63, .1);
    border-radius: 50%;
    content: '';
}

.featured-orbit::before {
    inset: 0;
}

.featured-orbit::after {
    inset: 70px;
}

.featured-orbit span:first-child {
    inset: 145px;
}

.featured-orbit span:last-child {
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border: 0;
    background: var(--red);
    box-shadow: 0 0 20px var(--red);
}

.featured-product {
    position: relative;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .17);
    background: rgba(12, 12, 14, .93);
    box-shadow: 0 45px 110px rgba(0, 0, 0, .48);
}

.featured-topline {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    color: #777570;
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .11em;
}

.featured-topline b {
    color: var(--red);
    font-weight: 500;
}

.featured-art {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #151518;
}

.featured-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .75, .2, 1);
}

.featured-art:hover img {
    transform: scale(1.025);
}

.featured-fallback {
    color: #36363a;
    font-family: var(--display);
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .76;
}

.featured-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 7px 7px;
}

.featured-info small {
    display: block;
    margin-bottom: 4px;
    color: #777570;
    font-family: var(--mono);
    font-size: .53rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-info h2 {
    margin: 0;
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 650;
    letter-spacing: -.025em;
}

.featured-buy {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-buy strong {
    font-family: var(--mono);
    font-size: .72rem;
    font-weight: 500;
    white-space: nowrap;
}

.featured-buy form {
    display: flex;
}

.featured-buy button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    background: var(--red);
    color: #fff;
    font-family: var(--mono);
    font-size: 1rem;
    transition: background .18s ease, transform .18s ease;
}

.featured-buy button:hover {
    background: #ff565a;
    transform: rotate(90deg);
}

.featured-placeholder {
    min-height: 505px;
    display: grid;
    align-content: end;
    padding: 45px;
}

.featured-placeholder > span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .1em;
}

.featured-placeholder > strong {
    margin-top: 14px;
    font-family: var(--display);
    font-size: 4.5rem;
    line-height: .8;
}

/* Home catalog */
.public-shell .market-catalog {
    padding: 116px 0 130px;
    background: #0b0b0c;
}

.market-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, .9fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 32px;
}

.section-code {
    margin: 0 0 14px;
    color: var(--red);
    font-family: var(--mono);
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .12em;
}

.market-section-head h2,
.standards-intro h2,
.how-heading h2,
.market-cta h2,
.system-heading h2,
.delivery-flow-head h2,
.related-head h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.8rem, 5vw, 5.15rem);
    font-weight: 660;
    letter-spacing: -.06em;
    line-height: .9;
}

.market-section-head > div > p:last-child {
    max-width: 500px;
    margin: 20px 0 0;
    color: #777570;
    font-size: .8rem;
}

.market-search {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(170px, .8fr) auto;
    align-items: end;
    gap: 8px;
}

.market-search label,
.market-search .market-field {
    display: grid;
    gap: 7px;
}

.market-search label > span,
.market-search .market-field > span {
    color: #686661;
    font-family: var(--mono);
    font-size: .51rem;
    letter-spacing: .1em;
}

.market-search input,
.market-search select {
    width: 100%;
    min-height: 47px;
    border-color: rgba(255, 255, 255, .14);
    background: #0e0e10;
    font-size: .72rem;
}

.market-search .button {
    min-height: 47px;
}

.market-tabs {
    margin: 0 0 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.public-shell .market-product-grid {
    gap: 52px 24px;
}

.market-product-card .product-image {
    border-color: rgba(255, 255, 255, .12);
    background: #111114;
}

.market-product-card .product-image::after {
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .54));
    opacity: .6;
    transition: opacity .3s ease;
}

.market-product-card:hover .product-image::after {
    opacity: 1;
}

.product-badges {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    left: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    pointer-events: none;
}

.market-product-card .product-image em,
.market-product-card .product-image i {
    position: static;
    width: max-content;
    display: inline-flex;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 3px;
    background: rgba(6, 6, 7, .78);
    color: #ece9e2;
    font-family: var(--mono);
    font-size: .5rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .08em;
    backdrop-filter: blur(12px);
}

.market-product-card .product-image i {
    margin-left: auto;
    color: #aaa7a0;
}

.product-view {
    position: absolute;
    z-index: 4;
    right: 16px;
    bottom: 15px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: .66rem;
    font-weight: 650;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .24s ease, transform .24s ease;
}

.product-view b {
    color: var(--red);
    font-family: var(--mono);
}

.market-product-card:hover .product-view {
    opacity: 1;
    transform: translateY(0);
}

.market-product-card .product-card-body {
    padding: 18px 1px 0;
}

.market-product-card .product-meta {
    color: #686661;
    font-size: .53rem;
}

.market-product-card h3 {
    margin-top: 10px;
    font-size: 1.38rem;
}

.market-product-card p {
    height: 46px;
    color: #7f7c76;
    font-size: .75rem;
}

.market-product-card .price-row {
    border-color: rgba(255, 255, 255, .11);
}

/* Home standards */
.store-standards {
    padding: 130px 0;
    background: var(--paper);
    color: var(--ink);
}

.standards-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px 80px;
    align-items: end;
    margin-bottom: 70px;
}

.standards-intro .section-code {
    grid-column: 1 / -1;
    color: #8b1d22;
}

.standards-intro h2 {
    font-size: clamp(3.3rem, 6vw, 6.1rem);
}

.standards-intro h2 span {
    color: #77736d;
}

.standards-intro > p:last-child {
    max-width: 520px;
    margin: 0 0 5px auto;
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.85;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(17, 17, 19, .2);
    border-bottom: 1px solid rgba(17, 17, 19, .2);
}

.standards-grid article {
    min-height: 280px;
    padding: 34px 34px 36px 0;
}

.standards-grid article + article {
    padding-left: 34px;
    border-left: 1px solid rgba(17, 17, 19, .2);
}

.standards-grid span {
    color: #8b1d22;
    font-family: var(--mono);
    font-size: .54rem;
    letter-spacing: .09em;
}

.standards-grid h3 {
    margin: 84px 0 12px;
    font-family: var(--display);
    font-size: 1.45rem;
    letter-spacing: -.035em;
}

.standards-grid p {
    max-width: 330px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .75rem;
    line-height: 1.75;
}

.how-it-works {
    padding: 125px 0;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 18% 75%, rgba(241, 59, 63, .1), transparent 24%),
        #080809;
}

.how-grid {
    display: grid;
    grid-template-columns: minmax(350px, .78fr) minmax(0, 1.22fr);
    gap: clamp(70px, 10vw, 150px);
}

.how-heading {
    position: sticky;
    top: 135px;
    align-self: start;
}

.how-heading h2 span {
    color: var(--red);
}

.how-steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-strong);
    list-style: none;
}

.how-steps li {
    min-height: 190px;
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line-strong);
}

.how-steps li > b {
    color: var(--red);
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 500;
}

.how-steps h3 {
    margin: 0 0 8px;
    font-family: var(--display);
    font-size: 1.55rem;
    letter-spacing: -.035em;
}

.how-steps p {
    max-width: 520px;
    margin: 0;
    color: #7f7c76;
    font-size: .78rem;
}

.market-cta {
    padding: 100px 0;
    background: var(--red);
    color: #fff;
}

.market-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.market-cta .section-code {
    color: rgba(255, 255, 255, .63);
}

.market-cta .button {
    border-color: #fff;
    background: #fff;
    color: #141416;
}

.market-cta .button:hover {
    border-color: #141416;
    background: #141416;
    color: #fff;
}

/* Product commerce page */
.product-commerce {
    padding: 42px 0 92px;
    background: var(--paper);
    color: var(--ink);
}

.commerce-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 36px;
    color: #77736d;
    font-family: var(--mono);
    font-size: .56rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.commerce-breadcrumb a:hover {
    color: var(--ink);
}

.commerce-breadcrumb strong {
    max-width: 320px;
    overflow: hidden;
    color: var(--ink);
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.commerce-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .78fr);
    align-items: center;
    gap: clamp(65px, 8vw, 120px);
}

.commerce-media {
    min-width: 0;
}

.commerce-art {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: clamp(32px, 5vw, 68px);
    background:
        linear-gradient(rgba(17, 17, 19, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 19, .05) 1px, transparent 1px),
        #e8e5dd;
    background-size: 42px 42px;
}

.commerce-art::before {
    position: absolute;
    inset: 5.8%;
    border: 1px solid rgba(17, 17, 19, .12);
    content: '';
}

.commerce-art img {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    height: min(100%, 620px);
    object-fit: cover;
    box-shadow: 0 36px 65px rgba(17, 17, 19, .23);
}

.commerce-art > span {
    position: relative;
    z-index: 2;
    color: #aaa69e;
    font-family: var(--display);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .76;
}

.art-corner {
    position: absolute;
    z-index: 3;
    width: 35px;
    height: 35px;
    pointer-events: none;
}

.art-corner-a {
    top: 4%;
    left: 4%;
    border-top: 2px solid #8b1d22;
    border-left: 2px solid #8b1d22;
}

.art-corner-b {
    right: 4%;
    bottom: 4%;
    border-right: 2px solid #8b1d22;
    border-bottom: 2px solid #8b1d22;
}

.media-caption {
    display: flex;
    justify-content: space-between;
    padding-top: 13px;
    color: #87837c;
    font-family: var(--mono);
    font-size: .51rem;
    letter-spacing: .09em;
}

.media-caption b {
    color: #8b1d22;
    font-weight: 500;
}

.purchase-panel {
    position: sticky;
    top: 124px;
    align-self: start;
    padding-top: 26px;
}

.purchase-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6f6b65;
    font-family: var(--mono);
    font-size: .56rem;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.purchase-topline span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.purchase-topline b {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid rgba(17, 17, 19, .17);
    font-weight: 500;
}

.purchase-topline b::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #18855d;
    content: '';
}

.purchase-panel h1 {
    margin: 26px 0 18px;
    font-family: var(--display);
    font-size: clamp(3.35rem, 5.6vw, 6rem);
    font-weight: 680;
    letter-spacing: -.07em;
    line-height: .85;
}

.purchase-lead {
    max-width: 575px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.78;
}

.purchase-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 35px 0 20px;
}

.purchase-price strong {
    font-family: var(--mono);
    font-size: 1.55rem;
    font-weight: 600;
}

.purchase-price del {
    color: #8c8881;
    font-family: var(--mono);
    font-size: .78rem;
}

.purchase-price span {
    padding: 5px 7px;
    border-radius: 3px;
    background: #cee8d9;
    color: #136143;
    font-family: var(--mono);
    font-size: .53rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.purchase-form .button {
    min-height: 58px;
    border-radius: 4px;
    box-shadow: 0 13px 32px rgba(139, 29, 34, .18);
}

.purchase-form .button span {
    margin-left: auto;
    font-family: var(--mono);
}

.purchase-assurance {
    display: grid;
    margin-top: 27px;
    border-top: 1px solid rgba(17, 17, 19, .16);
}

.purchase-assurance > div {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 11px;
    padding: 13px 1px;
    border-bottom: 1px solid rgba(17, 17, 19, .16);
}

.purchase-assurance i {
    color: #8b1d22;
    font-family: var(--mono);
    font-size: .54rem;
    font-style: normal;
}

.purchase-assurance span,
.purchase-assurance b,
.purchase-assurance small {
    display: block;
}

.purchase-assurance b {
    font-size: .72rem;
}

.purchase-assurance small {
    margin-top: 2px;
    color: #77736d;
    font-size: .64rem;
}

.purchase-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 26px;
    border: 1px solid rgba(17, 17, 19, .15);
}

.purchase-meta span {
    padding: 13px;
    color: #85817a;
    font-family: var(--mono);
    font-size: .48rem;
    letter-spacing: .08em;
}

.purchase-meta span + span {
    border-left: 1px solid rgba(17, 17, 19, .15);
}

.purchase-meta b {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: var(--ink);
    font-size: .57rem;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-narrative {
    padding: 125px 0;
    border-bottom: 1px solid var(--line);
    background: #080809;
}

.narrative-grid {
    display: grid;
    grid-template-columns: minmax(320px, .75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 10vw, 150px);
}

.narrative-heading h2,
.faq-grid h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(3.2rem, 5.6vw, 5.8rem);
    font-weight: 660;
    letter-spacing: -.065em;
    line-height: .88;
}

.narrative-copy .rich-text {
    max-width: 800px;
    color: #b7b3ab;
    font-size: 1rem;
    line-height: 2;
}

.narrative-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
}

.narrative-tags span {
    padding: 7px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    color: #898680;
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .05em;
}

.product-system {
    padding: 120px 0 130px;
    background: #0c0c0e;
}

.system-heading {
    max-width: 740px;
    margin-bottom: 62px;
}

.system-heading > p:last-child {
    max-width: 580px;
    margin: 22px 0 0;
    color: #777570;
    font-size: .82rem;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line-strong);
}

.system-grid article {
    min-height: 235px;
    padding: 28px;
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    transition: background .22s ease;
}

.system-grid article:hover {
    background: #111114;
}

.system-grid span {
    color: var(--red);
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .08em;
}

.system-grid h3 {
    margin: 64px 0 10px;
    font-family: var(--display);
    font-size: 1.28rem;
    letter-spacing: -.03em;
}

.system-grid p {
    margin: 0;
    color: #777570;
    font-size: .71rem;
    line-height: 1.75;
}

.delivery-flow {
    padding: 115px 0;
    background: var(--paper);
    color: var(--ink);
}

.delivery-flow-head {
    margin-bottom: 52px;
}

.delivery-flow-head .section-code {
    color: #8b1d22;
}

.delivery-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(17, 17, 19, .19);
    border-bottom: 1px solid rgba(17, 17, 19, .19);
}

.delivery-flow-grid article {
    min-height: 210px;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 18px;
    padding: 30px 30px 30px 0;
}

.delivery-flow-grid article + article {
    padding-left: 30px;
    border-left: 1px solid rgba(17, 17, 19, .19);
}

.delivery-flow-grid article > b {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(17, 17, 19, .35);
    border-radius: 50%;
    color: #8b1d22;
    font-family: var(--mono);
    font-size: .65rem;
}

.delivery-flow-grid strong,
.delivery-flow-grid small {
    display: block;
}

.delivery-flow-grid strong {
    font-family: var(--display);
    font-size: 1.15rem;
    letter-spacing: -.025em;
}

.delivery-flow-grid small {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: .7rem;
    line-height: 1.65;
}

.product-faq {
    padding: 125px 0;
    background: #080809;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
    gap: clamp(70px, 10vw, 150px);
}

.faq-list {
    border-top: 1px solid var(--line-strong);
}

.faq-list details {
    border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #e2ded6;
    font-size: .79rem;
    font-weight: 650;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--red);
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 400;
    transition: transform .2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    max-width: 680px;
    margin: -3px 40px 25px 0;
    color: #777570;
    font-size: .75rem;
    line-height: 1.75;
}

.related-products {
    padding: 120px 0 130px;
    background: #0c0c0e;
}

.related-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

/* Cart drawer */
.cart-backdrop {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    opacity: 0;
    backdrop-filter: blur(7px);
    transition: opacity .24s ease;
}

.cart-backdrop.open {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(470px, 100%);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border-left: 1px solid rgba(255, 255, 255, .14);
    background: #0b0b10;
    box-shadow: -25px 0 80px rgba(0, 0, 0, .46);
    transform: translateX(101%);
    transition: transform .32s cubic-bezier(.2, .76, .2, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-head {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.cart-drawer-head small {
    display: block;
    color: #77748a;
    font-family: var(--mono);
    font-size: .53rem;
    letter-spacing: .13em;
}

.cart-drawer-head h2 {
    margin: 4px 0 0;
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 650;
}

.cart-drawer-head > button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    background: transparent;
    color: #9895a9;
    font-size: 1.25rem;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.cart-drawer-head > button:hover {
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    transform: rotate(90deg);
}

.cart-drawer-body {
    overflow-y: auto;
    padding: 24px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr) auto;
    gap: 15px;
    padding: 12px;
    border: 1px solid rgba(164, 143, 255, .19);
    border-radius: 12px;
    background: #11101f;
}

.drawer-item + .drawer-item {
    margin-top: 10px;
}

.drawer-thumb {
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #191922;
}

.drawer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-thumb span {
    color: #494753;
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 800;
}

.drawer-item-copy {
    min-width: 0;
    display: grid;
    align-content: center;
}

.drawer-item-copy > a {
    overflow: hidden;
    font-family: var(--display);
    font-size: .88rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.drawer-item-copy small {
    margin-top: 2px;
    color: #77748a;
    font-size: .61rem;
}

.drawer-item-copy strong {
    margin-top: 5px;
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 600;
}

.drawer-item > form {
    display: flex;
    align-items: flex-start;
}

.drawer-item > form button {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #676477;
    font-size: 1rem;
}

.drawer-item > form button:hover {
    color: var(--red);
}

.drawer-empty {
    min-height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 50px 20px;
    text-align: center;
}

.drawer-empty > span {
    color: var(--red);
    font-family: var(--mono);
    font-size: .55rem;
    letter-spacing: .11em;
}

.drawer-empty h3 {
    margin: 14px 0 7px;
    font-family: var(--display);
    font-size: 1.8rem;
}

.drawer-empty p {
    max-width: 290px;
    margin: 0 0 23px;
    color: #77748a;
    font-size: .7rem;
}

.cart-drawer-foot {
    padding: 22px 24px 25px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    background: #0a0a0f;
}

.drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
    color: #aaa7b8;
    font-size: .76rem;
}

.drawer-subtotal strong {
    color: #fff;
    font-family: var(--mono);
    font-size: 1.18rem;
}

.drawer-checkout {
    min-height: 54px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #7d34ec, #9634f1);
    box-shadow: 0 12px 30px rgba(125, 52, 236, .28);
}

.drawer-checkout:hover {
    border: 0;
    background: linear-gradient(90deg, #8b43f1, #a248f5);
}

.drawer-checkout span {
    margin-left: auto;
}

.drawer-assurance {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 13px;
    color: #77748a;
    font-size: .56rem;
}

.drawer-continue {
    display: block;
    margin-top: 17px;
    color: #9591a4;
    font-size: .69rem;
    text-align: center;
}

.drawer-continue:hover {
    color: #fff;
}

/* Expanded footer */
.public-shell .site-footer {
    padding-top: 0;
    background: #070708;
}

.market-footer-grid {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 70px;
    padding-block: 70px;
}

.footer-brand-column > p {
    max-width: 390px;
    margin: 25px 0 28px;
    color: #716f6a;
    font-size: .72rem;
}

.footer-signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #66645f;
    font-family: var(--mono);
    font-size: .5rem;
    letter-spacing: .08em;
}

.footer-signal i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(67, 202, 148, .5);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-column small {
    margin-bottom: 10px;
    color: #eeeae2;
    font-family: var(--mono);
    font-size: .53rem;
    font-weight: 600;
    letter-spacing: .12em;
}

.footer-column a,
.footer-column span {
    color: #74716c;
    font-size: .69rem;
    transition: color .18s ease;
}

.footer-column a:hover {
    color: #fff;
}

.public-shell .footer-bottom {
    min-height: 68px;
}

/* Responsive public storefront */
@media (max-width: 1120px) {
    .market-nav {
        gap: 18px;
    }

    .market-nav a {
        font-size: .66rem;
    }

    .market-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
        gap: 60px;
    }

    .market-hero h1 {
        font-size: clamp(4.2rem, 7.2vw, 6.4rem);
    }

    .market-section-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 35px;
    }

    .market-search {
        width: 100%;
    }

    .commerce-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .75fr);
        gap: 55px;
    }

    .purchase-panel h1 {
        font-size: clamp(3rem, 5vw, 4.8rem);
    }
}

@media (max-width: 900px) {
    .public-shell .container {
        width: min(100% - 38px, 1320px);
    }

    .market-notice-inner span:last-child,
    .market-nav {
        display: none;
    }

    .market-nav.open {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        padding: 15px 19px 5px;
        border-bottom: 0;
        background: #09090a;
        transform: none;
        flex-direction: column;
    }

    .market-nav.open a {
        min-height: 42px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
    }

    .public-shell .main-nav {
        top: 203px;
        padding-top: 4px;
    }

    .public-shell .main-nav .cart-link {
        display: none;
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .mobile-cart {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 0 6px 0 11px;
        border: 1px solid var(--line);
        border-radius: 99px;
        color: #aaa7a0;
        font-family: var(--mono);
        font-size: .5rem;
    }

    .mobile-cart b {
        min-width: 25px;
        height: 25px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--red);
        color: #fff;
        font-weight: 500;
    }

    .market-hero {
        background: #070708;
    }

    .market-hero::before {
        display: none;
    }

    .market-hero-grid {
        grid-template-columns: 1fr;
        gap: 75px;
        padding-block: 76px;
    }

    .market-hero-copy {
        max-width: 760px;
    }

    .market-featured {
        width: min(100%, 610px);
        justify-self: start;
    }

    .standards-intro {
        grid-template-columns: 1fr;
    }

    .standards-intro .section-code {
        grid-column: auto;
    }

    .standards-intro > p:last-child {
        margin-left: 0;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

    .standards-grid article,
    .standards-grid article + article {
        min-height: 190px;
        padding: 28px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(17, 17, 19, .2);
    }

    .standards-grid article:last-child {
        border-bottom: 0;
    }

    .standards-grid h3 {
        margin-top: 42px;
    }

    .how-grid,
    .narrative-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .how-heading {
        position: static;
    }

    .commerce-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .purchase-panel {
        position: static;
        max-width: 680px;
        padding-top: 0;
    }

    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-flow-grid {
        grid-template-columns: 1fr;
    }

    .delivery-flow-grid article,
    .delivery-flow-grid article + article {
        min-height: 150px;
        padding: 25px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(17, 17, 19, .19);
    }

    .delivery-flow-grid article:last-child {
        border-bottom: 0;
    }

    .market-footer-grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
        gap: 50px;
    }

    .market-footer-grid .footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 620px) {
    .public-shell .container {
        width: min(100% - 28px, 1320px);
    }

    .market-notice-inner {
        justify-content: center;
        font-size: .47rem;
        text-align: center;
    }

    .public-shell .nav-wrap {
        min-height: 70px;
    }

    .public-shell .brand-copy small {
        display: none;
    }

    .market-nav.open {
        top: 70px;
    }

    .public-shell .main-nav {
        top: 199px;
    }

    .mobile-cart > span {
        display: none;
    }

    .mobile-cart {
        padding-left: 6px;
    }

    .market-hero-grid {
        gap: 58px;
        padding-block: 62px;
    }

    .release-label {
        margin-bottom: 38px;
    }

    .market-hero h1 {
        font-size: clamp(3.5rem, 17.8vw, 5.3rem);
    }

    .market-lead {
        font-size: .82rem;
    }

    .market-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .market-hero-actions .text-action {
        padding-left: 2px;
    }

    .market-trust-row {
        display: grid;
        gap: 8px;
        margin-top: 38px;
    }

    .featured-orbit {
        display: none;
    }

    .featured-product {
        padding: 10px;
    }

    .featured-info {
        align-items: flex-end;
        padding-top: 14px;
    }

    .featured-info h2 {
        font-size: 1rem;
    }

    .featured-buy {
        align-items: flex-end;
        flex-direction: column;
        gap: 5px;
    }

    .public-shell .market-catalog,
    .store-standards,
    .how-it-works,
    .product-narrative,
    .product-system,
    .delivery-flow,
    .product-faq,
    .related-products {
        padding: 82px 0;
    }

    .market-section-head h2,
    .standards-intro h2,
    .how-heading h2,
    .market-cta h2,
    .system-heading h2,
    .delivery-flow-head h2,
    .related-head h2 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .market-search {
        grid-template-columns: 1fr;
    }

    .market-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .product-view {
        display: none;
    }

    .market-cta {
        padding: 70px 0;
    }

    .market-cta-inner,
    .related-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .commerce-breadcrumb {
        overflow: hidden;
        margin-bottom: 24px;
    }

    .product-commerce {
        padding: 28px 0 70px;
    }

    .commerce-art {
        padding: 27px;
    }

    .purchase-panel h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .purchase-price {
        flex-wrap: wrap;
    }

    .purchase-meta {
        grid-template-columns: 1fr;
    }

    .purchase-meta span + span {
        border-top: 1px solid rgba(17, 17, 19, .15);
        border-left: 0;
    }

    .narrative-heading h2,
    .faq-grid h2 {
        font-size: clamp(3rem, 14vw, 4.3rem);
    }

    .system-grid {
        grid-template-columns: 1fr;
    }

    .system-grid article {
        min-height: 195px;
    }

    .system-grid h3 {
        margin-top: 42px;
    }

    .how-steps li {
        min-height: 155px;
        grid-template-columns: 40px 1fr;
        gap: 13px;
    }

    .market-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
        padding-block: 55px;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .market-footer-grid .footer-column:last-child {
        grid-column: auto;
    }

    .drawer-assurance {
        gap: 8px;
        justify-content: space-between;
    }
}
/* Live catalog transitions */
.market-catalog > .container {
    transition: opacity 140ms ease;
}

.market-catalog.is-loading {
    cursor: progress;
}

.market-catalog.is-loading > .container {
    opacity: .42;
    pointer-events: none;
}

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

/* ==========================================================================
   v1.4.1 — visual repair and official wordmark integration
   These rules intentionally live after the legacy storefront layers so the
   bright commerce system remains authoritative.
   ========================================================================== */

.public-shell {
    background: #f7f9fc;
    color: #101828;
}

.public-shell .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, .96);
    box-shadow: 0 10px 32px rgba(15, 23, 42, .13);
    backdrop-filter: blur(18px);
}

.public-shell .nav-wrap {
    min-height: 84px;
}

.public-shell .brand {
    min-width: 0;
    gap: 10px;
}

.brand-wordmark {
    position: relative;
    width: 104px;
    height: 67px;
    flex: 0 0 auto;
    display: block;
    overflow: hidden;
}

.brand-wordmark img {
    position: absolute;
    top: 0;
    left: 0;
    width: 104px;
    height: 104px;
    max-width: none;
    object-fit: contain;
    transform: translateY(-21px);
}

.public-shell .brand-copy {
    display: flex;
    align-items: center;
}

.public-shell .brand-copy small {
    color: #93a0b5;
    font-size: .49rem;
    font-weight: 650;
    letter-spacing: .16em;
    white-space: nowrap;
}

.public-shell .market-nav a,
.public-shell .main-nav > a,
.public-shell .main-nav .link-button {
    color: #d7deea;
}

.public-shell .market-nav a:hover,
.public-shell .main-nav > a:hover,
.public-shell .main-nav .link-button:hover {
    color: #fff;
}

.public-shell .cart-link {
    border-color: rgba(255, 255, 255, .25);
    color: #f8fafc;
}

.public-shell .cart-link:hover {
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .08);
}

.public-shell .market-hero {
    min-height: 720px;
    border-bottom: 1px solid #dfe6f1;
    background:
        radial-gradient(circle at 78% 42%, rgba(45, 101, 220, .14), transparent 25rem),
        linear-gradient(135deg, #fff 0%, #f5f8ff 57%, #edf3ff 100%);
}

.public-shell .market-hero::before {
    left: 55%;
    display: block;
    width: 45%;
    opacity: .5;
    background-color: transparent;
    background-image:
        linear-gradient(rgba(38, 74, 145, .052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 74, 145, .052) 1px, transparent 1px);
    background-size: 38px 38px;
}

.public-shell .release-label {
    margin-bottom: 42px;
    color: #667085;
}

.public-shell .release-label span {
    color: #344054;
}

.public-shell .release-label b {
    border-left-color: #d9e1ed;
}

.public-shell .market-kicker {
    color: #2158d5;
}

.public-shell .market-hero h1 {
    max-width: 780px;
    color: #101828;
    font-size: clamp(4rem, 6.55vw, 7rem);
    letter-spacing: -.058em;
    line-height: .91;
}

.public-shell .market-hero h1 span {
    display: block;
    margin-top: .08em;
    color: #2158d5;
    font-size: .82em;
    letter-spacing: -.045em;
    line-height: .94;
    -webkit-text-stroke: 0;
}

.public-shell .market-lead {
    color: #536176;
}

.public-shell .text-action {
    color: #27364d;
}

.public-shell .market-trust-row {
    color: #536176;
}

.public-shell .market-featured {
    width: min(100%, 490px);
}

.public-shell .featured-orbit::before,
.public-shell .featured-orbit::after,
.public-shell .featured-orbit span {
    border-color: rgba(33, 88, 213, .1);
}

.public-shell .featured-orbit span:last-child {
    border: 0;
    background: #2158d5;
    box-shadow: 0 0 20px rgba(33, 88, 213, .4);
}

.public-shell .featured-product {
    padding: 14px;
    border-color: #dfe6f0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 26px 75px rgba(35, 55, 95, .14);
}

.public-shell .featured-topline {
    color: #667085;
}

.public-shell .featured-topline b {
    color: #2158d5;
}

.public-shell .featured-art {
    border-radius: 16px;
    background: #eff3f9;
}

.public-shell .featured-info {
    color: #344054;
}

.public-shell .featured-info small {
    color: #667085;
}

.public-shell .featured-info h2,
.public-shell .featured-buy strong {
    color: #101828;
}

.public-shell .featured-buy button {
    border-radius: 9px;
    background: #2158d5;
}

.public-shell .market-catalog {
    padding: 112px 0 126px;
    border-bottom: 1px solid #dfe6f0;
    background:
        linear-gradient(180deg, #f7f9fc 0%, #f3f6fa 100%);
    color: #101828;
}

.public-shell .market-section-head {
    align-items: end;
}

.public-shell .market-section-head h2 {
    color: #101828;
    line-height: .94;
}

.public-shell .market-section-head > div > p:last-child {
    color: #536176;
    line-height: 1.7;
}

.public-shell .market-search {
    padding: 14px;
    border: 1px solid #dfe5ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(35, 55, 95, .07);
}

.public-shell .market-search label > span,
.public-shell .market-search .market-field > span {
    color: #667085;
}

.public-shell .market-search input,
.public-shell .market-search select {
    border-color: #d8e0eb;
    border-radius: 10px;
    background: #f8fafc;
    color: #152238;
}

.public-shell .market-search input::placeholder {
    color: #98a2b3;
}

.public-shell .market-tabs,
.public-shell .category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.public-shell .category-tab {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border: 1px solid #d8e0eb;
    border-radius: 999px;
    background: #fff;
    color: #536176;
    white-space: nowrap;
}

.public-shell .category-tab:hover {
    border-color: #b9c8e3;
    color: #1746b5;
}

.public-shell .category-tab.active {
    border-color: #b9ccef;
    background: #eaf0ff;
    color: #1746b5;
}

.public-shell .category-tab.active::before {
    background: #2158d5;
}

.public-shell .market-product-grid {
    gap: 28px 24px;
}

.public-shell .market-product-card {
    overflow: hidden;
    border: 1px solid #e0e6ef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(35, 55, 95, .09);
}

.public-shell .market-product-card .product-image {
    border-color: #e5eaf1;
    background: linear-gradient(145deg, #f6f8fc, #edf2f8);
}

.public-shell .market-product-card .product-image::after {
    background: linear-gradient(180deg, transparent 62%, rgba(15, 23, 42, .42));
}

.public-shell .market-product-card .product-image em,
.public-shell .market-product-card .product-image i {
    border-color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .88);
    color: #344054;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
}

.public-shell .market-product-card .product-card-body {
    padding: 22px 22px 24px;
}

.public-shell .market-product-card .product-meta {
    color: #667085;
}

.public-shell .market-product-card h3 {
    color: #101828;
}

.public-shell .market-product-card p {
    color: #667085;
}

.public-shell .market-product-card .price-row {
    border-color: #e5eaf1;
}

.public-shell .product-commerce {
    padding: 48px 0 96px;
    background: linear-gradient(145deg, #f4f7fd, #fff 55%, #edf3ff);
    color: #101828;
}

.public-shell .commerce-grid {
    align-items: start;
    gap: clamp(48px, 6vw, 90px);
}

.public-shell .commerce-art {
    padding: clamp(44px, 5.5vw, 74px);
    border: 1px solid #dfe6ef;
    border-radius: 24px;
    background:
        linear-gradient(rgba(33, 88, 213, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33, 88, 213, .045) 1px, transparent 1px),
        #f6f8fc;
    background-size: 42px 42px;
    box-shadow: 0 24px 70px rgba(35, 55, 95, .1);
}

.public-shell .commerce-art::before {
    inset: 6.5%;
    border-color: rgba(33, 88, 213, .13);
    border-radius: 18px;
}

.public-shell .commerce-art img {
    width: min(100%, 560px);
    height: auto;
    max-height: 560px;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 30px 60px rgba(27, 45, 83, .18);
}

.public-shell .purchase-panel {
    top: 118px;
    padding: clamp(30px, 3.4vw, 48px);
    border: 1px solid #dfe6ef;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(35, 55, 95, .1);
}

.public-shell .purchase-panel h1 {
    margin: 24px 0 18px;
    color: #101828;
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
    line-height: .92;
    overflow-wrap: anywhere;
}

.public-shell .purchase-topline {
    color: #667085;
}

.public-shell .purchase-topline b {
    border-color: #d5dde8;
    border-radius: 8px;
    background: #f8fafc;
}

.public-shell .purchase-lead {
    color: #667085;
}

.public-shell .purchase-form .button {
    border-radius: 10px;
}

.public-shell .purchase-assurance {
    margin-top: 28px;
    border-color: #e2e7ef;
}

.public-shell .purchase-assurance > div {
    padding: 16px 0;
    border-color: #e2e7ef;
}

.public-shell .purchase-assurance i {
    color: #2158d5;
}

.public-shell .purchase-assurance b {
    color: #27364d;
}

.public-shell .purchase-assurance small {
    color: #667085;
}

.public-shell .purchase-meta {
    margin-top: 28px;
    border-color: #dfe5ee;
    border-radius: 10px;
    overflow: hidden;
}

.public-shell .purchase-meta span {
    padding: 15px;
    background: #f8fafc;
    color: #7b8798;
}

.public-shell .purchase-meta span + span {
    border-color: #dfe5ee;
}

.public-shell .purchase-meta b {
    color: #27364d;
}

.public-shell .site-footer {
    background: #000;
}

.public-shell .site-footer .brand {
    width: max-content;
    align-items: center;
}

.public-shell .site-footer .brand-wordmark {
    width: 148px;
    height: 98px;
}

.public-shell .site-footer .brand-wordmark img {
    width: 148px;
    height: 148px;
    transform: translateY(-30px);
}

.public-shell .site-footer .brand-copy small {
    color: #7f8da3;
}

@media (max-width: 1120px) {
    .public-shell .market-hero h1 {
        font-size: clamp(3.8rem, 6.3vw, 5.8rem);
    }

    .public-shell .market-section-head {
        align-items: start;
    }
}

@media (max-width: 900px) {
    .public-shell .market-nav.open {
        top: 84px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        background: #000;
    }

    .public-shell .main-nav {
        top: 213px;
        background: #000;
    }

    .public-shell .mobile-cart,
    .public-shell .menu-toggle {
        border-color: rgba(255, 255, 255, .24);
        color: #f8fafc;
    }

    .public-shell .market-hero {
        background:
            radial-gradient(circle at 75% 18%, rgba(45, 101, 220, .13), transparent 20rem),
            linear-gradient(150deg, #fff, #f1f6ff);
    }

    .public-shell .purchase-panel {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .public-shell .nav-wrap {
        min-height: 72px;
    }

    .public-shell .brand-wordmark {
        width: 78px;
        height: 50px;
    }

    .public-shell .brand-wordmark img {
        width: 78px;
        height: 78px;
        transform: translateY(-16px);
    }

    .public-shell .brand-copy {
        display: none;
    }

    .public-shell .market-nav.open {
        top: 72px;
    }

    .public-shell .main-nav {
        top: 201px;
    }

    .public-shell .market-hero h1 {
        font-size: clamp(3.25rem, 16vw, 4.8rem);
        line-height: .93;
    }

    .public-shell .market-hero h1 span {
        font-size: .8em;
        line-height: .97;
    }

    .public-shell .market-search {
        padding: 12px;
    }

    .public-shell .market-tabs,
    .public-shell .category-tabs {
        margin-inline: -14px;
        padding-inline: 14px;
    }

    .public-shell .commerce-art {
        padding: 34px;
    }

    .public-shell .purchase-panel {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .public-shell .purchase-panel h1 {
        font-size: clamp(2.6rem, 13vw, 3.7rem);
        line-height: .94;
    }

    .public-shell .site-footer .brand-wordmark {
        width: 124px;
        height: 84px;
    }

    .public-shell .site-footer .brand-wordmark img {
        width: 124px;
        height: 124px;
        transform: translateY(-25px);
    }
}

/* ==========================================================================
   v1.4.2 — accessible custom catalog category menu
   ========================================================================== */

.public-shell .category-select {
    position: relative;
    min-width: 0;
}

.public-shell .category-select-ui {
    display: none;
}

.public-shell .category-select.is-enhanced .category-native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.public-shell .category-select.is-enhanced .category-select-ui {
    display: block;
}

.public-shell .category-select-trigger {
    width: 100%;
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 14px 0 15px;
    border: 1px solid #d8e0eb;
    border-radius: 10px;
    outline: 0;
    background: #f8fafc;
    color: #152238;
    font-size: .72rem;
    text-align: left;
    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease;
}

.public-shell .category-select-trigger:hover {
    border-color: #b9c7dc;
    background: #fff;
}

.public-shell .category-select-trigger:focus-visible,
.public-shell .category-select.is-open .category-select-trigger {
    border-color: #7e9ee4;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(33, 88, 213, .11);
}

.public-shell .category-select-trigger svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #667085;
    transition: transform .2s cubic-bezier(.2, .75, .25, 1);
}

.public-shell .category-select.is-open .category-select-trigger svg {
    transform: rotate(180deg);
}

.public-shell .category-select-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    min-width: 100%;
    max-width: min(340px, calc(100vw - 40px));
    padding: 6px;
    border: 1px solid #dce3ee;
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow:
        0 20px 50px rgba(25, 44, 78, .16),
        0 3px 10px rgba(25, 44, 78, .07);
    opacity: 0;
    transform: translateY(-7px) scale(.985);
    transform-origin: top left;
    transition:
        opacity .16s ease,
        transform .2s cubic-bezier(.2, .75, .25, 1);
}

.public-shell .category-select-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.public-shell .category-select-option {
    width: 100%;
    min-height: 42px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 10px;
    border: 0;
    border-radius: 9px;
    outline: 0;
    background: transparent;
    color: #344054;
    font-size: .74rem;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    transition:
        color .14s ease,
        background-color .14s ease;
}

.public-shell .category-select-option::before {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border: 1px solid #d7dfeb;
    border-radius: 50%;
    color: transparent;
    content: '✓';
    font-size: .64rem;
    font-weight: 800;
    transition:
        border-color .14s ease,
        background-color .14s ease,
        color .14s ease;
}

.public-shell .category-select-option:hover,
.public-shell .category-select-option:focus-visible {
    background: #f3f6fb;
    color: #1746b5;
}

.public-shell .category-select-option[aria-selected='true'] {
    background: #edf3ff;
    color: #1746b5;
    font-weight: 650;
}

.public-shell .category-select-option[aria-selected='true']::before {
    border-color: #2158d5;
    background: #2158d5;
    color: #fff;
    box-shadow: 0 3px 8px rgba(33, 88, 213, .22);
}

@media (max-width: 620px) {
    .public-shell .category-select-menu {
        right: 0;
        left: auto;
        width: 100%;
        max-width: none;
        transform-origin: top right;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell .category-select-trigger,
    .public-shell .category-select-trigger svg,
    .public-shell .category-select-menu,
    .public-shell .category-select-option,
    .public-shell .category-select-option::before {
        transition: none;
    }
}

/* ==========================================================================
   v1.5.0 — catalog layering, trust section and admin workspace
   ========================================================================== */

/* The reveal motion turns the catalog heading and cards into sibling stacking
   contexts. Give the filter layer an explicit paint order so its menu can
   never fall behind later product artwork. */
.public-shell .market-section-head {
    position: relative;
    z-index: 120;
}

.public-shell .market-search,
.public-shell .market-search .market-field,
.public-shell .category-select,
.public-shell .category-select-ui {
    position: relative;
    overflow: visible;
}

.public-shell .market-search {
    z-index: 130;
}

.public-shell .market-section-head:has(.category-select.is-open) {
    z-index: 600;
}

.public-shell .category-select-menu {
    z-index: 700;
}

.public-shell .market-tabs {
    position: relative;
    z-index: 8;
}

.public-shell .market-product-grid {
    position: relative;
    z-index: 1;
}

/* Clearer and more compact trust section */
.public-shell .store-standards {
    padding: 96px 0 104px;
    border-bottom: 1px solid #dfe6ef;
    background:
        radial-gradient(circle at 88% 12%, rgba(33, 88, 213, .07), transparent 23rem),
        #fff;
    color: #101828;
}

.public-shell .standards-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .72fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 48px;
}

.public-shell .standards-intro > div:first-child {
    min-width: 0;
}

.public-shell .standards-intro .section-code {
    grid-column: auto;
    margin-bottom: 16px;
    color: #2158d5;
}

.public-shell .standards-intro h2 {
    color: #101828;
    font-size: clamp(3rem, 5.2vw, 5.35rem);
    line-height: .94;
}

.public-shell .standards-intro h2 span {
    color: #667085;
}

.standards-summary {
    min-height: 118px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 22px;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    background: #f7f9fc;
}

.standards-summary-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #e9f8f1;
    color: #13845b;
    font-size: 1rem;
    font-weight: 800;
}

.standards-summary-icon svg {
    width: 21px;
    height: 21px;
}

.standards-summary strong,
.standards-summary p {
    display: block;
}

.standards-summary strong {
    color: #1d2939;
    font-size: .86rem;
    line-height: 1.45;
}

.standards-summary p {
    margin: 8px 0 0;
    color: #667085;
    font-size: .72rem;
    line-height: 1.7;
}

.public-shell .standards-grid {
    gap: 16px;
    border: 0;
}

.public-shell .standards-grid article,
.public-shell .standards-grid article + article {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 12px 32px rgba(35, 55, 95, .045);
}

.standard-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-shell .standard-card-top span {
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eaf0ff;
    color: #2158d5;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.standard-card-top i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dbe4f1;
    border-radius: 10px;
    background: #fff;
    color: #2158d5;
    font-family: var(--mono);
    font-size: .78rem;
    font-style: normal;
}

.standard-card-top i svg {
    width: 18px;
    height: 18px;
}

.public-shell .standards-grid h3 {
    margin: auto 0 10px;
    color: #172033;
    font-size: 1.35rem;
}

.public-shell .standards-grid p {
    color: #667085;
    font-size: .73rem;
    line-height: 1.7;
}

/* Light, operational admin workspace */
.panel-body-v2 {
    --panel-blue: #2158d5;
    --panel-blue-dark: #143f9e;
    --panel-navy: #0d2859;
    --panel-ink: #172033;
    --panel-muted: #667085;
    --panel-line: #e2e8f0;
    --panel-surface: #fff;
    min-height: 100vh;
    background: #f3f6fa;
    color: var(--panel-ink);
    color-scheme: light;
    font-size: 14px;
    line-height: 1.55;
}

.panel-body-v2::selection {
    background: #cfe0ff;
    color: #0d2859;
}

.panel-body-v2 .sidebar {
    z-index: 90;
    width: 282px;
    padding: 22px 16px 18px;
    border-right: 0;
    background:
        radial-gradient(circle at 25% 3%, rgba(91, 139, 241, .2), transparent 17rem),
        linear-gradient(180deg, #0f326f 0%, #0c2859 54%, #081d43 100%);
    box-shadow: 10px 0 34px rgba(14, 35, 71, .09);
}

.panel-brand-block {
    padding: 2px 10px 24px;
    margin-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.panel-brand-block .panel-brand {
    width: 132px;
    height: 70px;
    display: block;
    margin: 0 0 3px;
}

.panel-brand-block .panel-brand img {
    width: 132px;
    height: 70px;
    object-fit: contain;
}

.panel-brand-block > span {
    display: block;
    color: #9cb6e8;
    font-size: .64rem;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.panel-body-v2 .sidebar-label {
    padding: 0 13px 10px;
    color: #83a4df;
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.panel-body-v2 .sidebar-nav,
.panel-body-v2 .sidebar-bottom {
    gap: 5px;
}

.panel-body-v2 .sidebar-nav a,
.panel-body-v2 .sidebar-bottom a,
.panel-body-v2 .sidebar-bottom button {
    min-height: 58px;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #bdd0ef;
    font-size: .75rem;
}

.panel-body-v2 .sidebar-nav a > span:last-child,
.panel-body-v2 .sidebar-bottom a > span:last-child,
.panel-body-v2 .sidebar-bottom button > span:last-child {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.panel-body-v2 .sidebar-nav b,
.panel-body-v2 .sidebar-bottom b {
    color: inherit;
    font-size: .75rem;
    font-weight: 650;
}

.panel-body-v2 .sidebar-nav small,
.panel-body-v2 .sidebar-bottom small {
    color: #7898cf;
    font-size: .58rem;
    font-weight: 500;
}

.panel-body-v2 .sidebar-nav a:hover,
.panel-body-v2 .sidebar-nav a.active,
.panel-body-v2 .sidebar-bottom a:hover,
.panel-body-v2 .sidebar-bottom button:hover {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .075);
    color: #fff;
}

.panel-body-v2 .sidebar-nav a.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .075));
    box-shadow: 0 8px 22px rgba(2, 14, 37, .15);
}

.panel-body-v2 .sidebar-nav a.active::after {
    top: 23px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: #72a5ff;
    box-shadow: 0 0 0 4px rgba(114, 165, 255, .12);
}

.panel-body-v2 .nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .065);
    color: #a6c1ec;
}

.panel-body-v2 .nav-icon svg {
    width: 17px;
    height: 17px;
}

.panel-body-v2 .sidebar-nav a.active .nav-icon,
.panel-body-v2 .sidebar-nav a:hover .nav-icon {
    background: rgba(255, 255, 255, .11);
    color: #fff;
}

.panel-body-v2 .sidebar-bottom {
    border-top-color: rgba(255, 255, 255, .11);
}

.panel-body-v2 .panel-main {
    width: calc(100% - 282px);
    margin-left: 282px;
}

.panel-body-v2 .panel-topbar {
    z-index: 50;
    min-height: 76px;
    padding: 0 36px;
    border-bottom: 1px solid #e4e9f1;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 18px rgba(35, 55, 95, .035);
    backdrop-filter: blur(18px);
}

.panel-topbar-start,
.panel-topbar-actions {
    display: flex;
    align-items: center;
}

.panel-topbar-start {
    gap: 14px;
}

.panel-topbar-actions {
    gap: 18px;
}

.panel-body-v2 .panel-topbar-context {
    display: grid;
    gap: 1px;
    color: var(--panel-muted);
    font-family: var(--body);
    letter-spacing: 0;
}

.panel-body-v2 .panel-topbar-context small {
    color: #98a2b3;
    font-family: var(--mono);
    font-size: .5rem;
    font-weight: 650;
    letter-spacing: .11em;
}

.panel-body-v2 .panel-topbar-context strong {
    color: #27364d;
    font-size: .8rem;
    font-weight: 700;
}

.panel-quick-add {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid #dbe3ef;
    border-radius: 9px;
    background: #f8fafc;
    color: #344054;
    font-size: .68rem;
    font-weight: 700;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.panel-quick-add span {
    color: var(--panel-blue);
    font-size: .9rem;
}

.panel-quick-add:hover {
    border-color: #c4d3ec;
    background: #fff;
    color: var(--panel-blue);
}

.panel-body-v2 .panel-user {
    padding-left: 18px;
    border-left: 1px solid #e4e9f1;
}

.panel-body-v2 .panel-user-meta small {
    color: #98a2b3;
}

.panel-body-v2 .panel-user-meta strong {
    color: #27364d;
    font-size: .72rem;
}

.panel-body-v2 .panel-avatar {
    width: 38px;
    height: 38px;
    border: 0;
    background: #eaf0ff;
    color: var(--panel-blue);
    font-family: var(--body);
    font-size: .75rem;
    font-weight: 800;
}

.panel-body-v2 .icon-button {
    width: 40px;
    height: 40px;
    display: none;
    place-content: center;
    gap: 4px;
    border: 1px solid #dbe3ef;
    border-radius: 9px;
    background: #fff;
}

.panel-body-v2 .icon-button span {
    width: 16px;
    height: 1.5px;
    display: block;
    border-radius: 2px;
    background: #344054;
}

.panel-body-v2 .panel-content {
    width: min(100%, 1580px);
    padding: 42px clamp(24px, 3.2vw, 52px) 72px;
}

.panel-body-v2 .panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 28px;
}

.panel-body-v2 .panel-heading .eyebrow {
    color: var(--panel-blue);
}

.panel-body-v2 .panel-heading .eyebrow::before {
    background: var(--panel-blue);
}

.panel-body-v2 .panel-heading h1 {
    margin: 8px 0 5px;
    color: #121b2d;
    font-size: clamp(2rem, 3vw, 3.15rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.panel-body-v2 .panel-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--panel-muted);
    font-size: .78rem;
}

.panel-heading-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.panel-body-v2 .button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid var(--panel-blue);
    border-radius: 9px;
    background: var(--panel-blue);
    color: #fff;
    box-shadow: 0 8px 20px rgba(33, 88, 213, .17);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.panel-body-v2 .button:hover {
    border-color: var(--panel-blue-dark);
    background: var(--panel-blue-dark);
    box-shadow: 0 11px 24px rgba(33, 88, 213, .22);
    transform: translateY(-1px);
}

.panel-body-v2 .button.secondary {
    border-color: #d7e0ec;
    background: #fff;
    color: #344054;
    box-shadow: none;
}

.panel-body-v2 .button.secondary:hover {
    border-color: #bfcde0;
    background: #f8fafc;
    color: var(--panel-blue);
}

.panel-body-v2 .button.small {
    min-height: 36px;
    padding-inline: 13px;
    font-size: .65rem;
}

.panel-body-v2 .button.approve {
    border-color: #16865c;
    background: #16865c;
    box-shadow: none;
}

.panel-body-v2 .panel-card {
    padding: 24px;
    border: 1px solid var(--panel-line);
    border-radius: 15px;
    background: var(--panel-surface);
    color: var(--panel-ink);
    box-shadow: 0 10px 28px rgba(35, 55, 95, .045);
}

.attention-banner {
    min-height: 76px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 14px 18px;
    border: 1px solid #f4cf89;
    border-radius: 13px;
    background: #fffaf0;
    color: #754f12;
}

.attention-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #ffefcc;
    color: #a86800;
    font-weight: 800;
}

.attention-banner > span:nth-child(2) {
    display: grid;
    gap: 2px;
}

.attention-banner strong {
    font-size: .76rem;
}

.attention-banner small {
    color: #947039;
    font-size: .64rem;
}

.attention-banner > b {
    font-size: .65rem;
    white-space: nowrap;
}

.panel-body-v2 .stat-grid {
    gap: 14px;
    margin-bottom: 20px;
}

.panel-body-v2 .stat-card {
    min-height: 164px;
    padding: 21px;
    overflow: hidden;
    border: 1px solid var(--panel-line);
    border-radius: 14px;
    background: #fff;
    color: var(--panel-ink);
    box-shadow: 0 9px 26px rgba(35, 55, 95, .045);
}

.panel-body-v2 .stat-card::before {
    display: none;
}

.panel-body-v2 .stat-card.accent {
    border-color: #c9d8f2;
    background:
        radial-gradient(circle at 100% 0, rgba(33, 88, 213, .12), transparent 12rem),
        linear-gradient(145deg, #f3f7ff, #fff);
}

.stat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-body-v2 .stat-card-top i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #f1f5fb;
    color: #667085;
    font-size: .72rem;
    font-style: normal;
}

.panel-body-v2 .stat-card.accent .stat-card-top i {
    background: #e0eaff;
    color: var(--panel-blue);
}

.panel-body-v2 .stat-card span,
.panel-body-v2 .stat-card small {
    color: var(--panel-muted);
    font-size: .65rem;
}

.panel-body-v2 .stat-card strong {
    margin: 13px 0 8px;
    color: #111a2b;
    font-size: clamp(1.65rem, 2.3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -.04em;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .7fr);
    align-items: start;
    gap: 20px;
}

.dashboard-side {
    display: grid;
    gap: 20px;
}

.card-head-v2 {
    margin-bottom: 18px;
}

.card-head-v2 > div {
    display: grid;
    gap: 3px;
}

.panel-body-v2 .card-head-v2 > div > span {
    color: #98a2b3;
    font-family: var(--mono);
    font-size: .49rem;
    font-weight: 650;
    letter-spacing: .11em;
}

.panel-body-v2 .card-head-v2 h2,
.panel-body-v2 .card-head-v2 h3 {
    color: #172033;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.panel-body-v2 .card-head-v2 > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--panel-blue);
    font-family: var(--body);
    font-size: .64rem;
    font-weight: 700;
}

.panel-body-v2 .table-wrap {
    margin-inline: -24px;
}

.panel-body-v2 table {
    color: var(--panel-ink);
    font-size: .72rem;
}

.panel-body-v2 th {
    padding: 11px 16px;
    border-color: #e7ecf3;
    background: #f8fafc;
    color: #7b8798;
    font-size: .51rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.panel-body-v2 td {
    padding: 14px 16px;
    border-color: #edf1f6;
    color: #344054;
}

.panel-body-v2 tbody tr:hover {
    background: #fbfcfe;
}

.panel-body-v2 td strong {
    color: #27364d;
    font-weight: 700;
}

.panel-body-v2 td small {
    color: #8a95a5;
    font-size: .6rem;
}

.customer-cell,
.admin-product-cell {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-cell > i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: #edf3ff;
    color: var(--panel-blue);
    font-size: .68rem;
    font-style: normal;
    font-weight: 800;
}

.customer-cell > span,
.admin-product-cell > span:last-child {
    min-width: 0;
}

.customer-cell small,
.admin-product-cell small {
    display: block;
}

.row-action,
.icon-action {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dfe6ef;
    border-radius: 9px;
    background: #fff;
    color: #526173;
    font-size: .78rem;
    transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}

.row-action:hover,
.icon-action:hover {
    border-color: #bfcde0;
    background: #f4f7fc;
    color: var(--panel-blue);
}

.panel-body-v2 .status {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    font-size: .57rem;
    font-weight: 700;
    line-height: 1;
}

.panel-body-v2 .status-completed,
.panel-body-v2 .status-paid {
    background: #e9f8f1;
    color: #117754;
}

.panel-body-v2 .status-reported,
.panel-body-v2 .status-preparing {
    background: #fff4dc;
    color: #9b6509;
}

.panel-body-v2 .status-canceled {
    background: #f2f4f7;
    color: #667085;
}

.health-row {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #edf1f6;
    color: #667085;
    font-size: .68rem;
}

.health-row > span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.health-row strong {
    color: #344054;
    font-size: .68rem;
}

.health-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f81e5;
}

.health-dot.live {
    background: #24a978;
}

.health-dot.service {
    background: #8c65d6;
}

.health-dot.hidden {
    background: #a9b0bb;
}

.panel-inline-link {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--panel-blue);
    font-size: .68rem;
    font-weight: 700;
}

.mini-product-list {
    display: grid;
}

.mini-product-list > a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #edf1f6;
}

.mini-product-list > a:last-child {
    border-bottom: 0;
}

.mini-product-cover,
.admin-product-cover {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid #e1e7ef;
    border-radius: 9px;
    background: #f2f5fa;
    color: #8591a3;
    font-size: .58rem;
    font-weight: 800;
}

.mini-product-cover {
    width: 42px;
    height: 42px;
}

.admin-product-cover {
    width: 50px;
    height: 50px;
}

.mini-product-cover img,
.admin-product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-product-list > a > span:nth-child(2) {
    min-width: 0;
    display: grid;
}

.mini-product-list strong {
    overflow: hidden;
    color: #344054;
    font-size: .67rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-product-list small {
    color: #8a95a5;
    font-size: .56rem;
}

.mini-product-list > a > b {
    color: #98a2b3;
}

.data-card {
    padding-top: 0 !important;
}

.data-card-toolbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.panel-body-v2 .toolbar-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.toolbar-search {
    position: relative;
    width: min(380px, 100%);
}

.toolbar-search svg {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 12px;
    width: 17px;
    height: 17px;
    color: #8d99aa;
    transform: translateY(-50%);
    pointer-events: none;
}

.panel-body-v2 .toolbar-search input {
    padding-left: 38px;
}

.toolbar-select {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7b8798;
    font-size: .61rem;
}

.toolbar-clear {
    padding: 8px;
    color: #7b8798;
    font-size: .62rem;
    font-weight: 650;
}

.toolbar-clear:hover {
    color: var(--panel-blue);
}

.result-count {
    flex: 0 0 auto;
    color: #7b8798;
    font-size: .62rem;
    font-weight: 650;
}

.panel-body-v2 input,
.panel-body-v2 select,
.panel-body-v2 textarea {
    width: 100%;
    min-height: 43px;
    padding: 10px 12px;
    border: 1px solid #d8e0eb;
    border-radius: 9px;
    outline: 0;
    background: #fff;
    color: #1d2939;
    font-size: .72rem;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.panel-body-v2 textarea {
    min-height: 100px;
    resize: vertical;
}

.panel-body-v2 input:focus,
.panel-body-v2 select:focus,
.panel-body-v2 textarea:focus {
    border-color: #82a1e4;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(33, 88, 213, .1);
}

.panel-body-v2 label {
    color: #475467;
    font-size: .66rem;
    font-weight: 650;
}

.panel-body-v2 label > small {
    color: #98a2b3;
    font-size: .57rem;
    font-weight: 500;
}

.panel-body-v2 .form-grid {
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.panel-body-v2 .form-grid .form-section {
    padding: clamp(24px, 3vw, 38px);
}

.panel-body-v2 .form-grid .form-section + .form-section {
    border-left: 1px solid var(--panel-line);
}

.form-card-heading {
    margin-bottom: 23px;
}

.form-card-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--panel-blue);
    font-family: var(--mono);
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .11em;
}

.form-card-heading h2 {
    margin: 0;
    color: #172033;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.025em;
}

.form-card-heading p {
    max-width: 510px;
    margin: 7px 0 0;
    color: #7b8798;
    font-size: .65rem;
    line-height: 1.65;
}

.form-subsection-heading {
    display: grid;
    gap: 2px;
    margin: 6px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--panel-line);
}

.form-subsection-heading strong {
    color: #27364d;
    font-size: .72rem;
}

.form-subsection-heading span {
    color: #8a95a5;
    font-size: .59rem;
}

.panel-body-v2 .form-stack {
    gap: 16px;
}

.panel-body-v2 .two-panel {
    gap: 20px;
}

.panel-body-v2 .compact-form {
    padding: 24px;
}

.check-card,
.publish-options .check-card {
    min-height: 67px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    border: 1px solid #dfe6ef;
    border-radius: 10px;
    background: #f8fafc;
}

.check-card input {
    width: 17px;
    height: 17px;
    min-height: 17px;
    flex: 0 0 auto;
}

.check-card > span {
    display: grid;
    gap: 2px;
}

.check-card b {
    color: #344054;
    font-size: .67rem;
}

.check-card small {
    color: #8a95a5;
    font-size: .56rem;
}

.publish-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.current-cover-wrap {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin: 8px 0 11px;
    padding: 10px;
    border: 1px solid #e1e7ef;
    border-radius: 11px;
    background: #f8fafc;
}

.current-cover-wrap .current-cover {
    width: 88px;
    height: 88px;
    margin: 0;
    border-radius: 8px;
    object-fit: cover;
}

.current-cover-wrap > span {
    display: grid;
}

.current-cover-wrap b {
    color: #344054;
    font-size: .66rem;
}

.current-cover-wrap small {
    color: #8a95a5;
    font-size: .58rem;
}

.info-note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    padding: 13px;
    border: 1px solid #d8e4f7;
    border-radius: 10px;
    background: #f4f8ff;
}

.info-note > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #e3edff;
    color: var(--panel-blue);
    font-family: var(--mono);
    font-weight: 700;
}

.info-note strong {
    color: #344054;
    font-size: .65rem;
}

.info-note p {
    margin: 3px 0 0;
    color: #6f7c8d;
    font-size: .59rem;
}

.delivery-pill,
.role-badge,
.current-account-badge {
    width: max-content;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    font-size: .56rem;
    font-weight: 700;
}

.delivery-pill.digital {
    background: #eaf0ff;
    color: #2758bd;
}

.delivery-pill.service {
    background: #f0eafb;
    color: #7353ad;
}

.role-badge {
    background: #eef2f7;
    color: #536176;
    text-transform: capitalize;
}

.current-account-badge {
    background: #e9f8f1;
    color: #117754;
}

.proof-admin {
    display: grid;
    gap: 2px;
}

.proof-admin > strong {
    color: #d58a0a !important;
}

.old-price {
    text-decoration: line-through;
}

.featured-note {
    color: var(--panel-blue) !important;
    font-weight: 650;
}

.table-actions-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    box-shadow: none;
}

.edit-action {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid #dfe6ef;
    border-radius: 9px;
    background: #fff;
    color: #344054;
    font-size: .61rem;
    font-weight: 700;
}

.edit-action:hover {
    border-color: #bfd0e8;
    color: var(--panel-blue);
}

.panel-body-v2 .danger-link {
    border-color: #f1d5d8;
    color: #b74d56;
}

.panel-body-v2 .table-empty {
    min-height: 110px;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 3px;
    color: #7b8798;
    text-align: center;
}

.table-empty strong {
    color: #344054;
    font-size: .75rem;
}

.table-empty span {
    color: #8a95a5;
    font-size: .62rem;
}

.panel-pagination {
    padding-top: 18px;
}

.panel-body-v2 .role-form {
    display: flex;
    align-items: center;
    gap: 7px;
}

.panel-body-v2 .role-form select {
    width: 135px;
}

.category-admin-layout {
    grid-template-columns: minmax(300px, .66fr) minmax(0, 1.34fr);
    align-items: start;
}

.create-category-card {
    position: sticky;
    top: 98px;
}

.category-product-count {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf3ff;
    color: var(--panel-blue) !important;
    font-size: .58rem !important;
    font-weight: 700;
}

.category-controls {
    align-items: end;
}

.sort-field {
    width: 92px;
    display: grid;
    gap: 5px;
}

.panel-body-v2 .summary-total {
    border-color: var(--panel-line);
    background: #f8fafc;
    color: #344054;
}

.panel-body-v2 .summary-total strong {
    color: #172033;
}

.panel-body-v2 .order-action-card hr {
    border-color: var(--panel-line);
}

.panel-body-v2 .order-action-card dt {
    color: #8a95a5;
}

.panel-body-v2 .order-action-card dd {
    color: #344054;
}

.panel-body-v2 .flash {
    border-radius: 11px;
}

@media (max-width: 1240px) {
    .panel-body-v2 .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-body-v2 .product-admin-table {
        min-width: 960px;
    }
}

@media (max-width: 980px) {
    .panel-body-v2 .sidebar {
        width: 282px;
        transform: translateX(-100%);
        transition: transform .24s ease;
    }

    .panel-body-v2 .sidebar.open {
        transform: translateX(0);
    }

    .panel-body-v2 .sidebar-backdrop {
        position: fixed;
        z-index: 80;
        inset: 0;
        display: block;
        border: 0;
        background: rgba(13, 31, 63, .42);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, visibility .2s;
    }

    .panel-body-v2.sidebar-is-open .sidebar-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .panel-body-v2 .panel-main {
        width: 100%;
        margin-left: 0;
    }

    .panel-body-v2 .icon-button {
        display: grid;
    }

    .panel-body-v2 .form-grid {
        grid-template-columns: 1fr;
    }

    .panel-body-v2 .form-grid .form-section + .form-section {
        border-top: 1px solid var(--panel-line);
        border-left: 0;
    }

    .category-admin-layout {
        grid-template-columns: 1fr;
    }

    .create-category-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .public-shell .standards-intro {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .public-shell .standards-grid {
        grid-template-columns: 1fr;
    }

    .public-shell .standards-grid article,
    .public-shell .standards-grid article + article {
        min-height: 190px;
        padding: 23px;
    }

    .panel-body-v2 .panel-topbar {
        min-height: 68px;
        padding: 0 16px;
    }

    .panel-quick-add,
    .panel-body-v2 .panel-user-meta {
        display: none;
    }

    .panel-body-v2 .panel-user {
        padding-left: 0;
        border-left: 0;
    }

    .panel-body-v2 .panel-content {
        padding: 28px 16px 58px;
    }

    .panel-body-v2 .panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .panel-heading-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .attention-banner {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .attention-banner > b {
        grid-column: 2;
    }

    .panel-body-v2 .stat-grid,
    .dashboard-side {
        grid-template-columns: 1fr;
    }

    .data-card-toolbar,
    .panel-body-v2 .toolbar-v2 {
        align-items: stretch;
        flex-direction: column;
    }

    .data-card-toolbar {
        padding: 18px 0;
    }

    .toolbar-search {
        width: 100%;
    }

    .result-count {
        align-self: flex-end;
    }

    .panel-body-v2 .table-wrap {
        margin-inline: -24px;
    }

    .panel-body-v2 .admin-table {
        min-width: 760px;
    }

    .publish-options,
    .panel-body-v2 .two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .public-shell .store-standards {
        padding: 72px 0 78px;
    }

    .public-shell .standards-intro h2 {
        font-size: clamp(2.55rem, 12.5vw, 3.65rem);
    }

    .standards-summary {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 18px;
    }

    .standards-summary-icon {
        width: 38px;
        height: 38px;
    }

    .public-shell .market-search {
        z-index: 140;
    }

    .public-shell .category-select-menu {
        z-index: 800;
    }
}

/* ==========================================================================
   v1.5.1 — transparent brand asset and bright glass commerce surfaces
   Kept as the final cascade layer so legacy dark cart/account rules cannot
   reduce contrast again.
   ========================================================================== */

.public-shell {
    --glass-ink: #14213a;
    --glass-muted: #66758c;
    --glass-blue: #245fda;
    --glass-blue-dark: #1745a7;
    --glass-line: rgba(255, 255, 255, .82);
    --glass-surface: rgba(255, 255, 255, .72);
    --glass-shadow: 0 26px 70px rgba(31, 61, 112, .13);
    color-scheme: light;
}

.public-shell .brand-wordmark,
.panel-brand-block .panel-brand {
    isolation: isolate;
    background: transparent !important;
}

.public-shell .brand-wordmark img,
.panel-brand-block .panel-brand img {
    background: transparent !important;
}

/* Public account, checkout and cart pages share one bright glass foundation. */
.public-shell .page-section,
.public-shell .auth-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 11% 8%, rgba(91, 144, 255, .26), transparent 27rem),
        radial-gradient(circle at 88% 28%, rgba(135, 226, 221, .2), transparent 25rem),
        radial-gradient(circle at 63% 93%, rgba(184, 148, 255, .16), transparent 27rem),
        linear-gradient(135deg, #eef4ff 0%, #f8fbff 46%, #edf5f8 100%);
    color: var(--glass-ink);
}

.public-shell .page-section::before,
.public-shell .auth-shell::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .28) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .35), transparent 76%);
    pointer-events: none;
    content: '';
}

.public-shell .page-section .page-title,
.public-shell .page-section .page-title h1,
.public-shell .auth-card h1 {
    color: var(--glass-ink);
}

.public-shell .page-section .page-title p,
.public-shell .page-section .muted,
.public-shell .auth-card .muted {
    color: var(--glass-muted);
}

.public-shell .page-section .eyebrow,
.public-shell .auth-shell .eyebrow {
    color: var(--glass-blue);
}

.public-shell .page-section .eyebrow::before,
.public-shell .auth-shell .eyebrow::before {
    background: var(--glass-blue);
}

.public-shell .page-section .back-link {
    color: #53647c;
}

.public-shell .page-section .back-link:hover {
    color: var(--glass-blue);
}

.public-shell .page-section .panel-card,
.public-shell .page-section .summary-card,
.public-shell .page-section .order-row,
.public-shell .page-section .empty-state,
.public-shell .auth-card {
    border: 1px solid var(--glass-line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .58));
    color: var(--glass-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        var(--glass-shadow);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.public-shell .page-section .panel-card,
.public-shell .page-section .summary-card,
.public-shell .auth-card {
    border-radius: 22px;
}

.public-shell .page-section .panel-card h2,
.public-shell .page-section .summary-card h2,
.public-shell .page-section .download-row strong,
.public-shell .page-section .summary-line strong,
.public-shell .page-section .summary-total,
.public-shell .page-section .summary-total strong,
.public-shell .page-section .order-row strong {
    color: var(--glass-ink);
}

.public-shell .page-section .summary-line,
.public-shell .page-section .summary-total,
.public-shell .page-section .download-row {
    border-color: rgba(100, 125, 164, .16);
}

.public-shell .page-section .summary-line span,
.public-shell .page-section .download-row span,
.public-shell .page-section .order-row span {
    color: var(--glass-muted);
}

.public-shell .page-section input,
.public-shell .page-section textarea,
.public-shell .page-section select,
.public-shell .auth-shell input,
.public-shell .auth-shell textarea,
.public-shell .auth-shell select {
    border: 1px solid rgba(120, 145, 181, .25);
    background: rgba(255, 255, 255, .74);
    color: var(--glass-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.public-shell .page-section input:focus,
.public-shell .page-section textarea:focus,
.public-shell .page-section select:focus,
.public-shell .auth-shell input:focus,
.public-shell .auth-shell textarea:focus,
.public-shell .auth-shell select:focus {
    border-color: rgba(36, 95, 218, .55);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(36, 95, 218, .11);
}

.public-shell .page-section label,
.public-shell .auth-shell label {
    color: #40516a;
}

.public-shell .page-section .button,
.public-shell .auth-shell .button,
.public-shell .cart-drawer .button {
    border-color: var(--glass-blue);
    background: linear-gradient(135deg, #2e6ce7, #1e53c5);
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .26),
        0 14px 30px rgba(36, 95, 218, .23);
}

.public-shell .page-section .button:hover,
.public-shell .auth-shell .button:hover,
.public-shell .cart-drawer .button:hover {
    border-color: var(--glass-blue-dark);
    background: linear-gradient(135deg, #3976ee, #1949ae);
}

.public-shell .page-section .button.secondary,
.public-shell .auth-shell .button.secondary {
    border-color: rgba(105, 130, 168, .25);
    background: rgba(255, 255, 255, .58);
    color: #2f4565;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

/* Full cart page */
.cart-page {
    min-height: 72vh;
    padding: clamp(76px, 8vw, 118px) 0 clamp(90px, 9vw, 132px);
}

.cart-page > .container {
    position: relative;
    z-index: 2;
}

.cart-page-orb {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, .3),
        0 30px 90px rgba(51, 90, 153, .12);
    filter: blur(.1px);
    pointer-events: none;
}

.cart-page-orb-one {
    top: 8%;
    left: -7rem;
    width: 22rem;
    height: 22rem;
}

.cart-page-orb-two {
    right: -8rem;
    bottom: 3%;
    width: 28rem;
    height: 28rem;
}

.public-shell .cart-page-title {
    align-items: flex-end;
    margin-bottom: 46px;
}

.public-shell .cart-page-title h1 {
    margin-top: 12px;
    font-size: clamp(3rem, 5.5vw, 5.3rem);
}

.cart-back-to-store {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid rgba(111, 137, 176, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
    color: #425675;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.cart-back-to-store:hover {
    border-color: rgba(36, 95, 218, .38);
    color: var(--glass-blue);
    transform: translateX(-2px);
}

.public-shell .cart-page .cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
    gap: 24px;
}

.cart-list {
    gap: 12px;
}

.cart-list-head {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 7px;
    color: #354b6c;
}

.cart-list-head > span {
    font-size: .74rem;
    font-weight: 800;
}

.cart-list-head > small {
    color: #718096;
    font-size: .62rem;
}

.public-shell .cart-page .cart-item {
    position: relative;
    min-height: 126px;
    grid-template-columns: 96px minmax(150px, 1fr) 122px auto 34px;
    gap: 19px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .58));
    color: var(--glass-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        0 18px 45px rgba(34, 66, 119, .09);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.public-shell .cart-page .cart-item:hover {
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        inset 0 1px 0 #fff,
        0 24px 54px rgba(34, 66, 119, .13);
    transform: translateY(-2px);
}

.public-shell .cart-page .cart-thumb {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(95, 121, 160, .15);
    border-radius: 14px;
    background: rgba(232, 239, 249, .72);
    box-shadow: 0 12px 26px rgba(39, 66, 108, .1);
}

.public-shell .cart-page .cart-thumb span {
    color: #6f83a2;
}

.public-shell .cart-page .cart-info {
    gap: 3px;
}

.public-shell .cart-page .cart-info > small {
    color: var(--glass-blue);
    font-family: var(--mono);
    font-size: .54rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.public-shell .cart-page .cart-info a {
    color: var(--glass-ink);
    font-size: 1.05rem;
    font-weight: 750;
}

.public-shell .cart-page .cart-info span {
    color: var(--glass-muted);
    font-size: .62rem;
}

.public-shell .cart-page .quantity-form {
    align-items: flex-end;
}

.public-shell .cart-page .quantity-form label {
    display: grid;
    gap: 5px;
    color: #748198;
    font-size: .56rem;
    font-weight: 700;
}

.public-shell .cart-page .quantity-form input {
    width: 55px;
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 10px;
    text-align: center;
}

.public-shell .cart-page .quantity-form button {
    min-height: 40px;
    padding: 0 9px;
    border: 1px solid rgba(102, 128, 166, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .58);
    color: #435975;
    font-size: .6rem;
    font-weight: 700;
}

.public-shell .cart-page .quantity-form button:hover {
    border-color: rgba(36, 95, 218, .35);
    color: var(--glass-blue);
}

.cart-item-total {
    color: var(--glass-ink);
    font-family: var(--mono);
    font-size: .78rem;
    white-space: nowrap;
}

.cart-remove-form {
    display: flex;
    align-items: center;
}

.public-shell .cart-page .cart-remove-form .danger-link {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(183, 92, 103, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .46);
    color: #a55f69;
    font-size: 1rem;
}

.public-shell .cart-page .cart-remove-form .danger-link:hover {
    border-color: rgba(183, 92, 103, .3);
    background: rgba(255, 240, 242, .72);
    color: #b23e4d;
}

.public-shell .cart-summary-card {
    top: 116px;
    padding: 28px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(239, 247, 255, .66));
}

.summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--glass-blue);
    font-family: var(--mono);
    font-size: .52rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.summary-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39b983;
    box-shadow: 0 0 0 5px rgba(57, 185, 131, .1);
}

.public-shell .cart-summary-card h2 {
    margin: 12px 0 24px;
    font-size: 1.45rem;
}

.public-shell .cart-summary-card .summary-total {
    margin: 6px 0 15px;
    padding: 20px 0;
    font-size: .86rem;
}

.public-shell .cart-summary-card .summary-total strong {
    font-family: var(--mono);
    font-size: 1.2rem;
}

.public-shell .cart-summary-card .button {
    min-height: 54px;
    justify-content: space-between;
    border-radius: 13px;
}

.summary-assurance {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba(100, 125, 164, .15);
    color: #65758a;
    font-size: .61rem;
}

.summary-assurance span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-assurance i {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(57, 185, 131, .12);
    color: #16845a;
    font-size: .58rem;
    font-style: normal;
    font-weight: 800;
}

.public-shell .cart-empty-state {
    min-height: 410px;
    border-style: solid;
    border-radius: 26px;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 20px;
    background: rgba(255, 255, 255, .55);
    color: var(--glass-blue);
    box-shadow: 0 16px 35px rgba(36, 95, 218, .12);
    font-family: var(--display);
    font-weight: 800;
}

/* Bright glass cart drawer */
.public-shell .cart-backdrop {
    background: rgba(27, 48, 83, .26);
    backdrop-filter: blur(12px) saturate(115%);
    -webkit-backdrop-filter: blur(12px) saturate(115%);
}

.public-shell .cart-drawer {
    isolation: isolate;
    overflow: hidden;
    width: min(490px, 100%);
    border-left: 1px solid rgba(255, 255, 255, .85);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .88), rgba(240, 247, 255, .74));
    color: var(--glass-ink);
    box-shadow:
        inset 1px 0 0 rgba(255, 255, 255, .96),
        -34px 0 90px rgba(25, 52, 98, .2);
    backdrop-filter: blur(30px) saturate(160%);
    -webkit-backdrop-filter: blur(30px) saturate(160%);
}

.public-shell .cart-drawer::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 92% 3%, rgba(82, 139, 255, .25), transparent 19rem),
        radial-gradient(circle at 5% 50%, rgba(116, 225, 215, .18), transparent 20rem),
        radial-gradient(circle at 88% 94%, rgba(177, 145, 255, .17), transparent 18rem);
    pointer-events: none;
    content: '';
}

.public-shell .cart-drawer-head {
    min-height: 112px;
    padding: 26px 28px 22px;
    border-bottom: 1px solid rgba(97, 123, 163, .15);
    background: rgba(255, 255, 255, .28);
}

.cart-drawer-title {
    display: grid;
    gap: 7px;
}

.public-shell .cart-drawer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4870b5;
    font-size: .5rem;
    font-weight: 750;
}

.cart-drawer-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39b983;
    box-shadow: 0 0 0 5px rgba(57, 185, 131, .11);
}

.public-shell .cart-drawer-head h2 {
    margin: 0;
    color: var(--glass-ink);
    font-size: 1.72rem;
    font-weight: 750;
    letter-spacing: -.035em;
}

.public-shell .cart-drawer-head h2 span {
    margin-left: 6px;
    color: #74829a;
    font-family: var(--body);
    font-size: .66rem;
    font-weight: 650;
    letter-spacing: 0;
}

.public-shell .cart-drawer-head > button {
    width: 42px;
    height: 42px;
    border-color: rgba(97, 123, 163, .18);
    background: rgba(255, 255, 255, .46);
    color: #60718c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.public-shell .cart-drawer-head > button:hover {
    border-color: rgba(36, 95, 218, .32);
    background: rgba(255, 255, 255, .74);
    color: var(--glass-blue);
}

.public-shell .cart-drawer-body {
    padding: 24px 28px;
    scrollbar-color: rgba(94, 122, 164, .3) transparent;
}

.public-shell .drawer-item {
    min-height: 108px;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .52));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .96),
        0 15px 36px rgba(35, 65, 112, .09);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.public-shell .drawer-item + .drawer-item {
    margin-top: 12px;
}

.public-shell .drawer-thumb {
    width: 84px;
    height: 84px;
    border: 1px solid rgba(106, 132, 171, .14);
    border-radius: 13px;
    background: rgba(232, 239, 249, .72);
    box-shadow: 0 9px 22px rgba(37, 63, 104, .1);
}

.public-shell .drawer-thumb span {
    color: #7285a2;
}

.public-shell .drawer-item-copy > a {
    color: var(--glass-ink);
    font-size: .92rem;
    font-weight: 750;
}

.public-shell .drawer-item-copy small {
    color: #728096;
    font-size: .61rem;
}

.public-shell .drawer-item-copy strong {
    color: #1b3154;
    font-size: .73rem;
}

.public-shell .drawer-item > form button {
    border-radius: 50%;
    color: #8a97aa;
}

.public-shell .drawer-item > form button:hover {
    background: rgba(255, 232, 235, .72);
    color: #b23e4d;
}

.public-shell .drawer-empty > span {
    color: var(--glass-blue);
}

.public-shell .drawer-empty h3 {
    color: var(--glass-ink);
}

.public-shell .drawer-empty p {
    color: var(--glass-muted);
}

.public-shell .drawer-empty .button.secondary {
    border-color: rgba(36, 95, 218, .22);
    background: rgba(255, 255, 255, .58);
    color: var(--glass-blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.public-shell .cart-drawer-foot {
    padding: 24px 28px 26px;
    border-top: 1px solid rgba(97, 123, 163, .15);
    background: rgba(255, 255, 255, .44);
    box-shadow: 0 -18px 45px rgba(49, 75, 118, .06);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.public-shell .drawer-subtotal {
    margin-bottom: 18px;
    color: #5f6f86;
}

.public-shell .drawer-subtotal > span {
    display: grid;
    gap: 2px;
}

.public-shell .drawer-subtotal small {
    color: #8a98ab;
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .09em;
}

.public-shell .drawer-subtotal strong {
    color: var(--glass-ink);
    font-size: 1.28rem;
}

.public-shell .drawer-checkout {
    min-height: 56px;
    border-radius: 14px;
}

.public-shell .drawer-assurance {
    color: #697990;
}

.public-shell .drawer-assurance span {
    display: inline-flex;
    align-items: center;
}

.public-shell .drawer-continue {
    color: #65758c;
}

.public-shell .drawer-continue:hover {
    color: var(--glass-blue);
}

/* Glass highlights in suitable storefront and admin surfaces. */
.public-shell .purchase-panel,
.public-shell .market-search {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .68));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        0 25px 60px rgba(36, 62, 105, .1);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.panel-body-v2 {
    background:
        radial-gradient(circle at 90% 5%, rgba(99, 151, 255, .18), transparent 28rem),
        radial-gradient(circle at 36% 92%, rgba(105, 219, 207, .12), transparent 30rem),
        linear-gradient(135deg, #edf3fb, #f7faff 48%, #eef4f8);
}

.panel-body-v2 .panel-topbar {
    border-bottom-color: rgba(255, 255, 255, .8);
    background: rgba(249, 252, 255, .73);
    box-shadow: 0 8px 30px rgba(32, 57, 99, .055);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.panel-body-v2 .panel-card,
.panel-body-v2 .stat-card,
.panel-body-v2 .attention-banner,
.panel-body-v2 .form-grid,
.panel-body-v2 .create-category-card {
    border-color: rgba(255, 255, 255, .88);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .6));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        0 18px 46px rgba(35, 63, 109, .085);
    backdrop-filter: blur(20px) saturate(145%);
    -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.panel-body-v2 .panel-card:hover,
.panel-body-v2 .stat-card:hover {
    border-color: #fff;
    box-shadow:
        inset 0 1px 0 #fff,
        0 22px 52px rgba(35, 63, 109, .11);
}

.panel-body-v2 .attention-banner {
    border-color: rgba(255, 224, 160, .9);
    background:
        linear-gradient(145deg, rgba(255, 252, 241, .94), rgba(255, 246, 222, .7));
}

.panel-body-v2 input,
.panel-body-v2 select,
.panel-body-v2 textarea,
.panel-body-v2 .check-card,
.panel-body-v2 .current-cover-wrap,
.panel-body-v2 .row-action,
.panel-body-v2 .icon-action,
.panel-body-v2 .edit-action {
    background: rgba(255, 255, 255, .68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
    .public-shell .cart-page .cart-layout {
        grid-template-columns: 1fr;
    }

    .public-shell .cart-summary-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .public-shell .cart-page-title {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .public-shell .cart-page .cart-item {
        grid-template-columns: 82px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .public-shell .cart-page .cart-thumb {
        width: 82px;
        height: 82px;
    }

    .public-shell .cart-page .quantity-form {
        grid-column: 2;
        align-items: flex-end;
    }

    .cart-item-total {
        grid-column: 3;
        grid-row: 2;
        align-self: end;
    }

    .cart-remove-form {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }

    .public-shell .cart-drawer-head,
    .public-shell .cart-drawer-body,
    .public-shell .cart-drawer-foot {
        padding-inline: 20px;
    }
}

@media (max-width: 520px) {
    .cart-page {
        padding-top: 58px;
    }

    .cart-list-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .public-shell .cart-page .cart-item {
        grid-template-columns: 70px minmax(0, 1fr) 30px;
        padding: 12px;
    }

    .public-shell .cart-page .cart-thumb {
        width: 70px;
        height: 70px;
    }

    .public-shell .cart-page .cart-info a {
        font-size: .9rem;
    }

    .public-shell .cart-page .quantity-form {
        grid-column: 1 / 3;
    }

    .cart-item-total {
        grid-column: 3;
    }

    .public-shell .cart-summary-card {
        padding: 23px;
    }

    .public-shell .cart-drawer-head {
        min-height: 98px;
    }

    .public-shell .drawer-item {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .public-shell .drawer-thumb {
        width: 72px;
        height: 72px;
    }

    .public-shell .drawer-assurance {
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell .cart-page .cart-item,
    .cart-back-to-store,
    .panel-body-v2 .panel-card,
    .panel-body-v2 .stat-card {
        transition: none;
    }
}

/* ==========================================================================
   v1.5.2 — customer account separated from seller/admin panels
   ========================================================================== */

.customer-account-page {
    min-height: 76vh;
    padding: clamp(72px, 8vw, 112px) 0 clamp(92px, 10vw, 144px);
}

.customer-account-page > .container {
    position: relative;
    z-index: 2;
}

.account-orb {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    box-shadow:
        inset 0 0 50px rgba(255, 255, 255, .38),
        0 35px 100px rgba(48, 82, 140, .12);
    pointer-events: none;
}

.account-orb-one {
    top: 4%;
    left: -9rem;
    width: 26rem;
    height: 26rem;
}

.account-orb-two {
    right: -10rem;
    bottom: 0;
    width: 31rem;
    height: 31rem;
}

.customer-account-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    align-items: stretch;
    gap: 18px;
    margin-bottom: 18px;
}

.account-welcome,
.account-identity,
.account-summary-grid article,
.customer-account-page .account-orders {
    border: 1px solid rgba(255, 255, 255, .86);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .58));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        0 24px 65px rgba(31, 61, 112, .11);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.account-welcome {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 26px;
}

.account-welcome h1 {
    max-width: 650px;
    margin: 13px 0 12px;
    color: var(--glass-ink);
    font-size: clamp(2.6rem, 5.2vw, 4.9rem);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: .96;
}

.account-welcome p {
    max-width: 560px;
    margin: 0 0 25px;
    color: var(--glass-muted);
    font-size: .84rem;
    line-height: 1.7;
}

.account-welcome .button {
    width: max-content;
}

.account-identity {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    gap: 16px;
    padding: 28px;
    overflow: hidden;
    border-radius: 26px;
}

.account-identity::after {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 13rem;
    height: 13rem;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: rgba(87, 141, 255, .09);
    content: '';
}

.account-avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(77, 118, 193, .16);
    border-radius: 18px;
    background: linear-gradient(145deg, #f5f8ff, #dce8ff);
    color: var(--glass-blue);
    box-shadow: 0 13px 30px rgba(43, 83, 151, .13);
    font-size: 1rem;
    font-weight: 800;
}

.account-identity > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.account-identity small,
.account-section-head small {
    color: var(--glass-blue);
    font-family: var(--mono);
    font-size: .52rem;
    font-weight: 750;
    letter-spacing: .11em;
}

.account-identity strong {
    overflow: hidden;
    color: var(--glass-ink);
    font-size: .94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-identity em {
    overflow: hidden;
    color: var(--glass-muted);
    font-size: .69rem;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-identity > i {
    position: absolute;
    right: 24px;
    bottom: 22px;
    padding: 6px 10px;
    border: 1px solid rgba(53, 109, 222, .16);
    border-radius: 999px;
    background: rgba(233, 241, 255, .72);
    color: var(--glass-blue);
    font-size: .57rem;
    font-style: normal;
    font-weight: 750;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.account-summary-grid article {
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 23px;
    border-radius: 20px;
}

.account-summary-grid article:first-child {
    background:
        radial-gradient(circle at 100% 0, rgba(69, 126, 245, .14), transparent 10rem),
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .62));
}

.account-summary-grid span {
    color: #52657f;
    font-size: .67rem;
    font-weight: 750;
}

.account-summary-grid strong {
    margin: 3px 0;
    color: var(--glass-ink);
    font-size: 2rem;
    font-weight: 750;
    letter-spacing: -.05em;
}

.account-summary-grid small {
    color: #7a889c;
    font-size: .6rem;
}

.customer-account-page .account-orders {
    padding: 8px 22px 22px;
    border-radius: 26px;
}

.account-section-head {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 5px;
}

.account-section-head > div {
    display: grid;
    gap: 4px;
}

.account-section-head h2 {
    margin: 0;
    color: var(--glass-ink);
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -.03em;
}

.account-section-head > span {
    padding: 7px 10px;
    border: 1px solid rgba(105, 130, 168, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
    color: #63738a;
    font-size: .59rem;
    font-weight: 700;
}

.customer-account-page .order-list {
    gap: 10px;
}

.customer-account-page .order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 34px;
    gap: 20px;
    padding: 18px 17px 18px 20px;
    border-color: rgba(255, 255, 255, .9);
    border-radius: 17px;
    background: rgba(255, 255, 255, .58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 10px 28px rgba(39, 69, 119, .055);
    transition:
        border-color .18s ease,
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.customer-account-page .order-row:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .78);
    box-shadow:
        inset 0 1px 0 #fff,
        0 16px 36px rgba(39, 69, 119, .1);
    transform: translateY(-2px);
}

.customer-account-page .order-row > div:last-of-type {
    align-items: flex-end;
}

.customer-account-page .order-row > b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    align-self: center;
    border: 1px solid rgba(104, 130, 169, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .62);
    color: var(--glass-blue);
    font-size: .72rem;
}

.customer-account-page .status {
    border-radius: 999px;
    font-weight: 700;
}

.customer-account-page .status-pending {
    border-color: rgba(180, 118, 0, .16);
    background: #fff5df;
    color: #956000;
}

.customer-account-page .status-reported,
.customer-account-page .status-preparing {
    border-color: rgba(36, 95, 218, .15);
    background: #eaf1ff;
    color: #2158c8;
}

.customer-account-page .status-paid,
.customer-account-page .status-completed {
    border-color: rgba(16, 130, 88, .15);
    background: #e8f8f1;
    color: #117554;
}

.customer-account-page .status-canceled {
    border-color: rgba(101, 113, 132, .13);
    background: #f0f3f7;
    color: #667085;
}

.customer-account-page .empty-state {
    min-height: 300px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 42px;
    border-radius: 18px;
    text-align: center;
}

.customer-account-page .empty-state > span {
    color: var(--glass-blue);
    font-family: var(--mono);
    font-size: .52rem;
    font-weight: 750;
    letter-spacing: .12em;
}

.customer-account-page .empty-state h2 {
    margin: 0;
    color: var(--glass-ink);
}

.customer-account-page .empty-state p {
    max-width: 430px;
    margin: 0 0 14px;
    color: var(--glass-muted);
    font-size: .72rem;
    line-height: 1.65;
}

@media (max-width: 860px) {
    .customer-account-hero {
        grid-template-columns: 1fr;
    }

    .account-identity {
        min-height: 150px;
    }
}

@media (max-width: 620px) {
    .customer-account-page {
        padding: 58px 0 86px;
    }

    .account-welcome,
    .account-identity {
        padding: 24px 20px;
        border-radius: 21px;
    }

    .account-welcome h1 {
        font-size: clamp(2.5rem, 14vw, 3.75rem);
    }

    .account-summary-grid {
        grid-template-columns: 1fr;
    }

    .account-summary-grid article {
        min-height: 100px;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .account-summary-grid article span,
    .account-summary-grid article small {
        grid-column: 1;
    }

    .account-summary-grid article strong {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .customer-account-page .account-orders {
        padding: 7px 12px 14px;
        border-radius: 21px;
    }

    .account-section-head {
        min-height: 82px;
        padding-inline: 4px;
    }

    .customer-account-page .order-row {
        grid-template-columns: minmax(0, 1fr) 30px;
        gap: 12px;
        padding: 16px;
    }

    .customer-account-page .order-row > div:last-of-type {
        grid-column: 1;
        align-items: flex-start;
    }

    .customer-account-page .order-row > b {
        grid-column: 2;
        grid-row: 1 / 3;
        width: 30px;
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .customer-account-page .order-row {
        transition: none;
    }
}

/* ==========================================================================
   v1.5.3 — compact product preview action
   ========================================================================== */

.public-shell .market-product-card .product-image::after {
    opacity: .34;
}

.public-shell .market-product-card:hover .product-image::after,
.public-shell .market-product-card .product-image:focus-visible::after {
    opacity: .52;
}

.public-shell .market-product-card .product-view {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: auto;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px 6px 11px;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #172b4d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        0 7px 20px rgba(15, 23, 42, .13);
    font-size: .57rem;
    font-weight: 720;
    line-height: 1;
    letter-spacing: .01em;
    opacity: 0;
    transform: translateY(5px) scale(.97);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    transition:
        opacity .2s ease,
        transform .24s cubic-bezier(.2, .8, .2, 1),
        background-color .2s ease;
}

.public-shell .market-product-card .product-view b {
    color: #2158d5;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease;
}

.public-shell .market-product-card:hover .product-view,
.public-shell .market-product-card .product-image:focus-visible .product-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.public-shell .market-product-card:hover .product-view b,
.public-shell .market-product-card .product-image:focus-visible .product-view b {
    transform: translateX(2px);
}

@media (max-width: 760px), (hover: none) {
    .public-shell .market-product-card .product-view {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell .market-product-card .product-view,
    .public-shell .market-product-card .product-view b {
        transition: none;
    }
}

/* ==========================================================================
   v1.5.4 — deploy-safe card action and collision-free catalog heading
   ========================================================================== */

/* Keep the copy and the filter surface in separate rows at every desktop
   width. Long editable headings can no longer intrude into the filter bar. */
.public-shell .market-section-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 30px;
    margin-bottom: 28px;
    scroll-margin-top: 104px;
}

.public-shell .market-catalog {
    scroll-margin-top: 104px;
}

.public-shell .catalog-heading-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 880px);
    min-width: 0;
}

.public-shell .catalog-heading-copy h2 {
    max-width: 17ch;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.public-shell .catalog-heading-copy > p:last-child {
    max-width: 64ch;
}

.public-shell .market-section-head .market-search {
    width: 100%;
    margin: 0;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, .72fr) auto;
    isolation: isolate;
}

/* This is intentionally a new class rather than another product-view
   override. It prevents any cached legacy rule from restoring the old
   full-width “Ürünü incele” overlay after the updated Blade is installed. */
.public-shell .market-product-card .product-card-preview {
    position: absolute;
    z-index: 5;
    right: 12px;
    bottom: 12px;
    left: auto;
    width: auto;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px 6px 11px;
    border: 1px solid rgba(255, 255, 255, .94);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: #172b4d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .98),
        0 7px 20px rgba(15, 23, 42, .13);
    font-size: .57rem;
    font-weight: 720;
    line-height: 1;
    letter-spacing: .01em;
    opacity: 0;
    transform: translateY(5px) scale(.97);
    pointer-events: none;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    transition:
        opacity .2s ease,
        transform .24s cubic-bezier(.2, .8, .2, 1),
        background-color .2s ease;
}

.public-shell .market-product-card .product-card-preview b {
    color: #2158d5;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease;
}

.public-shell .market-product-card:hover .product-card-preview,
.public-shell .market-product-card .product-image:focus-visible .product-card-preview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.public-shell .market-product-card:hover .product-card-preview b,
.public-shell .market-product-card .product-image:focus-visible .product-card-preview b {
    transform: translateX(2px);
}

@media (max-width: 760px), (hover: none) {
    .public-shell .market-section-head {
        gap: 24px;
        scroll-margin-top: 88px;
    }

    .public-shell .market-catalog {
        scroll-margin-top: 88px;
    }

    .public-shell .market-section-head .market-search {
        grid-template-columns: minmax(0, 1fr);
    }

    .public-shell .market-product-card .product-card-preview {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-shell .market-product-card .product-card-preview,
    .public-shell .market-product-card .product-card-preview b {
        transition: none;
    }
}

/* ==========================================================================
   v1.5.5 — deterministic catalog anchor below the sticky navigation
   ========================================================================== */

html {
    scroll-padding-top: 116px;
}

/* #products now belongs to the visible heading block rather than the outer
   section. This keeps the editable title clear of the sticky black header even
   when the browser restores a previous scroll position or loads a hash URL. */
.public-shell .market-section-head#products {
    scroll-margin-top: 116px;
    padding-top: 16px;
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 100px;
    }

    .public-shell .market-section-head#products {
        scroll-margin-top: 100px;
        padding-top: 12px;
    }
}

/* ==========================================================================
   v1.5.8 — catalog copy paints behind the sticky black navigation
   ========================================================================== */

/*
 * Keep the navigation's preferred sticky behavior, but make its paint order
 * deterministic. Catalog copy can move geometrically beneath the bar during
 * ordinary scrolling; the opaque header always covers it instead of allowing
 * the heading to paint over the navigation.
 */
.public-shell .site-header {
    z-index: 160;
    isolation: isolate;
    background: #070708;
}

.public-shell .market-section-head {
    z-index: 40;
}

.public-shell .market-section-head:has(.category-select.is-open) {
    z-index: 140;
}

.public-shell .catalog-heading-copy {
    z-index: auto;
}

/* ==========================================================================
   v1.5.6 — structural catalog/header separation
   ========================================================================== */

/*
 * The navigation no longer floats above document content. Keeping it in normal
 * flow removes the overlap at its source for hash navigation, restored scroll
 * positions and ordinary mouse-wheel scrolling alike.
 */
.public-shell .site-header {
    position: relative;
    top: auto;
}

html {
    scroll-padding-top: 28px;
}

.public-shell .market-section-head#products {
    scroll-margin-top: 28px;
    padding-top: 0;
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 22px;
    }

    .public-shell .market-section-head#products {
        scroll-margin-top: 22px;
        padding-top: 0;
    }
}

/* ==========================================================================
   v1.5.7 — sticky storefront navigation restored
   ========================================================================== */

/*
 * The announcement strip scrolls away normally. Once the black navigation
 * reaches the viewport edge it stays there, while the catalog anchor keeps
 * enough clearance to remain fully readable underneath it.
 */
.public-shell .site-header {
    position: sticky;
    top: 0;
}

html {
    scroll-padding-top: 116px;
}

.public-shell .market-section-head#products {
    scroll-margin-top: 116px;
    padding-top: 16px;
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 100px;
    }

    .public-shell .market-section-head#products {
        scroll-margin-top: 100px;
        padding-top: 12px;
    }
}
