/* ── Reset & Base ─────────────────────────────────────────────────── */
:root {
    --bg: #09111f;
    --panel: rgba(13, 20, 36, 0.86);
    --panel-2: rgba(9, 15, 28, 0.92);
    --line: rgba(116, 158, 221, 0.16);
    --line-strong: rgba(110, 241, 255, 0.26);
    --text: #ecf3ff;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --accent: #ff5f6d;
    --accent-2: #5ee7ff;
    --gold: #ffcc70;
    --shadow-lg: 0 25px 80px rgba(2, 6, 23, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 95, 109, 0.12), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(94, 231, 255, 0.10), transparent 24%),
        linear-gradient(180deg, #08101c 0%, #070d17 35%, #060a13 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
main { flex: 1; }
h1, h2, h3, h4, .brand, .section-header h2, .hero h1, .cta-section h2 {
    font-family: 'Rajdhani', 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
}

.site-bg-glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.site-bg-glow-1 {
    width: 320px;
    height: 320px;
    top: 60px;
    left: -80px;
    background: rgba(255, 95, 109, 0.14);
}
.site-bg-glow-2 {
    width: 300px;
    height: 300px;
    top: 200px;
    right: -80px;
    background: rgba(94, 231, 255, 0.12);
}
.navbar,
main,
footer {
    position: relative;
    z-index: 1;
}

.announcement-bar {
    border-bottom: 1px solid var(--line);
    background: rgba(7, 13, 24, 0.62);
}
.announcement-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.88rem;
    text-align: center;
}
.announcement-pill {
    background: rgba(255, 95, 109, 0.16);
    color: #ffd9de;
    border: 1px solid rgba(255, 95, 109, 0.25);
    border-radius: 999px;
    padding: 0.22rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ── Navbar ──────────────────────────────────────────────────────── */
.navbar {
    background: rgba(7, 11, 21, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent) !important;
    text-decoration: none !important;
}
.nav-logo {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 0.75rem;
    object-fit: contain;
}
.hero-logo {
    height: 100px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: contain;
}
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.btn-nav {
    background: linear-gradient(135deg, var(--accent), #ff845c) !important;
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(255, 95, 109, 0.22);
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(255, 95, 109, 0.28); text-decoration: none !important; }
.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid #27272a;
    color: #e4e4e7;
    font-size: 1.25rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
}

/* ── Container ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
    padding: 5rem 0 2.75rem;
}
.hero-premium {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 95, 109, 0.16), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(94, 231, 255, 0.12), transparent 24%);
}
.hero-shell {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}
.hero-copy,
.hero-panel {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}
.hero-copy {
    padding: 2.4rem;
}
.hero-panel {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(94, 231, 255, 0.10);
    color: #b5f8ff;
    border: 1px solid rgba(94, 231, 255, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.9rem;
    line-height: 0.96;
    text-align: left;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 640px;
    margin: 0 0 1.8rem;
    line-height: 1.6;
    text-align: left;
}
.hero-btns { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero-panel-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    color: var(--muted);
    font-size: 0.84rem;
}
.panel-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}
.hero-logo-premium {
    height: 120px;
    margin: 1.6rem 0 1.2rem;
}
.hero-spotlight {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.2rem;
}
.hero-spotlight-label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
}
.hero-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}
.hero-spotlight-grid strong {
    display: block;
    font-size: 1.65rem;
    color: #fff;
}
.hero-spotlight-grid span {
    color: var(--muted);
    font-size: 0.88rem;
}
.hero-proof-card {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.12), rgba(94, 231, 255, 0.06));
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-proof-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.hero-proof-card p { margin: 0; font-size: 0.92rem; text-align: left; }

.trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-top: 1.4rem;
}
.trust-mini-card {
    padding: 0.95rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.trust-mini-card strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.trust-mini-card span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.82rem 1.7rem;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ff845c);
    color: #fff;
    box-shadow: 0 12px 32px rgba(255, 95, 109, 0.26);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(255, 95, 109, 0.32); }
.btn-outline {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border: 1px solid var(--line);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-block { display: block; text-align: center; width: 100%; }

/* ── Stats strip ─────────────────────────────────────────────────── */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.6rem 2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat .number { font-size: 2.1rem; font-weight: 800; color: var(--accent-2); }
.stat .label { font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; }

/* ── Section header ──────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.section-header p { color: var(--muted); font-size: 1rem; max-width: 620px; margin: 0 auto; line-height: 1.65; }
.section-header-tight { margin-bottom: 1.5rem; }

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.feature-band-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
}
.feature-band-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 95, 109, 0.12);
    color: #ffd5db;
    font-size: 1.35rem;
}
.feature-band-item strong { display: block; color: #fff; margin-bottom: 0.25rem; }
.feature-band-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ── Category filter pills ────────────────────────────────────────── */
.category-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.cat-pill {
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.cat-pill:hover {
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
}
.cat-pill.active {
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.9), rgba(255, 132, 92, 0.9));
    color: #fff;
    border-color: transparent;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
}
.catalog-toolbar-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 220px;
}
.catalog-toolbar-copy strong { color: #fff; }
.catalog-toolbar-copy span { color: var(--muted); font-size: 0.88rem; }
.catalog-toolbar-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.catalog-search-wrap { position: relative; min-width: 240px; }
.catalog-search-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-2);
}
.catalog-search-input,
.catalog-select {
    padding: 0.72rem 0.9rem;
    background: rgba(5, 10, 19, 0.9);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
}
.catalog-search-input {
    width: 100%;
    padding-left: 2.35rem;
}
.catalog-search-input:focus,
.catalog-select:focus {
    border-color: rgba(94, 231, 255, 0.28);
}
.catalog-filter-count {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ── Product status badges ────────────────────────────────────────── */
.product-status-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}
.product-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.badge-instock {
    background: #052e16;
    color: #4ade80;
    border: 1px solid #166534;
}
.badge-oos {
    background: #2a0a0a;
    color: #f87171;
    border: 1px solid #7f1d1d;
}
.badge-online {
    background: #052e16;
    color: #4ade80;
    border: 1px solid #166534;
}

