* { box-sizing: border-box; }

:root {
    --purple: #9b30ff;
    --purple-mid: #b554ff;
    --purple-light: #cc88ff;
    --ink: #f0eaff;
    --muted: #a89cc0;
    --dim: #6b5f80;
    --line: #2a1f40;
    --bg: #0a0812;
    --bg2: #130f1e;
    --black: #07060d;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
}

body.private-locked {
    overflow: hidden;
}

body.private-locked > :not(.private-gate):not(script) {
    visibility: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

/* ===== PRIVATE LAUNCH GATE ===== */
.private-gate {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(rgba(5, 3, 15, .78), rgba(5, 3, 15, .88)),
        url('ChatGPT Image Jun 12, 2026, 07_45_11 PM.png') center / cover no-repeat;
    color: var(--ink);
}

.private-gate-panel {
    width: min(620px, 100%);
    padding: clamp(28px, 5vw, 46px);
    border: 1px solid rgba(204, 136, 255, .28);
    border-radius: 8px;
    background: rgba(10, 8, 18, .88);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    text-align: center;
}

.private-eyebrow {
    margin-bottom: 10px;
    color: var(--purple-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.private-gate h1 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(32px, 7vw, 56px);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.private-copy {
    max-width: 440px;
    margin: 0 auto 26px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

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

.release-countdown div {
    min-width: 0;
    padding: 16px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #0a0812;
}

.release-countdown strong {
    display: block;
    color: #fff;
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1;
    font-weight: 900;
}

.release-countdown span {
    display: block;
    margin-top: 8px;
    color: var(--purple-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.release-date {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
}

.release-date strong { color: var(--ink); }

.private-form {
    text-align: left;
}

.private-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.private-password-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.private-password-row input {
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #0a0812;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.private-password-row input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(155, 48, 255, .18);
}

.private-password-row button {
    min-width: 112px;
    height: 48px;
    border: none;
    border-radius: 4px;
    background: var(--purple);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

.private-password-row button:hover { background: #7010c8; }
.private-password-row button:disabled { opacity: .65; cursor: wait; }

.private-error {
    min-height: 18px;
    margin: 8px 0 0;
    color: #fb7185;
    font-size: 12px;
    font-weight: 800;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #0a0812;
    border-bottom: 1px solid var(--line);
}

.promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 36px;
    padding: 6px 18px;
    color: #fff;
    background: var(--black);
    font-size: 12px;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.promo-bar strong { color: var(--purple-light); }

.main-nav {
    display: grid;
    grid-template-columns: 44px 1fr auto auto;
    align-items: center;
    gap: 16px;
    min-height: 70px;
    padding: 0 clamp(14px, 4vw, 48px);
}

.icon-button,
.nav-actions button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    border-radius: 4px;
    transition: background .15s;
}

.icon-button:hover,
.nav-actions button:hover { background: #1e1530; }

.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.icon-button span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    display: block;
}

.brand {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 15px;
    color: var(--ink);
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-actions svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-strip {
    display: flex;
    border-top: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-strip::-webkit-scrollbar { display: none; }

.category-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    color: var(--muted);
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: color .15s, background .15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-strip a:last-child { border-right: none; }
.category-strip a:hover { color: var(--purple-light); background: #1a1030; }

.category-strip svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-strip span { display: none; }


.mobile-nav-dropdown {
    display: none;
    flex-direction: column;
    background: var(--bg2);
    border-top: 1px solid var(--line);
    padding: 8px 0;
}

.mobile-nav-dropdown.open {
    display: flex;
}

.mobile-nav-dropdown a {
    padding: 14px 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--line);
    transition: color .15s, background .15s;
}

.mobile-nav-dropdown a:last-child { border-bottom: none; }
.mobile-nav-dropdown a:hover { color: var(--ink); background: #1a1030; }

.icon-button.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.icon-button.active span:nth-child(2) {
    opacity: 0;
}
.icon-button.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}
.icon-button span {
    transition: transform .2s, opacity .2s;
}


.sale-hero {
    text-align: center;
    padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 48px);
    border-bottom: 1px solid var(--line);
    background: url('hero-banner.png') center center / cover no-repeat;
    position: relative;
}

.sale-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 3, 15, 0.62);
    pointer-events: none;
}

.sale-hero > * {
    position: relative;
    z-index: 1;
}

.sale-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--purple);
    margin-bottom: 10px;
}

.sale-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.sale-code {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
}

.sale-code strong { color: var(--ink); }


.countdown {
    display: inline-flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 28px;
    text-align: center;
}

.countdown div { min-width: 60px; }

.countdown strong {
    display: block;
    color: var(--ink);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}

.countdown span {
    display: block;
    margin-top: 6px;
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sale-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}

.stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.verified { color: var(--purple); font-weight: 700; }


.section {
    padding: clamp(40px, 5vw, 72px) clamp(18px, 5vw, 48px);
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0;
    letter-spacing: -.01em;
}

/* ===== PRODUCT GRID — Shopify style ===== */
.featured { background: var(--bg); }

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

.product-card {
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--line);
    transition: transform .15s, border-color .15s;
}

.product-card:hover { transform: translateY(-2px); border-color: var(--purple); }

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 9px;
    color: #fff;
    background: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 3px;
}

.product-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.product-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
}

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

.product-art::after { display: none; }
.product-art.bolts { background: #1a1030; }
.product-art.brakes { background: #120e20; }
.product-art.wheels { background: #0f0d1a; }
.product-art.battery { background: #14102a; }
.product-art.pegs { background: #111020; }
.product-art.talariawrap { background: #15101f; }
.product-art.erideprowrap { background: #15101f; }
.product-art.forks40 { background: #1c1610; }
.product-art.mxwhandlebars { background: #111020; }
.product-art.motocutzplate { background: #14101c; }
.product-art.ebmxcontroller { background: #0e0e14; }
.product-art.ultrabeelight { background: #14102a; }
.product-art.surronrocklight { background: #14102a; }
.product-art.glossyplate { background: #14101c; }
.product-art.gutsseat { background: #15101f; }
.product-art.ultrabeesuper { background: #111111; }
.product-art.surronmotorcover { background: #f7f7f7; }

.product-info {
    padding: 14px 4px 4px;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

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

.product-bottom strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
}

.product-bottom button {
    padding: 8px 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background: var(--purple);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .15s;
}

.product-bottom button:hover { background: #7010c8; }


.build-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--black);
    border-top: 3px solid var(--purple);
}

.build-strip div {
    padding: 32px clamp(18px, 3vw, 40px);
    border-right: 1px solid rgba(255,255,255,.08);
}

.build-strip div:last-child { border-right: none; }

.build-strip span {
    display: block;
    margin-bottom: 8px;
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.build-strip strong {
    display: block;
    color: #fff;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.35;
    font-weight: 600;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-grid article {
    position: relative;
    background: var(--bg2);
    border-radius: 6px;
    min-height: 200px;
    padding: 28px 24px 48px;
    transition: background .15s, border-color .15s;
    border: 1px solid var(--line);
}

.category-grid article:hover { background: #1e1035; border-color: var(--purple); }

.card-icon {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--purple);
    margin-bottom: 20px;
    border-radius: 2px;
}

.category-grid h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.category-grid p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.category-grid article a {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}


.trust-band {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 clamp(18px, 5vw, 48px) 56px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--bg2);
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    flex-wrap: wrap;
}

.trust-band strong {
    color: var(--ink);
    font-size: 32px;
    font-weight: 900;
}

.trust-band a {
    color: var(--purple);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}


footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px clamp(18px, 5vw, 48px);
    border-top: 1px solid var(--line);
    background: var(--black);
    color: #fff;
}

footer strong {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
}

footer p {
    color: #888;
    font-size: 13px;
    margin-bottom: 0;
    max-width: 400px;
}

footer a {
    color: var(--purple-light);
    font-weight: 700;
    font-size: 13px;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(860px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #130f1e;
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
    transform: translateY(12px) scale(.98);
    transition: transform .22s ease;
}

.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-image-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    overflow: hidden;
    background: var(--bg2);
}

.modal-image-panel img {
    width: 100%;
    min-height: 0;
    flex: 1;
    object-fit: contain;
    display: block;
}

.modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px;
    overflow-x: auto;
    background: rgba(10, 8, 18, .88);
    border-top: 1px solid var(--line);
}

.modal-thumbs[hidden] { display: none; }

.modal-thumb {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    opacity: .72;
    transition: border-color .15s, opacity .15s;
}

.modal-thumb:hover,
.modal-thumb.active {
    border-color: var(--purple);
    opacity: 1;
}

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

.modal-image-panel::after { display: none; }
.modal-image-panel.bolts { background: #1a1030; }
.modal-image-panel.brakes { background: #120e20; }
.modal-image-panel.wheels { background: #0f0d1a; }
.modal-image-panel.battery { background: #14102a; }
.modal-image-panel.pegs { background: #111020; }
.modal-image-panel.talariawrap { background: #15101f; }
.modal-image-panel.erideprowrap { background: #15101f; }
.modal-image-panel.forks40 { background: #1c1610; }
.modal-image-panel.mxwhandlebars { background: #111020; }
.modal-image-panel.motocutzplate { background: #14101c; }
.modal-image-panel.ebmxcontroller { background: #0e0e14; }
.modal-image-panel.ultrabeelight { background: #14102a; }
.modal-image-panel.surronrocklight { background: #14102a; }
.modal-image-panel.glossyplate { background: #14101c; }
.modal-image-panel.gutsseat { background: #15101f; }
.modal-image-panel.ultrabeesuper { background: #111111; }
.modal-image-panel.surronmotorcover { background: #f7f7f7; }

.modal-info {
    padding: 32px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #1a1530;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    transition: border-color .15s;
}

.modal-close:hover { border-color: var(--purple); }

.modal-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 9px;
    background: var(--purple);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-radius: 3px;
}

.modal-title {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
}

.modal-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.modal-price { margin-top: auto; padding-top: 14px; }
.modal-price-main { color: var(--ink); font-size: 26px; font-weight: 900; }

.modal-divider { height: 1px; background: var(--line); margin: 16px 0; }

.modal-spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-spec-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
}

.modal-spec-list li strong { color: var(--ink); font-weight: 700; }

.modal-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.modal-qty button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    transition: border-color .15s;
}

.modal-qty button:hover { border-color: var(--purple); }
.modal-qty-display { color: var(--ink); font-size: 16px; font-weight: 700; min-width: 22px; text-align: center; }

.modal-add-btn {
    width: 100%;
    min-height: 46px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background: var(--purple);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: background .15s;
}

.modal-add-btn:hover { background: #7010c8; }
.modal-add-btn.added { background: #16a34a; }

.cart-item-remove {
    background: none;
    border: none;
    color: var(--dim);
    font-size: 13px;
    cursor: pointer;
    padding: 2px 4px;
    transition: color .15s;
    line-height: 1;
}

.cart-item-remove:hover { color: #e11d48; }
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s;
}

.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 91;
    width: min(400px, 100vw);
    display: flex;
    flex-direction: column;
    background: #130f1e;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .25s ease;
}

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

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.cart-header h2 {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cart-count-badge {
    display: inline-block;
    padding: 2px 7px;
    margin-left: 8px;
    background: var(--purple);
    border-radius: 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.cart-items { flex: 1; overflow-y: auto; padding: 14px; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 100%;
    color: var(--dim);
    text-align: center;
    padding: 40px 20px;
}

.cart-empty svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .35;
}

.cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.cart-item-thumb {
    width: 60px; height: 60px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg2);
}

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

.cart-item-body { display: flex; flex-direction: column; gap: 5px; }
.cart-item-name { color: var(--ink); font-weight: 700; font-size: 13px; line-height: 1.2; }
.cart-item-price { color: var(--purple); font-weight: 800; font-size: 13px; }

.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 4px; }

.cart-item-controls button {
    width: 24px; height: 24px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color .15s;
}

.cart-item-controls button:hover { border-color: var(--purple); }
.cart-item-qty { color: var(--ink); font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }

.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 14px;
}

.cart-subtotal strong { color: var(--ink); font-size: 18px; }

.cart-promo-note { color: var(--purple); font-size: 12px; font-weight: 700; margin-bottom: 12px; }

.cart-checkout-btn {
    width: 100%;
    min-height: 48px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background: var(--purple);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: background .15s;
}

.cart-checkout-btn:hover { background: #7010c8; }

.cart-btn-wrap { position: relative; }

.cart-nav-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 16px; height: 16px;
    padding: 0 4px;
    background: var(--purple);
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cart-nav-badge.visible { display: flex; }


.toast {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 200;
    padding: 11px 18px;
    background: var(--black);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    white-space: nowrap;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


.checkout-modal {
    position: relative;
    width: min(940px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #130f1e;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    transform: translateY(12px) scale(.98);
    transition: transform .22s ease;
}

.modal-overlay.open .checkout-modal { transform: translateY(0) scale(1); }

.co-layout { display: grid; grid-template-columns: 1fr 300px; min-height: 500px; }
.co-left { padding: 36px 32px; border-right: 1px solid var(--line); }
.co-right { padding: 32px 24px; background: #0a0812; }

.co-title { margin: 0 0 22px; color: var(--ink); font-size: 20px; font-weight: 800; }

.co-section-label {
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.co-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }

.co-field label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.co-field input {
    height: 40px;
    padding: 0 12px;
    background: #0a0812;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s;
    outline: none;
}

.co-field input::placeholder { color: var(--dim); }
.co-field input:focus { border-color: var(--purple); }

.co-promo-row { display: flex; align-items: center; gap: 8px; margin: 12px 0 6px; flex-wrap: wrap; }

.co-promo-row input {
    flex: 1; min-width: 120px;
    height: 36px; padding: 0 12px;
    background: #0a0812;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    font-size: 13px;
    font-family: inherit;
    outline: none;
}

.co-promo-row input:focus { border-color: var(--purple); }

.co-promo-row button {
    height: 36px; padding: 0 14px;
    background: var(--purple);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .15s;
}

.co-promo-row button:hover { background: #7010c8; }
.co-promo-row span { font-size: 12px; font-weight: 700; }

.co-error { color: #e11d48; font-size: 12px; font-weight: 700; min-height: 18px; margin: 4px 0 0; }

.co-disclaimer { margin-top: 12px; color: var(--dim); font-size: 11px; line-height: 1.5; }

.co-summary-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }

.co-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    gap: 12px;
}

.co-summary-line span:last-child { color: var(--ink); font-weight: 700; white-space: nowrap; }
.co-summary-line.discount span { color: #16a34a; }
.co-summary-line.discount span:last-child { color: #16a34a; }
.co-summary-line.total { margin-top: 4px; font-size: 16px; }
.co-summary-line.total span { color: var(--ink); font-weight: 900; }

.co-summary-divider { width: 100%; height: 1px; background: var(--line); margin: 12px 0; }

.co-success {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    min-height: 400px;
}

.co-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #16a34a;
    margin-bottom: 20px;
}

.co-success h2 { color: var(--ink); font-size: 26px; margin-bottom: 10px; }
.co-success p { color: var(--muted); max-width: 400px; line-height: 1.6; font-size: 14px; }


@media (max-width: 1040px) {
    .main-nav { grid-template-columns: 44px 1fr auto; }
    .nav-links { display: none; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .build-strip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .promo-bar span { display: none; }
    .main-nav { gap: 10px; min-height: 60px; padding-inline: 14px; }
    .brand img { width: 44px; height: 44px; }
    .brand span { font-size: 13px; }
    .sale-title { font-size: clamp(28px, 10vw, 44px); }
    .countdown { gap: 16px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 14px; }
    .category-grid { grid-template-columns: 1fr; }
    .trust-band { display: block; margin-inline: 14px; }
    footer { display: block; }
    footer a { display: inline-block; margin-top: 14px; }
    .modal { grid-template-columns: 1fr; max-height: 92vh; }
    .modal-image-panel { min-height: 200px; }
    .modal-info { padding: 18px; }
    .co-layout { grid-template-columns: 1fr; }
    .co-left { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 16px; }
    .co-right { padding: 18px 16px; }
    .co-row { grid-template-columns: 1fr; }
    .checkout-modal { max-height: 95vh; }
}

@media (max-width: 480px) {
    .brand span { display: none; }
    .product-grid { grid-template-columns: 1fr !important; }
    .nav-links { display: none; }
    .private-gate { padding: 14px; }
    .private-gate-panel { padding: 24px 16px; }
    .release-countdown { gap: 6px; }
    .release-countdown div { padding: 12px 4px; }
    .release-countdown span { font-size: 8px; }
    .private-password-row { grid-template-columns: 1fr; }
    .private-password-row button { width: 100%; }
}

@media (min-width: 1200px) {
    .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
}