:root {
    --bg: #07111f;
    --surface: #101b2c;
    --surface-2: #152236;
    --surface-3: #1b2b42;
    --line: #263a55;
    --line-soft: rgba(148, 163, 184, .18);
    --text: #eef6ff;
    --muted: #9fb0c7;
    --faint: #73849b;
    --green: #0aa16f;
    --green-2: #087a57;
    --blue: #4a86ff;
    --red: #ef3f5c;
    --amber: #f5b84b;
    --white: #fff;
    --shadow: 0 22px 52px rgba(0, 0, 0, .28);
    --radius: 10px;
}

* { box-sizing: border-box; }

html {
    background: var(--bg);
    color: var(--text);
}

body.bdx-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 16% 0, rgba(74, 134, 255, .16), transparent 32%),
        radial-gradient(circle at 78% 8%, rgba(10, 161, 111, .13), transparent 30%),
        linear-gradient(180deg, #081323 0, #07111f 420px, #08111d 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 17, 31, .94);
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
}

.header-main {
    display: grid;
    grid-template-columns: 220px minmax(260px, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(1360px, calc(100% - 40px));
    min-height: 74px;
    margin: 0 auto;
}

.brand {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    line-height: 1;
}

.brand-mark {
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(25, 209, 138, .32);
    border-radius: 12px;
    background: linear-gradient(135deg, #0aa16f, #2b64d8);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 12px 26px rgba(10, 161, 111, .22);
}

.brand-main {
    color: var(--text);
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.brand-main span,
.brand span {
    color: #19d18a;
}

.brand-sub {
    color: #8fe7c3;
    font-size: 12px;
    font-weight: 800;
}

.market-search {
    position: relative;
    display: grid;
    grid-template-columns: 92px minmax(120px, 1fr) 104px;
    height: 46px;
    border: 1px solid #314762;
    border-radius: 8px;
    background: #fff;
}

.market-search select,
.market-search input {
    min-width: 0;
    border: 0;
    border-right: 1px solid #d6dfeb;
    background: #fff;
    color: #172033;
    outline: 0;
    padding: 0 14px;
}

.market-search button {
    border: 0;
    background: var(--green);
    color: #fff;
    font-weight: 900;
}

.search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 92px;
    display: grid;
    gap: 6px;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease;
}

.market-search:focus-within .search-panel,
.market-search:hover .search-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.search-panel a {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-radius: 8px;
    padding: 8px;
}

.search-panel a:hover { background: #eef6ff; }

.search-panel img {
    width: 42px;
    height: 42px;
    border-radius: 7px;
    object-fit: cover;
}

.search-panel strong {
    display: block;
    overflow: hidden;
    color: #101827;
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-panel small {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 900;
}

.header-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-radius: 8px;
    padding: 0 14px;
}

.header-actions .sell {
    background: var(--green);
    color: #fff;
}

.header-actions .login {
    border: 1px solid #314762;
}

.category-nav {
    display: flex;
    gap: 22px;
    width: min(1360px, calc(100% - 40px));
    min-height: 44px;
    margin: 0 auto;
    overflow-x: auto;
    color: #c7d3e5;
    font-size: 13px;
    font-weight: 900;
}

.category-nav a {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.shell {
    width: min(1360px, calc(100% - 40px));
    margin: 28px auto 42px;
}

.stack-lg { display: grid; gap: 18px; }
.stack-xl { display: grid; gap: 22px; }

.hero-panel,
.section-card,
.seller-feature,
.trust-strip,
.filter-panel,
.catalog-hero-panel,
.catalog-toolbar,
.seller-store-hero,
.product-gallery,
.product-detail,
.seller-summary,
.order-main,
.order-side,
.support-main,
.support-nav,
.form-panel,
.info-box {
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: rgba(16, 27, 44, .94);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    align-items: center;
    min-height: 360px;
    padding: 28px;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(135deg, rgba(15, 31, 51, .98), rgba(8, 64, 58, .94));
    background-size: 34px 34px, 34px 34px, auto;
}

.eyebrow,
.seller-mark {
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(119, 225, 177, .28);
    border-radius: 999px;
    background: rgba(10, 161, 111, .12);
    color: #8ff0c7;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

h1, h2, h3 {
    margin: 0;
    color: var(--white);
    font-family: "Plus Jakarta Sans", Inter, sans-serif;
    letter-spacing: 0;
    line-height: 1.12;
}

h1 { font-size: clamp(34px, 4vw, 56px); font-weight: 800; }
h2 { font-size: 24px; font-weight: 800; }
h3 { font-size: 18px; font-weight: 800; }
p { margin: 0; color: var(--muted); line-height: 1.65; font-weight: 700; }

.hero-copy {
    display: grid;
    gap: 16px;
}

.hero-copy p {
    max-width: 780px;
    color: #d6e2f1;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 16px;
    font-weight: 900;
}

.btn.primary,
.primary {
    background: linear-gradient(180deg, #0bb178, var(--green-2));
    color: #fff;
}

.btn.secondary,
.secondary {
    border: 1px solid #405875;
    background: #17263b;
    color: #e7f0ff;
}

.btn.danger,
.danger {
    border: 1px solid rgba(239, 63, 92, .42);
    background: rgba(239, 63, 92, .16);
    color: #ffb4c0;
}

.full { width: 100%; }

.hero-showcase {
    display: grid;
    gap: 12px;
}

.hero-feature-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .20);
    border-radius: 14px;
    background: rgba(9, 20, 36, .74);
    padding: 12px;
}

.hero-feature-card img {
    width: 150px;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    object-fit: cover;
}

.hero-feature-card span {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.hero-feature-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hero-feature-card small {
    color: #8ff0c7;
    font-size: 14px;
    font-weight: 900;
}

.hero-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hero-mini-grid a {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 10px;
    background: rgba(9, 20, 36, .72);
}

.hero-mini-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .18s ease;
}

.hero-mini-grid a:hover img {
    transform: scale(1.05);
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hero-trust-row span {
    display: grid;
    place-items: center;
    min-height: 36px;
    border: 1px solid rgba(119, 225, 177, .22);
    border-radius: 999px;
    background: rgba(10, 161, 111, .12);
    color: #9af2cc;
    font-size: 12px;
    font-weight: 900;
}

.trust-strip strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.trust-strip span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.section-card {
    padding: 20px;
}

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

.section-head a {
    border-radius: 8px;
    background: #1c2c43;
    color: #dce7f5;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
}

.category-tile {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.category-tile span {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(119, 225, 177, .18);
    border-radius: 12px;
    background: linear-gradient(135deg, #0d314f, #087066);
}

.category-tile img {
    width: 48%;
    height: 48%;
    object-fit: contain;
}

.category-tile strong {
    overflow: hidden;
    color: #fff;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-tile small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.seller-feature {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
}

.seller-feature-copy {
    display: grid;
    align-content: start;
    gap: 14px;
}

dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-weight: 800;
}

dt, dd { margin: 0; }
dd { color: #fff; font-weight: 900; }

.seller-feature-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.seller-network {
    grid-template-columns: 360px minmax(0, 1fr);
}

.launch-seller-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.launch-seller-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 178px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 14px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.launch-seller-card:hover {
    border-color: rgba(74, 134, 255, .72);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .30);
    transform: translateY(-4px);
}

.launch-seller-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0aa16f, #4a86ff);
    color: #fff;
    font-weight: 900;
}

.launch-seller-card strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.launch-seller-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.mini-offer {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
}

.mini-offer img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.mini-offer span {
    display: grid;
    gap: 4px;
    padding: 10px;
}

.mini-offer strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-weight: 900;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-offer small { color: #8ff0c7; font-weight: 900; }

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

.product-card {
    display: grid;
    grid-template-rows: auto 24px 44px 32px 30px 38px;
    gap: 8px;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 10px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    border-color: rgba(74, 134, 255, .72);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
    transform: translateY(-4px);
}

.poster {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 10px;
    background: #0d1827;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.product-card:hover .poster img {
    transform: scale(1.04);
}

.meta-line {
    display: flex;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.meta-line em {
    display: inline-flex;
    align-items: center;
    max-width: 50%;
    min-height: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(74, 134, 255, .14);
    color: #9bc0ff;
    padding: 0 8px;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta-line em:last-child {
    background: rgba(10, 161, 111, .14);
    color: #91f0ca;
}

.product-card > strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.seller-line {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.price-row b {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.price-row i {
    color: #91f0ca;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.buy-cta {
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.trust-strip div {
    display: grid;
    gap: 4px;
    min-height: 84px;
    align-content: center;
    border-right: 1px solid var(--line-soft);
    padding: 16px;
}

.trust-strip div:last-child { border-right: 0; }

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
}

.filter-panel {
    position: sticky;
    top: 140px;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 18px;
}

.filter-group {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--line-soft);
    padding-top: 16px;
}

.filter-group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.filter-group strong {
    color: #fff;
    font-weight: 900;
}

.filter-group a,
.filter-group label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
}

.filter-group a.active {
    color: #fff;
}

.filter-group input {
    accent-color: var(--blue);
}

.price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.price-range span {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-3);
    color: var(--muted);
    padding: 10px;
    font-weight: 800;
}

.catalog-hero-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
}

.catalog-hero-panel h1 {
    max-width: 760px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
}

.catalog-toolbar strong {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.catalog-toolbar div {
    display: flex;
    gap: 8px;
}

.catalog-toolbar span {
    border-radius: 8px;
    background: var(--surface-3);
    color: #dbeafe;
    padding: 8px 10px;
    font-weight: 900;
}

.seller-store-hero {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 260px;
    gap: 20px;
    align-items: center;
    padding: 22px;
}

.seller-avatar-xl {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0aa16f, #4a86ff);
    color: #fff;
    font-size: 32px;
    font-weight: 900;
}

.product-layout {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr) 300px;
    gap: 20px;
    align-items: start;
}

.grid-span-all {
    grid-column: 1 / -1;
}

.product-gallery {
    position: sticky;
    top: 140px;
    padding: 14px;
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    object-fit: cover;
}

.product-detail,
.seller-summary,
.order-main,
.order-side,
.support-main {
    padding: 20px;
}

.protection-hero {
    display: grid;
    gap: 14px;
    max-width: 920px;
}

.protection-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.protection-steps div,
.protection-grid section {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 16px;
}

.protection-steps span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
}

.protection-steps strong {
    display: block;
    margin: 12px 0 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.protection-steps p {
    font-size: 13px;
}

.protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 16px;
}

.protection-grid ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.protection-grid li {
    color: var(--muted);
    font-weight: 800;
}

.protection-grid li::before {
    content: "OK";
    margin-right: 8px;
    color: #91f0ca;
    font-size: 11px;
    font-weight: 900;
}

.protection-grid .warning {
    border-color: rgba(245, 184, 75, .28);
    background: rgba(245, 184, 75, .10);
}

.protection-grid .warning li::before {
    content: "!";
    color: var(--amber);
}

.product-heading {
    display: grid;
    gap: 12px;
}

.product-heading h1 {
    font-size: clamp(28px, 3vw, 42px);
}

.product-heading a {
    color: #91f0ca;
    font-weight: 900;
}

.buy-panel {
    display: grid;
    gap: 14px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 16px;
}

.buy-panel > strong {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}

.buy-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.buy-facts span {
    display: grid;
    gap: 4px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 10px;
    color: var(--muted);
    font-weight: 800;
}

.buy-facts b {
    color: #fff;
    font-size: 12px;
}

.payment-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.payment-row span {
    display: grid;
    place-items: center;
    min-height: 34px;
    border: 1px solid rgba(119, 225, 177, .18);
    border-radius: 8px;
    background: rgba(10, 161, 111, .10);
    color: #9af2cc;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.mini-head {
    display: flex;
    gap: 12px;
    align-items: end;
    justify-content: space-between;
}

.mini-head h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.mini-head span {
    color: #8fa4bd;
    font-size: 11px;
    font-weight: 900;
    text-align: right;
    text-transform: uppercase;
}

.buyer-requirements {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(74, 134, 255, .20);
    border-radius: 12px;
    background: rgba(7, 17, 31, .42);
    padding: 14px;
}

.buyer-requirements label,
.order-reply-box label {
    display: grid;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.buyer-requirements input,
.buyer-requirements select,
.buyer-requirements textarea,
.order-reply-box textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0b1626;
    color: #fff;
    outline: 0;
    padding: 0 12px;
}

.buyer-requirements textarea,
.order-reply-box textarea {
    min-height: 92px;
    padding-top: 11px;
    resize: vertical;
}

.buyer-requirements input::placeholder,
.buyer-requirements textarea::placeholder,
.order-reply-box textarea::placeholder {
    color: #73849b;
}

.buy-note {
    color: #8fa4bd;
    font-size: 12px;
    line-height: 1.5;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
}

.info-box {
    padding: 18px;
}

.info-box ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.info-box li {
    color: var(--muted);
    font-weight: 800;
}

.info-box li::before {
    content: "OK";
    margin-right: 8px;
    color: #91f0ca;
    font-size: 11px;
    font-weight: 900;
}

.info-box.warning {
    border-color: rgba(245, 184, 75, .28);
    background: rgba(245, 184, 75, .10);
}

.grid-wide {
    grid-column: 1 / -1;
}

.seller-summary {
    position: sticky;
    top: 140px;
    display: grid;
    justify-items: start;
    gap: 14px;
}

.order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 18px 0;
}

.timeline span {
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--muted);
    padding: 12px;
    text-align: center;
    font-weight: 900;
}

.timeline .done {
    background: rgba(10, 161, 111, .14);
    color: #91f0ca;
}

.message {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 16px;
}

.order-note-card,
.order-reply-box {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface-2);
    padding: 16px;
    margin: 16px 0;
}

.order-note-card dl {
    display: grid;
    gap: 8px;
}

.order-note-card div {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 12px;
    border-top: 1px solid var(--line-soft);
    padding-top: 8px;
}

.order-note-card dt {
    color: #8fa4bd;
    font-size: 12px;
    font-weight: 900;
}

.order-note-card dd {
    min-width: 0;
    margin: 0;
    color: #fff;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.code-blur {
    width: fit-content;
    margin-top: 12px;
    border-radius: 8px;
    background: #0a1320;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 255, 255, .65);
    padding: 12px 18px;
    font-weight: 900;
}

.action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.summary-product {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 16px 0;
}

.summary-product img {
    width: 64px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.seller-apply {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 20px;
}

.seller-apply-hero {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.seller-checklist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.seller-checklist div,
.seller-policy-panel {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.seller-checklist div {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.seller-checklist span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
}

.seller-checklist strong {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.seller-checklist small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.seller-policy-panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 18px;
}

.seller-policy-panel div {
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: var(--surface-2);
    padding: 14px;
}

.seller-policy-panel strong {
    color: #fff;
    font-weight: 900;
}

.seller-policy-panel p {
    margin-top: 5px;
    font-size: 13px;
}

.form-panel {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
}

.form-panel label {
    display: grid;
    gap: 8px;
    color: #fff;
    font-weight: 900;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0e1929;
    color: #fff;
    outline: 0;
    padding: 0 12px;
}

.form-panel textarea {
    min-height: 130px;
    padding-top: 12px;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    min-height: calc(100vh - 119px);
}

.dash-nav {
    display: grid;
    align-content: start;
    gap: 8px;
    background: #07111f;
    border-right: 1px solid var(--line-soft);
    padding: 24px 16px;
}

.dash-nav span {
    border-radius: 8px;
    color: var(--muted);
    padding: 12px;
    font-weight: 900;
}

.dash-nav .active {
    background: var(--surface-2);
    color: #fff;
}

.dash-main {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.dash-metrics div {
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface);
    padding: 16px;
}

.dash-metrics span {
    color: var(--muted);
    font-weight: 900;
}

.dash-metrics strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 24px;
}

.support-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
}

.support-nav {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 18px;
}

.support-nav a {
    border-radius: 8px;
    color: var(--muted);
    padding: 10px;
    font-weight: 900;
}

.support-nav a:hover {
    background: var(--surface-2);
    color: #fff;
}

.trust-strip.inline {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line-soft);
    background: #060d18;
    color: var(--muted);
    padding: 30px max(20px, calc((100vw - 1360px) / 2));
}

.footer strong {
    color: #fff;
    font-size: 22px;
}

.footer span {
    color: #19d18a;
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #dce7f5;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .header-main,
    .hero-panel,
    .seller-feature,
    .catalog-layout,
    .product-layout,
    .seller-store-hero,
    .order-layout,
    .seller-apply,
    .support-layout,
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .header-main {
        padding: 14px 0;
    }

    .filter-panel,
    .product-gallery,
    .seller-summary,
    .site-header {
        position: static;
    }

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

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

    .seller-feature-products,
    .launch-seller-grid,
    .trust-strip,
    .dash-metrics,
    .buy-facts,
    .payment-row,
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .shell,
    .header-main,
    .category-nav {
        width: min(100% - 24px, 1360px);
    }

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

    .market-search select,
    .market-search input,
    .market-search button {
        min-height: 42px;
        border-right: 0;
        border-bottom: 1px solid #d6dfeb;
    }

    .search-panel {
        left: 0;
    }

    .header-actions,
    .section-head,
    .catalog-hero-panel,
    .footer {
        align-items: stretch;
        flex-direction: column;
    }

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

    .product-card {
        grid-template-rows: auto 24px 42px 32px 30px 36px;
        min-height: 390px;
        padding: 8px;
    }

    .price-row b {
        font-size: 17px;
    }

    .category-grid,
    .seller-feature-products,
    .launch-seller-grid,
    .hero-trust-row,
    .trust-strip,
    .dash-metrics,
    .buy-facts,
    .payment-row,
    .detail-grid,
    .protection-steps,
    .protection-grid,
    .seller-checklist,
    .timeline,
    .action-row,
    .trust-strip.inline {
        grid-template-columns: 1fr;
    }

    .mini-head {
        align-items: start;
        flex-direction: column;
    }

    .mini-head span {
        text-align: left;
    }

    .order-note-card div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-feature-card {
        grid-template-columns: 120px minmax(0, 1fr);
        min-height: 180px;
    }

    .hero-feature-card img {
        width: 120px;
    }

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

    .hero-panel,
    .section-card,
    .seller-feature,
    .seller-store-hero,
    .product-detail,
    .seller-summary,
    .order-main,
    .order-side,
    .support-main {
        padding: 16px;
    }

    h1 {
        font-size: 34px;
    }
}