/* ── Product cards ───────────────────────────────────────────────── */
.category-section { margin-bottom: 2.5rem; }
.category-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1e1e22;
}
.product-card-link {
    text-decoration: none !important;
    color: inherit;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.product-card {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.9), rgba(8, 14, 26, 0.95));
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.32);
}
.product-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-6px);
    box-shadow: 0 0 24px rgba(94, 231, 255, 0.12), 0 20px 50px rgba(2, 6, 23, 0.42);
}
.group-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(94, 231, 255, 0.10);
    color: #9df5ff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 2;
    letter-spacing: 0.025em;
    border: 1px solid rgba(94, 231, 255, 0.16);
}
.product-img-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(180deg, rgba(17, 26, 44, 0.88), rgba(8, 12, 22, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-icon-fallback {
    font-size: 3rem;
    opacity: 0.5;
}
.product-info {
    padding: 1rem 1.25rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.product-eyebrow {
    color: var(--accent-2);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.product-info h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}
.product-price-line {
    color: var(--muted);
    font-size: 0.86rem;
    margin: 0;
}
.product-price-line strong {
    color: #fff;
    font-weight: 800;
}
.product-card-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--muted);
    font-size: 0.8rem;
}
.product-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 95, 109, 0.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.product-card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.product-card .desc { color: #71717a; font-size: 0.85rem; line-height: 1.5; margin-bottom: 1.25rem; }
.product-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 1.25rem; }
.product-price .label { color: #52525b; font-size: 0.8rem; }
.product-price .amount { color: #e11d48; font-size: 1.5rem; font-weight: 800; }

/* ── Review cards ────────────────────────────────────────────────── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}
.review-card {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.5rem;
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.review-user { font-weight: 700; color: #fff; }
.review-product { font-size: 0.8rem; color: #e11d48; background: #e11d4815; padding: 0.2rem 0.6rem; border-radius: 999px; }
.review-stars { color: #facc15; font-size: 0.95rem; margin-bottom: 0.5rem; }
.review-text { color: #a1a1aa; font-size: 0.9rem; line-height: 1.55; }
.review-date { color: #52525b; font-size: 0.75rem; margin-top: 0.75rem; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-question:hover { background: #18181b; }
.faq-question .arrow { color: #e11d48; font-size: 1.1rem; transition: transform 0.3s; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.25rem 1.1rem; }
.faq-answer p { color: #a1a1aa; font-size: 0.9rem; line-height: 1.6; }

/* ── Contact form ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 800px; margin: 0 auto; }
.contact-info h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.75rem; }
.contact-info p { color: #71717a; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    color: #e4e4e7;
    text-decoration: none;
    transition: border-color 0.2s;
}
.contact-link:hover { border-color: #e11d48; text-decoration: none; }
.contact-link .icon { font-size: 1.25rem; }
.contact-link .text { font-size: 0.9rem; }
.form-card {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.35rem; font-size: 0.85rem; color: #a1a1aa; }
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 0.65rem 1rem;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
input:focus, textarea:focus { border-color: #e11d48; }
textarea { min-height: 120px; resize: vertical; }

/* ── Flash messages ──────────────────────────────────────────────── */
.flash { padding: 0.75rem 1rem; border-radius: 8px; margin: 1rem 0; font-size: 0.9rem; }
.flash.error { background: #2d1215; border: 1px solid #e11d48; color: #fca5a5; }
.flash.success { background: #0d2818; border: 1px solid #22c55e; color: #86efac; }

/* ── Features strip ──────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.feature {
    text-align: center;
    padding: 1.7rem 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}
.feature .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.3rem; }
.feature p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; }

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 1rem;
}
.proof-card {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: var(--shadow-lg);
}
.proof-card p { color: #fff; line-height: 1.7; margin-bottom: 0.85rem; }
.proof-card span { color: var(--muted); font-size: 0.84rem; }
.proof-stars { color: var(--gold); letter-spacing: 0.18em; margin-bottom: 0.8rem; }
.proof-card-discord {
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.14), rgba(94, 231, 255, 0.10));
}
.proof-card-discord h3 {
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
}
.proof-discord-badge {
    display: inline-block;
    margin-bottom: 0.85rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(88, 101, 242, 0.18);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #dce0ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 95, 109, 0.12) 0%, rgba(94, 231, 255, 0.08) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}
.cta-section h2 { font-size: 2.1rem; color: #fff; margin-bottom: 0.5rem; }
.cta-section p { color: var(--muted); font-size: 1rem; margin-bottom: 1.5rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
    background: rgba(7, 11, 21, 0.82);
    border-top: 1px solid var(--line);
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 3rem;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { color: var(--accent); font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.footer-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; max-width: 360px; }
.footer-trust-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.footer-trust-row span {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
}
footer h4 { color: #d7e4ff; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
footer a { display: block; color: var(--muted); font-size: 0.85rem; padding: 0.2rem 0; transition: color 0.2s; text-decoration: none; }
footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.25rem; text-align: center; }
.footer-bottom p { color: var(--muted-2); font-size: 0.8rem; }

/* ── Checkout ─────────────────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 980px;
    margin: 0 auto;
}
.checkout-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--accent-2);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.checkout-summary h2,
.checkout-payment h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}
.checkout-selected-method {
    display: none;
    margin: -0.45rem 0 1rem;
    padding: 0.48rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 72, 0.3);
    background: rgba(225, 29, 72, 0.12);
    color: #ffd4dc;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}
.checkout-product-card {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-lg);
}
.checkout-product-card .product-icon { margin-bottom: 0.75rem; }
.checkout-product-card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.checkout-product-card .desc { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
}
.checkout-total span:first-child { color: var(--muted); font-size: 1rem; font-weight: 600; }
.checkout-total .amount { color: #fff; font-size: 1.85rem; font-weight: 800; }
.checkout-payment {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
}
.payment-method-strip {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.payment-method-strip span {
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}
.checkout-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}
.checkout-trust-item {
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    border-radius: 18px;
}
.checkout-trust-item strong {
    display: block;
    color: #fff;
    margin-bottom: 0.18rem;
}
.checkout-trust-item span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}
.payment-btn { margin-top: 0.5rem; font-size: 1rem; padding: 0.85rem; }
.payment-divider {
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
}
.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.payment-divider span {
    position: relative;
    background: transparent;
    padding: 0 1rem;
    color: var(--muted-2);
    font-size: 0.85rem;
}
.checkout-secure {
    margin-top: 1.25rem;
    text-align: center;
    color: var(--muted-2);
    font-size: 0.8rem;
}
#paypal-button-container { min-height: 55px; }

/* CashApp */
.btn-cashapp { background: #00d632; color: #000; font-weight: 700; }
.btn-cashapp:hover { background: #00b82b; }
.btn-paypal-ff { background: #0070ba; color: #fff; font-weight: 700; }
.btn-paypal-ff:hover { background: #005ea6; }
.btn-venmo { background: #3D95CE; color: #fff; font-weight: 700; }
.btn-venmo:hover { background: #2e7ab0; }
.btn-crypto { background: #f7931a; color: #fff; font-weight: 700; }
.btn-crypto:hover { background: #d97b10; }
.cashapp-instructions {
    background: rgba(5, 10, 19, 0.8);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.cashapp-instructions p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.cashapp-tag {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00d632;
    margin: 0.5rem 0 1rem;
}
.cashapp-instructions ol {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
    padding-left: 1.25rem;
}
.cashapp-instructions ol strong { color: #e4e4e7; }

.contact-link,
.form-card,
.faq-item,
.review-card,
.invoice-card,
.lookup-form,
.orders-table,
.success-box {
    background: linear-gradient(180deg, rgba(14, 22, 38, 0.86), rgba(8, 14, 26, 0.9));
    border-color: var(--line);
    box-shadow: var(--shadow-lg);
}

label { color: var(--muted); }
input[type="text"], input[type="email"], textarea, select {
    background: rgba(5, 10, 19, 0.9);
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
}
input:focus, textarea:focus, select:focus { border-color: rgba(94, 231, 255, 0.28); }

@media (max-width: 960px) {
    .hero-shell,
    .checkout-layout,
    .proof-grid,
    .feature-band {
        grid-template-columns: 1fr;
    }

    .trust-mini-grid,
    .checkout-trust-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.15rem;
    }
}

@media (max-width: 720px) {
    .announcement-inner {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.6rem 0;
    }

    .hero-copy,
    .hero-panel,
    .checkout-payment,
    .checkout-product-card,
    .cta-section {
        padding: 1.25rem;
    }

    .hero h1,
    .section-header h2 {
        font-size: 2.45rem;
    }

    .catalog-toolbar-controls {
        width: 100%;
    }

    .catalog-search-wrap,
    .catalog-select {
        width: 100%;
    }

    .stats-strip {
        gap: 1.5rem;
    }

    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Success ─────────────────────────────────────────────────────── */
.success-box {
    max-width: 550px;
    margin: 0 auto;
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 16px;
    padding: 3rem 2rem;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-box h1 { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.success-box p { color: #a1a1aa; font-size: 0.95rem; line-height: 1.6; }
.success-note { color: #71717a !important; font-size: 0.85rem !important; margin-top: 0.75rem; }

/* ── Invoice page ─────────────────────────────────────────────────── */
.invoice-page { max-width: 700px; margin: 0 auto; }
.invoice-header { text-align: center; margin-bottom: 2rem; }
.invoice-header h1 { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.mono { font-family: 'Courier New', Courier, monospace; }
.accent { color: #e11d48; font-weight: 700; }
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.status-pending { background: #422006; color: #fbbf24; border: 1px solid #92400e; }
.status-paid { background: #082f49; color: #38bdf8; border: 1px solid #0369a1; }
.status-delivered { background: #052e16; color: #4ade80; border: 1px solid #166534; }
.invoice-card {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.invoice-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #1e1e22; }
.invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #0e0e10;
}
.invoice-row:last-child { border-bottom: none; }
.invoice-row span:first-child { color: #71717a; font-size: 0.9rem; }
.invoice-row span:last-child { color: #e4e4e7; font-size: 0.9rem; text-align: right; max-width: 60%; word-break: break-all; }
.delivered-card { border-color: #166534; }
.delivered-card h3 { border-bottom-color: #166534; }
.pending-card { border-color: #92400e; }
.pending-card h3 { border-bottom-color: #92400e; }
.invoice-save {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 12px;
}
.invoice-save p { color: #71717a; font-size: 0.85rem; }
.invoice-save .mono { color: #e11d48; font-weight: 700; }

/* ── Lookup ───────────────────────────────────────────────────────── */
.lookup-box {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.lookup-box h1 { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.lookup-box > p { color: #71717a; font-size: 0.95rem; margin-bottom: 2rem; }
.lookup-form {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.75rem;
}

/* ── My Orders ────────────────────────────────────────────────────── */
.my-orders-page { max-width: 720px; margin: 0 auto; }
.orders-email-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto 2rem;
}
.orders-email-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #27272a;
    background: #111113;
    color: #e4e4e7;
    font-size: 0.95rem;
}
.orders-email-form input:focus { border-color: #e11d48; outline: none; }
.orders-count {
    color: #71717a;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
.orders-count strong { color: #fff; }
.order-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e1e22;
}
.order-id-link {
    font-family: 'Courier New', monospace;
    color: #e11d48;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}
.order-id-link:hover { text-decoration: underline; }
.order-product {
    display: block;
    color: #e4e4e7;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}
.order-key-box {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #0a0a0c;
    border: 1px solid #166534;
    border-radius: 8px;
}
.order-key-label {
    display: block;
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.order-key-value {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e4e4e7;
    word-break: break-all;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}
.order-key-value:hover { background: #18181b; }
.order-key-value.copied { background: #052e16; }
.order-notes {
    color: #71717a;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.order-pending-info {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #0a0a0c;
    border: 1px solid #92400e;
    border-radius: 8px;
}
.order-pending-info p {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
    .orders-email-form { flex-direction: column; }
}

/* ── Admin ────────────────────────────────────────────────────────── */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.admin-header h1 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.admin-actions { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.orders-table-wrap { overflow-x: auto; }
.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    overflow: hidden;
}
.orders-table th {
    text-align: left;
    padding: 0.85rem 1rem;
    background: #18181b;
    color: #a1a1aa;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #1e1e22;
}
.orders-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #0e0e10;
    color: #e4e4e7;
}
.orders-table tbody tr:hover { background: #18181b; }
.orders-table tbody tr:last-child td { border-bottom: none; }
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.order-detail-grid .invoice-card:first-child { grid-column: 1 / -1; }
.order-detail-grid .invoice-card:last-child { grid-column: 1 / -1; }
.empty-state { text-align: center; padding: 3rem 1.5rem; color: #52525b; font-size: 1rem; }

/* admin login */
.admin-login-box {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}
.admin-login-box h1 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.admin-login-card {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.75rem;
}

/* admin nav */
.admin-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 10px;
}
.admin-nav a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #a1a1aa;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.admin-nav a:hover { background: #18181b; color: #fff; text-decoration: none; }
.admin-nav a.active { background: #e11d48; color: #fff; }

/* ── Product Form Layout ──────────────────────────────────────────── */
.product-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.form-section {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.form-section-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e1e22;
}
.form-section-header h2 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.form-section-header p {
    color: #52525b;
    font-size: 0.82rem;
    margin: 0;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-hint {
    display: block;
    color: #52525b;
    font-size: 0.78rem;
    margin-top: 0.25rem;
}
.form-select {
    width: 100%;
    padding: 0.65rem 1rem;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: border 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}
.form-select:focus { border-color: #e11d48; }

/* ── Toggle switches ──────────────────────────────────────────────── */
.toggle-group { display: flex; flex-direction: column; gap: 0.5rem; }
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    cursor: pointer;
    border-bottom: 1px solid #0e0e10;
}
.toggle-row:last-child { border-bottom: none; }
.toggle-label { color: #e4e4e7; font-size: 0.9rem; font-weight: 500; }
.toggle-input { display: none; }
.toggle-slider {
    position: relative;
    width: 44px;
    min-width: 44px;
    height: 24px;
    background: #27272a;
    border-radius: 999px;
    transition: background 0.25s;
}
.toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #52525b;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.25s, background 0.25s;
}
.toggle-input:checked + .toggle-slider { background: #e11d48; }
.toggle-input:checked + .toggle-slider::after {
    transform: translateX(20px);
    background: #fff;
}

/* ── File upload ──────────────────────────────────────────────────── */
.file-upload-area {
    position: relative;
}
.file-upload-area input[type="file"] {
    width: 100%;
    padding: 0.65rem 1rem;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #e4e4e7;
    font-size: 0.85rem;
    cursor: pointer;
}
.file-upload-area input[type="file"]::file-selector-button {
    background: #27272a;
    border: 1px solid #3f3f46;
    color: #e4e4e7;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    margin-right: 0.75rem;
    transition: background 0.2s;
}
.file-upload-area input[type="file"]::file-selector-button:hover { background: #3f3f46; }
.current-image { margin-top: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.preview-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; border: 1px solid #27272a; }

/* ── Price input group ────────────────────────────────────────────── */
.price-input-group {
    display: flex;
    align-items: center;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 8px;
    overflow: hidden;
    transition: border 0.2s;
}
.price-input-group:focus-within { border-color: #e11d48; }
.price-currency {
    padding: 0.65rem 0.85rem;
    background: #18181b;
    color: #71717a;
    font-size: 0.85rem;
    font-weight: 600;
    border-right: 1px solid #27272a;
}
.price-input-group input {
    border: none !important;
    background: transparent !important;
    padding: 0.65rem 1rem;
    flex: 1;
}

/* ── Variant selector ─────────────────────────────────────────────── */
.variant-list { display: flex; flex-direction: column; gap: 0.5rem; }
.variant-selector-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.variant-selector-item:hover { border-color: #3f3f46; background: #18181b; }
.variant-selector-item.active { border-color: #e11d48; background: #1a0a12; }
.variant-selector-info strong { color: #fff; font-size: 0.9rem; display: block; margin-bottom: 0.35rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.variant-selector-meta { display: flex; align-items: center; gap: 0.5rem; }
.variant-price-badge {
    font-size: 0.82rem;
    color: #e11d48;
    font-weight: 700;
}
.variant-stock-badge {
    font-size: 0.78rem;
    color: #71717a;
    background: #18181b;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid #27272a;
}
.empty-variant-notice {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #52525b;
    font-size: 0.9rem;
}

/* ── Variant panels ───────────────────────────────────────────────── */
.variant-panel { display: none; }
.variant-panel.active { display: block; }

/* ── Variant tabs ─────────────────────────────────────────────────── */
.variant-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    padding: 0.35rem;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #1e1e22;
    overflow-x: auto;
}
.variant-tab {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    background: transparent;
    border: none;
    color: #71717a;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
}
.variant-tab:hover { color: #e4e4e7; background: #18181b; }
.variant-tab.active { color: #fff; background: #e11d48; }

/* ── Variant tab content ──────────────────────────────────────────── */
.variant-tab-content { display: none; }
.variant-tab-content.active { display: block; }

/* ── UUID display ─────────────────────────────────────────────────── */
.uuid-display {
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 0.6rem 1rem;
}
.uuid-display code {
    color: #e11d48;
    font-size: 0.82rem;
    word-break: break-all;
    font-family: 'Courier New', Courier, monospace;
}

/* ── Inline forms ─────────────────────────────────────────────────── */
.inline-add-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.inline-add-form input {
    flex: 1;
}
.inline-edit-form {
    display: inline;
}
.inline-edit-form input[name="name"] {
    background: transparent;
    border: 1px solid transparent;
    color: #fff;
    font-weight: 600;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    width: auto;
    transition: border 0.2s;
}
.inline-edit-form input[name="name"]:focus { border-color: #e11d48; background: #0a0a0a; }
.inline-edit-form input[name="sort_order"] {
    background: transparent;
    border: 1px solid transparent;
    color: #a1a1aa;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    transition: border 0.2s;
    text-align: center;
}
.inline-edit-form input[name="sort_order"]:focus { border-color: #e11d48; background: #0a0a0a; }

/* status badges for product statuses */
.status-active { background: #052e16; color: #4ade80; border: 1px solid #166534; }
.status-coming_soon { background: #422006; color: #fbbf24; border: 1px solid #92400e; }
.status-out_of_stock { background: #2d1215; color: #fca5a5; border: 1px solid #7f1d1d; }

/* ── Publish status bar ───────────────────────────────────────────── */
.publish-status-bar {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.publish-status-bar.published {
    background: #052e16;
    border: 1px solid #166534;
    color: #4ade80;
}
.publish-status-bar.published a { color: #86efac; text-decoration: underline; }
.publish-status-bar.draft {
    background: #422006;
    border: 1px solid #92400e;
    color: #fbbf24;
}

/* ── Publish / unpublish buttons ──────────────────────────────────── */
.btn-publish {
    background: #16a34a !important;
    color: #fff !important;
    font-weight: 700;
}
.btn-publish:hover { background: #15803d !important; }
.btn-unpublish {
    background: #92400e !important;
    color: #fbbf24 !important;
    font-weight: 700;
}
.btn-unpublish:hover { background: #78350f !important; }

/* ── Sticky save bar ──────────────────────────────────────────────── */
.save-bar {
    position: sticky;
    bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #1e1e22;
    border-radius: 12px;
    margin-top: 1.25rem;
    z-index: 50;
}
.save-bar .btn { flex: 1; text-align: center; padding: 0.75rem; font-size: 0.95rem; }

/* ── Product Detail ───────────────────────────────────────────────── */
.pd-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.pd-image { margin-bottom: 1.5rem; }
.pd-image img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #1e1e22;
}
.pd-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pd-icon {
    width: 56px;
    height: 56px;
    background: #e11d4812;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}
.pd-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.pd-cat-badge {
    display: inline-block;
    font-size: 0.78rem;
    color: #e11d48;
    background: #e11d4815;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    margin-top: 0.25rem;
}
.pd-short-desc {
    color: #a1a1aa;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* Feature list (description lines) */
.pd-description {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #1e1e22;
}
.pd-feature-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #e4e4e7;
    font-size: 0.9rem;
}
.pd-feature-check {
    color: #e11d48;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* System Requirements */
.pd-section-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.pd-sysreq {
    padding-top: 1.5rem;
    border-top: 1px solid #1e1e22;
    margin-bottom: 1.5rem;
}
.pd-sysreq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}
.pd-sysreq-card {
    background: #0c0e14;
    border: 1px solid #1a2332;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.pd-sysreq-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.pd-sysreq-label {
    color: #64748b;
    font-size: 0.8rem;
}
.pd-sysreq-value {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Information feature grid */
.pd-info-section {
    padding-top: 1.5rem;
    border-top: 1px solid #1e1e22;
}
.pd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.pd-info-card {
    background: #0c0e14;
    border: 1px solid #1a2332;
    border-radius: 12px;
    padding: 1.25rem;
}
.pd-info-card h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pd-info-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: #0f2b3d;
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pd-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.pd-info-card li {
    color: #94a3b8;
    font-size: 0.85rem;
    padding-left: 0.9rem;
    position: relative;
}
.pd-info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: 700;
}

/* Purchase card */
.pd-purchase-card {
    background: #111113;
    border: 1px solid #1e1e22;
    border-radius: 16px;
    padding: 1.75rem;
    position: sticky;
    top: 84px;
}
.pd-price-display {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #1e1e22;
}
.pd-price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #e11d48;
    letter-spacing: -0.02em;
}
.pd-label {
    display: block;
    color: #a1a1aa;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

/* Quantity control */
.pd-quantity-section {
    margin-bottom: 1.5rem;
}
.pd-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: #0a0a0a;
    border: 1px solid #27272a;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}
.pd-qty-btn {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: #e4e4e7;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-qty-btn:hover { background: #18181b; }
.pd-qty-btn:active { background: #27272a; }
.pd-qty-value {
    width: 48px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    border-left: 1px solid #27272a;
    border-right: 1px solid #27272a;
    line-height: 44px;
}

/* Variant cards */
.pd-variants-section {
    margin-bottom: 1.5rem;
}
.pd-variant-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.pd-variant-card {
    background: #0a0a0a;
    border: 2px solid #27272a;
    border-radius: 12px;
    padding: 1rem 1.15rem;
    cursor: pointer;
    transition: all 0.2s;
}
.pd-variant-card:hover {
    border-color: #3f3f46;
    background: #131315;
}
.pd-variant-card.active {
    border-color: #e11d48;
    background: #1a0a12;
    box-shadow: 0 0 0 1px #e11d4840;
}
.pd-variant-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}
.pd-variant-name {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}
.pd-variant-price {
    color: #e11d48;
    font-size: 1rem;
    font-weight: 800;
}
.pd-variant-desc {
    color: #71717a;
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}
.pd-variant-stock {
    color: #52525b;
    font-size: 0.75rem;
    margin-top: 0.4rem;
}

/* Buy button */
.pd-buy-btn {
    padding: 0.9rem;
    font-size: 1.05rem;
    margin-top: 0.25rem;
}
.pd-secure-note {
    text-align: center;
    color: #52525b;
    font-size: 0.78rem;
    margin-top: 1rem;
}

/* Quick purchase popup */
body.modal-open {
    overflow: hidden;
}
.quick-purchase-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 14, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.quick-purchase-overlay.open {
    display: flex;
}
.quick-purchase-modal {
    width: 100%;
    max-width: 420px;
    background: radial-gradient(circle at top center, rgba(225, 29, 72, 0.18), rgba(10, 10, 14, 0.96) 36%, rgba(6, 10, 18, 0.98) 100%);
    border: 1px solid rgba(225, 29, 72, 0.35);
    border-radius: 18px;
    padding: 1.2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    position: relative;
}
.quick-purchase-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #3f3f46;
    background: rgba(17, 17, 19, 0.85);
    color: #e4e4e7;
    cursor: pointer;
}
.quick-purchase-close:hover {
    border-color: #e11d48;
}
.quick-purchase-title {
    color: #fff;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.1rem;
    padding: 0 1.4rem;
}
.quick-purchase-price {
    color: #f4f4f5;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 0.95rem;
}
.quick-form-group {
    margin-bottom: 0.95rem;
}
.quick-form-group label {
    color: #d4d4d8;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}
.quick-form-group input {
    width: 100%;
    background: rgba(12, 16, 26, 0.95);
    border: 1px solid rgba(63, 63, 70, 0.8);
    border-radius: 12px;
    color: #f4f4f5;
    font-size: 0.95rem;
    padding: 0.72rem 0.95rem;
}
.quick-form-group input:focus {
    border-color: rgba(225, 29, 72, 0.65);
    outline: none;
}
.quick-payment-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.quick-payment-option {
    width: 100%;
    border: 1px solid #27272a;
    border-radius: 12px;
    background: rgba(8, 12, 20, 0.82);
    color: #f4f4f5;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 0.8rem 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.quick-payment-option:hover {
    border-color: #3f3f46;
    background: rgba(14, 17, 27, 0.94);
}
.quick-payment-option.active {
    border-color: #e11d48;
    background: rgba(63, 11, 24, 0.55);
    box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.35) inset;
}
.quick-purchase-continue {
    margin-top: 0.45rem;
    padding: 0.88rem;
    font-size: 1.02rem;
    border-radius: 12px;
}

/* ── Mobile ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #0a0a0a;
        border-bottom: 1px solid #1a1a1a;
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
    }
    .nav-links.open { display: flex; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .stats-strip { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .order-detail-grid .invoice-card:first-child,
    .order-detail-grid .invoice-card:last-child { grid-column: auto; }
    .orders-table { font-size: 0.82rem; }
    .orders-table th, .orders-table td { padding: 0.6rem 0.65rem; }
    .admin-header { flex-direction: column; align-items: flex-start; }
    .product-form-grid { grid-template-columns: 1fr; }
    .pd-layout { grid-template-columns: 1fr; }
    .pd-purchase-card { position: static; }
    .form-row-2 { grid-template-columns: 1fr; }
    .variant-tabs { flex-wrap: nowrap; }
    .quick-purchase-modal {
        padding: 1rem;
    }
    .quick-purchase-title {
        font-size: 1.3rem;
    }
    .quick-purchase-price {
        font-size: 1.5rem;
    }
}

@media (max-width: 520px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ── Cart ────────────────────────────────────────────────────────── */
.cart-title { color: #fff; font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-item {
    display: flex; align-items: center; gap: 1rem;
    background: #111113; border: 1px solid #1e1e22;
    border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}
.cart-item-img { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #18181b; display: flex; align-items: center; justify-content: center; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-icon { font-size: 1.5rem; }
.cart-item-info { flex: 1; }
.cart-item-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.cart-item-price { color: #71717a; font-size: 0.8rem; margin-top: 0.2rem; }
.cart-item-qty { color: #a1a1aa; font-size: 0.9rem; min-width: 28px; text-align: center; }
.cart-item-total { color: #22d3ee; font-weight: 800; font-size: 1rem; min-width: 60px; text-align: right; }
.cart-remove-btn { background: none; border: none; color: #52525b; font-size: 1rem; cursor: pointer; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; }
.cart-remove-btn:hover { color: #e11d48; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: #18181b; border: 1px solid #27272a; border-radius: 12px; margin-top: 0.5rem; }
.cart-total-row span { color: #a1a1aa; font-size: 1rem; font-weight: 600; }
.cart-grand-total { color: #e11d48; font-size: 1.5rem; font-weight: 800; }
.cart-checkout-panel { background: #111113; border: 1px solid #1e1e22; border-radius: 14px; padding: 1.75rem; }
.cart-checkout-panel h2 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; }
.cart-empty { text-align: center; padding: 5rem 1rem; }
.cart-empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.cart-empty h2 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.cart-empty p { color: #71717a; }
.cart-nav-btn { position: relative; color: #a1a1aa; font-size: 1.25rem; display: flex; align-items: center; text-decoration: none !important; }
.cart-nav-btn:hover { color: #fff; }
.cart-nav-count { position: absolute; top: -8px; right: -10px; background: #e11d48; color: #fff; font-size: 0.65rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

/* ── Review prompt on invoice ────────────────────────────────────── */
.review-prompt-card {
    background: #111113;
    border: 1px solid #facc15;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.review-prompt-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.review-prompt-icon { font-size: 2rem; }
.review-prompt-header h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.review-prompt-header p { color: #71717a; font-size: 0.85rem; margin: 0; }
.star-rating-group { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.star-btn { font-size: 2rem; cursor: pointer; color: #3f3f46; transition: color 0.15s; user-select: none; line-height: 1; }
.star-btn:hover, .star-btn.active { color: #facc15; }

/* ── Discord Popup ──────────────────────────────────────────────── */
.discord-popup {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: #1a1a2e;
    border: 1px solid #e11d48;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(225, 29, 72, .25);
    animation: popupSlide .4s ease-out;
    max-width: 260px;
}
@keyframes popupSlide {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
.discord-popup-close {
    position: absolute;
    top: .4rem;
    right: .7rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}
.discord-popup-close:hover { color: #fff; }
.discord-popup-icon { font-size: 1.8rem; }
.discord-popup-text {
    color: #ccc;
    font-size: .85rem;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}
.discord-popup-btn {
    font-size: .8rem;
    padding: .45rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
}

/* ── Admin Group Form ───────────────────────────────────────────── */
.group-form-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .group-form-layout { grid-template-columns: 1fr; }
}
.group-form-left, .group-form-right { display: flex; flex-direction: column; gap: 1.5rem; }

/* Product dropdown multi-select */
.group-product-select-wrap { position: relative; }
.group-dropdown-btn {
    width: 100%; padding: .65rem 1rem; background: #18181b; border: 1px solid #27272a;
    border-radius: 8px; color: #fff; font-size: .9rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.group-dropdown-btn:hover { border-color: #3f3f46; }
.dropdown-arrow { color: #71717a; font-size: .75rem; }
.group-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #18181b; border: 1px solid #27272a; border-radius: 8px;
    max-height: 260px; overflow-y: auto; z-index: 50; padding: .25rem 0;
}
.group-dropdown-menu.open { display: block; }
.group-dropdown-item {
    display: flex; align-items: center; gap: .6rem; padding: .5rem 1rem;
    cursor: pointer; color: #d4d4d8; font-size: .85rem; transition: background .15s;
}
.group-dropdown-item:hover { background: #27272a; }
.group-dropdown-item input[type="checkbox"] { accent-color: #3b82f6; }

/* Sort grid */
.group-sort-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.group-sort-card {
    background: #18181b; border: 1px solid #27272a; border-radius: 10px;
    overflow: hidden; cursor: grab; transition: box-shadow .2s, border-color .2s;
}
.group-sort-card.dragging { opacity: .5; }
.group-sort-card.drag-over { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,.3); }
.sort-card-img {
    position: relative; aspect-ratio: 16/10; background: #09090b; overflow: hidden;
}
.sort-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sort-card-icon { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 2rem; }
.sort-card-remove {
    position: absolute; top: .4rem; right: .4rem; background: #dc2626; color: #fff;
    border: none; padding: .2rem .5rem; border-radius: 6px; font-size: .7rem; cursor: pointer;
}
.sort-card-remove:hover { background: #b91c1c; }
.sort-card-info { padding: .6rem .8rem; }
.sort-card-info strong { display: block; color: #fff; font-size: .85rem; margin-bottom: .15rem; }
.sort-card-desc { color: #71717a; font-size: .75rem; }
.group-sort-add {
    display: flex; align-items: center; justify-content: center;
    border: 2px dashed #27272a; border-radius: 10px; min-height: 140px;
    color: #71717a; cursor: pointer; transition: border-color .2s, color .2s;
}
.group-sort-add:hover { border-color: #3f3f46; color: #a1a1aa; }
.upload-placeholder {
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: #71717a; padding: 2rem;
}

/* ── Storefront Group Modal ─────────────────────────────────────── */
.group-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7);
    z-index: 1000; align-items: center; justify-content: center; padding: 1rem;
}
.group-modal-overlay.open { display: flex; }
.group-modal {
    background: #0a0a0b; border: 1px solid #1e1e22; border-radius: 14px;
    width: 100%; max-width: 520px; max-height: 80vh; overflow-y: auto;
    padding: 1.5rem;
}
.group-modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 1.2rem;
}
.group-modal-header h2 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
.group-modal-desc { color: #71717a; font-size: .8rem; margin: .2rem 0 0; }
.group-modal-close {
    background: none; border: none; color: #71717a; font-size: 1.4rem;
    cursor: pointer; line-height: 1; padding: 0;
}
.group-modal-close:hover { color: #fff; }
.group-modal-products { display: flex; flex-direction: column; gap: .75rem; }
.gm-product-row {
    display: flex; align-items: center; gap: 1rem; padding: .8rem;
    background: #111113; border: 1px solid #1e1e22; border-radius: 10px;
    text-decoration: none; transition: border-color .2s;
}
.gm-product-row:hover { border-color: #3b82f6; text-decoration: none; }
.gm-product-img {
    width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
    flex-shrink: 0; background: #18181b;
}
.gm-product-img img { width: 100%; height: 100%; object-fit: cover; }
.gm-product-icon {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; font-size: 1.5rem;
}
.gm-product-info { flex: 1; min-width: 0; }
.gm-product-info strong { display: block; color: #fff; font-size: .9rem; }
.gm-product-meta { display: block; color: #71717a; font-size: .75rem; }
.gm-product-price { display: block; color: #3b82f6; font-size: .8rem; margin-top: .1rem; }
.gm-product-row .btn { flex-shrink: 0; }

/* ── Discord Connect Nav ─────────────────────────────────────────── */
.btn-discord-nav {
    background: #5865F2 !important;
    color: #fff !important;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-discord-nav:hover { background: #4752C4 !important; text-decoration: none !important; }

.discord-user-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #18181b;
    padding: 0.3rem 0.7rem 0.3rem 0.35rem;
    border-radius: 9999px;
    border: 1px solid #27272a;
}
.discord-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.discord-nav-name {
    color: #e4e4e7;
    font-size: 0.82rem;
    font-weight: 600;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.discord-disconnect {
    color: #71717a !important;
    font-size: 0.75rem;
    margin-left: 0.15rem;
    transition: color 0.2s;
}
.discord-disconnect:hover { color: #e11d48 !important; text-decoration: none !important; }
