/* Area 51 GSM Shop — macOS Tahoe glass theme */
:root {
    --sh-bg-1: #e8eef8;
    --sh-bg-2: #d4e4f7;
    --sh-bg-3: #f5f0ff;
    --sh-surface: rgba(255, 255, 255, 0.62);
    --sh-surface-strong: rgba(255, 255, 255, 0.82);
    --sh-glass-border: rgba(255, 255, 255, 0.55);
    --sh-glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
    --sh-text: #1d1d1f;
    --sh-muted: #6e6e73;
    --sh-primary: #0071e3;
    --sh-primary-dark: #0058b0;
    --sh-accent: #ff9f0a;
    --sh-success: #34c759;
    --sh-border: rgba(0, 0, 0, 0.08);
    --sh-radius: 18px;
    --sh-radius-lg: 22px;
    --sh-blur: blur(20px) saturate(180%);
    --sh-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--sh-font);
    color: var(--sh-text);
    line-height: 1.55;
    min-height: 100vh;
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(56, 189, 248, 0.22), transparent 50%),
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(99, 102, 241, 0.18), transparent 45%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(16, 185, 129, 0.12), transparent 50%),
        linear-gradient(165deg, #f8fafc 0%, #eef2ff 38%, #f0f9ff 100%);
    background-attachment: fixed;
}

a { color: var(--sh-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.sh-glass-panel,
.sh-glass-card {
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    -webkit-backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-glass-shadow);
}

.sh-container { width: min(1180px, 92vw); margin: 0 auto; }

.sh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: var(--sh-blur);
    -webkit-backdrop-filter: var(--sh-blur);
    border-bottom: 1px solid var(--sh-glass-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.sh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 16px;
}

.sh-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    color: var(--sh-text);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0;
}

.sh-logo-mark {
    background: linear-gradient(135deg, var(--sh-accent), #ffb340);
    color: #1d1d1f;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: .85rem;
    box-shadow: 0 2px 8px rgba(255, 159, 10, 0.35);
}

.sh-nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.sh-nav a { color: var(--sh-muted); font-weight: 500; font-size: .9rem; }
.sh-nav a:hover { color: var(--sh-text); text-decoration: none; }

.sh-cart-link {
    background: rgba(0, 113, 227, 0.1);
    color: var(--sh-primary) !important;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 113, 227, 0.15);
    font-size: .88rem;
}

.sh-badge {
    background: var(--sh-accent);
    color: #1d1d1f;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: .75rem;
    font-weight: 700;
    margin-left: 4px;
}

.sh-main { min-height: 60vh; }

.sh-catalog-top { padding: 20px 0 8px; }
.sh-catalog-head {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 16px;
}
@media (max-width: 900px) { .sh-catalog-head { grid-template-columns: 1fr; } }
.sh-lead-compact { margin: 0; font-size: .95rem; }
.sh-search-compact { padding: 12px; }
.sh-catalog-main { padding-top: 12px; }
.sh-catalog-top h1 { margin: 4px 0 8px; font-size: clamp(1.6rem, 3vw, 2.2rem); }

.sh-hero { padding: 48px 0 32px; position: relative; }
.sh-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 28px;
    align-items: center;
}
@media (max-width: 900px) { .sh-hero-grid { grid-template-columns: 1fr; } }

.sh-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.sh-stat {
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 96px;
    box-shadow: var(--sh-glass-shadow);
}
.sh-stat strong { display: block; font-size: 1.25rem; color: var(--sh-text); }
.sh-stat span { font-size: .78rem; color: var(--sh-muted); }

.sh-search-label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sh-muted); margin-bottom: 10px; }
.sh-search-hint { margin: 10px 0 0; font-size: .82rem; color: var(--sh-muted); }

.sh-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 14px 0 8px;
    font-size: .9rem;
    color: var(--sh-muted);
}

.sh-brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
}
.sh-brand-pills-label { font-size: .85rem; font-weight: 600; color: var(--sh-muted); margin-right: 4px; }
.sh-brand-pill {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    border: 1px solid var(--sh-glass-border);
    color: var(--sh-text);
    font-size: .86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s, transform .15s;
}
.sh-brand-pill:hover { background: rgba(0,113,227,0.1); text-decoration: none; transform: translateY(-1px); }

.sh-card-link { color: inherit; text-decoration: none; flex: 1; display: flex; flex-direction: column; }
.sh-card-link:hover { text-decoration: none; }

.sh-btn-outline {
    background: transparent;
    color: var(--sh-primary);
    border: 1.5px solid rgba(0,113,227,0.35);
    box-shadow: none;
}
.sh-btn-recesso { margin-top: 0; }
.sh-confirm-actions { display: flex; flex-direction: column; gap: 10px; }

.sh-legal-check {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500 !important;
    font-size: .84rem !important;
}
.sh-legal-check input { margin-top: 3px; accent-color: var(--sh-primary); }
.sh-legal-check a { white-space: nowrap; }

.sh-legal-page .sh-legal-content { padding: 28px 32px; max-width: 820px; margin: 0 auto; }
.sh-legal-content h2 { margin-top: 28px; font-size: 1.15rem; }
.sh-legal-content ul, .sh-legal-content ol { padding-left: 1.2rem; }
.sh-legal-content li { margin-bottom: 6px; }

.sh-footer {
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: var(--sh-blur);
    border-top: 1px solid var(--sh-glass-border);
    color: var(--sh-muted);
    padding: 40px 0 0;
    margin-top: 56px;
}

.sh-footer-main {
    display: grid;
    grid-template-columns: 1.2fr .9fr 1.3fr .9fr;
    gap: 28px;
    padding-bottom: 28px;
}
@media (max-width: 1024px) { .sh-footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .sh-footer-main { grid-template-columns: 1fr; } }

.sh-footer-title {
    display: block;
    color: var(--sh-text);
    font-size: .95rem;
    margin-bottom: 12px;
}
.sh-footer-address {
    font-style: normal;
    line-height: 1.65;
    margin: 0 0 12px;
    font-size: .9rem;
}
.sh-footer-contact { margin: 0; font-size: .9rem; line-height: 1.6; }
.sh-footer-contact a { color: var(--sh-primary); text-decoration: none; }
.sh-footer-contact a:hover { text-decoration: underline; }

.sh-footer-hours { display: flex; flex-direction: column; gap: 4px; }
.sh-hours-line { display: block; font-size: .9rem; line-height: 1.55; }

.sh-footer-ship-note { margin: 0 0 12px; font-size: .86rem; line-height: 1.5; }
.sh-courier-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}
@media (max-width: 640px) { .sh-courier-grid { grid-template-columns: repeat(2, 1fr); } }

.sh-courier {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--sh-glass-border);
    border-radius: 10px;
    padding: 6px 8px;
    min-height: 40px;
    transition: transform .15s, box-shadow .15s;
}
.sh-courier:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.sh-courier img { max-height: 28px; width: auto; object-fit: contain; }

.sh-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sh-footer-legal a {
    color: var(--sh-muted);
    text-decoration: none;
    font-size: .88rem;
}
.sh-footer-legal a:hover { color: var(--sh-primary); }

.sh-footer-copy {
    border-top: 1px solid var(--sh-border);
    padding: 16px 0 22px;
    font-size: .85rem;
    text-align: center;
}

.sh-cookie-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 200;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid var(--sh-glass-border);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.sh-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    flex-wrap: wrap;
}
.sh-cookie-inner p { margin: 0; font-size: .88rem; color: var(--sh-muted); max-width: 720px; }
.sh-cookie-actions { display: flex; gap: 8px; }

.sh-alert { padding: 12px 16px; border-radius: 12px; margin-top: 16px; }

.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
    pointer-events: none;
}

.sh-hero .sh-container { position: relative; }

.sh-kicker {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    color: var(--sh-muted);
    margin: 0 0 8px;
    font-weight: 600;
}

.sh-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.sh-lead {
    margin: 0 0 28px;
    max-width: 620px;
    color: var(--sh-muted);
    font-size: 1.05rem;
}

/* Glass search — Tahoe style */
.sh-search-wrap {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--sh-radius-lg);
    padding: 16px;
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.sh-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 113, 227, 0.12);
    color: var(--sh-primary);
    border: 1px solid rgba(0, 113, 227, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 12px;
}

.sh-search-chip button {
    border: 0;
    background: rgba(0,0,0,0.06);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    color: var(--sh-muted);
}

.sh-search-row { display: flex; gap: 10px; }

.sh-search-input {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 15px 18px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
    outline: none;
    transition: box-shadow .2s, border-color .2s;
}

.sh-search-input:focus {
    border-color: rgba(0, 113, 227, 0.4);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.sh-suggest {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: var(--sh-blur);
    color: var(--sh-text);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--sh-glass-border);
    box-shadow: var(--sh-glass-shadow);
    max-height: 320px;
    overflow-y: auto;
}

.sh-suggest-item {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--sh-border);
}

.sh-suggest-item:hover { background: rgba(0, 113, 227, 0.06); }
.sh-suggest-item.sh-suggest-model strong { color: var(--sh-primary); }
.sh-suggest-empty {
    padding: 14px 16px;
    font-size: .9rem;
    color: var(--sh-muted);
    line-height: 1.45;
    border-bottom: 1px solid var(--sh-border);
}
.sh-search-empty {
    padding: 28px 8px;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.5;
}
.sh-suggest-divider {
    padding: 8px 14px 4px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--sh-muted);
    border-top: 1px solid var(--sh-border);
    margin-top: 4px;
}
.sh-model-family.is-section-focus > .sh-family-toggle {
    background: rgba(0, 113, 227, 0.1);
    border-color: rgba(0, 113, 227, 0.25);
    color: var(--sh-primary);
}
.sh-suggest-item small { color: var(--sh-muted); display: block; margin-top: 2px; }

.sh-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    font-size: .9rem;
    color: var(--sh-muted);
}

.sh-ic { margin-right: 4px; color: var(--sh-success); }
.sh-section { padding: 36px 0 48px; }

.sh-grid-2 { display: grid; grid-template-columns: 220px 1fr; gap: 28px; }
@media (max-width: 860px) { .sh-grid-2 { grid-template-columns: 1fr; } }

.sh-sidebar {
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius);
    padding: 18px;
}

.sh-sidebar h2 { font-size: .95rem; margin: 0 0 12px; font-weight: 600; }

.sh-section-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0 0;
}
.sh-section-tab {
    border: 1px solid var(--sh-glass-border);
    background: var(--sh-surface);
    color: var(--sh-muted);
    border-radius: 999px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.sh-section-tab:hover { color: var(--sh-primary); border-color: rgba(0, 113, 227, 0.35); }
.sh-section-tab.active {
    background: rgba(0, 113, 227, 0.12);
    color: var(--sh-primary);
    border-color: rgba(0, 113, 227, 0.35);
}

.sh-brand-tree { list-style: none; padding: 0; margin: 0; max-height: 42vh; overflow-y: auto; }
.sh-sidebar-divider { height: 1px; background: var(--sh-border); margin: 16px 0; }
.sh-sidebar-subtitle { margin: 0 0 10px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--sh-muted); }
.sh-cat-tree { list-style: none; padding: 0; margin: 0; max-height: 38vh; overflow-y: auto; }
.sh-cat-group { margin-bottom: 4px; }
.sh-cat-group-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 10px 8px;
    text-align: left;
    font: inherit;
    font-weight: 600;
    font-size: .86rem;
    cursor: pointer;
    border-radius: 10px;
}
.sh-cat-group-toggle:hover { background: rgba(0,113,227,.06); color: var(--sh-primary); }
.sh-cat-group.open > .sh-cat-group-toggle { color: var(--sh-primary); }
.sh-cat-group.open .sh-brand-chevron { transform: rotate(90deg); color: var(--sh-primary); }
.sh-cat-items { list-style: none; padding: 0 0 6px 18px; margin: 0; }
.sh-cat-pick {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 8px 10px;
    font: inherit;
    font-size: .84rem;
    color: var(--sh-muted);
    cursor: pointer;
    border-radius: 8px;
}
.sh-cat-pick:hover { background: rgba(0,113,227,.06); color: var(--sh-primary); }
.sh-cat-pick.active { background: rgba(0,113,227,.12); color: var(--sh-primary); font-weight: 600; }
.sh-b2b-step-error { margin-bottom: 12px; }
.sh-brand-node { margin-bottom: 2px; }
.sh-brand-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--sh-text);
    font-size: .9rem;
    font-weight: 600;
    padding: 7px 6px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
}
.sh-brand-toggle:hover { background: rgba(0, 113, 227, 0.06); color: var(--sh-primary); }
.sh-brand-node.open > .sh-brand-toggle { color: var(--sh-primary); }
.sh-brand-node.has-active > .sh-brand-toggle { background: rgba(0, 113, 227, 0.08); }
.sh-brand-chevron {
    display: inline-block;
    width: 14px;
    color: var(--sh-muted);
    transition: transform .15s;
    font-size: 1rem;
    line-height: 1;
}
.sh-brand-node.open .sh-brand-chevron { transform: rotate(90deg); color: var(--sh-primary); }
.sh-model-list {
    list-style: none;
    padding: 0 0 6px 22px;
    margin: 0;
}
.sh-model-list li { margin-bottom: 2px; }
.sh-model-pick {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--sh-muted);
    font-size: .84rem;
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
}
.sh-model-pick:hover { color: var(--sh-primary); background: rgba(0, 113, 227, 0.05); }
.sh-model-pick.active { color: var(--sh-primary); font-weight: 600; background: rgba(0, 113, 227, 0.1); }
.sh-model-loading, .sh-model-empty { font-size: .8rem; color: var(--sh-muted); padding: 4px 8px; }
.sh-model-family { margin: 2px 0; }
.sh-family-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--sh-text);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
}
.sh-family-toggle:hover { background: rgba(0, 113, 227, 0.06); color: var(--sh-primary); }
.sh-model-family.open > .sh-family-toggle { color: var(--sh-primary); }
.sh-model-family.has-active > .sh-family-toggle { background: rgba(0, 113, 227, 0.08); }
.sh-family-chevron {
    display: inline-block;
    width: 12px;
    color: var(--sh-muted);
    transition: transform .15s;
    font-size: .95rem;
    line-height: 1;
    flex-shrink: 0;
}
.sh-model-family.open .sh-family-chevron { transform: rotate(90deg); color: var(--sh-primary); }
.sh-family-label { flex: 1; min-width: 0; }
.sh-family-count {
    font-size: .68rem;
    font-weight: 600;
    color: var(--sh-muted);
    background: rgba(0, 113, 227, 0.08);
    border-radius: 999px;
    padding: 1px 7px;
    line-height: 1.4;
}
.sh-model-family-list {
    list-style: none;
    padding: 0 0 4px 18px;
    margin: 0;
    border-left: 2px solid rgba(0, 113, 227, 0.12);
}
.sh-model-family-list li { margin-bottom: 2px; }

.sh-brand-list { list-style: none; padding: 0; margin: 0; }
.sh-brand-list li { margin-bottom: 6px; }
.sh-brand-list a { color: var(--sh-muted); font-size: .9rem; }
.sh-brand-list a:hover { color: var(--sh-primary); }

.sh-filter-active {
    margin-top: 20px;
    padding: 14px;
    background: rgba(0, 113, 227, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 113, 227, 0.15);
}

.sh-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.sh-logo-img {
    height: 68px;
    width: auto;
    max-width: none;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
    transition: transform .2s ease, filter .2s ease;
}
.sh-logo:hover .sh-logo-img {
    transform: scale(1.02);
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.16));
}
@media (max-width: 900px) {
    .sh-header-inner { padding: 5px 0; }
    .sh-logo-img { height: 56px; }
}
@media (max-width: 640px) {
    .sh-header-inner { gap: 10px; }
    .sh-logo-img { height: 48px; }
}

.sh-hero {
    padding: 28px 0 12px;
}
.sh-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
}
@media (max-width: 900px) { .sh-hero-grid { grid-template-columns: 1fr; } }
.sh-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    font-weight: 800;
}
.sh-hero-accent {
    background: linear-gradient(90deg, #0071e3, #34c759);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sh-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.sh-hero-badges span {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--sh-glass-border);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 600;
    backdrop-filter: var(--sh-blur);
}
.sh-hero-search {
    background: var(--sh-surface-strong);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius-lg);
    padding: 16px;
    box-shadow: var(--sh-glass-shadow);
}
.sh-catalog-nav-wrap { padding-bottom: 8px; }
.sh-section-tabs-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.sh-acc-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.sh-acc-cat {
    border: 1px solid var(--sh-glass-border);
    background: rgba(255,255,255,.65);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--sh-muted);
}
.sh-acc-cat.active, .sh-acc-cat:hover {
    color: var(--sh-primary);
    border-color: rgba(0,113,227,.35);
    background: rgba(0,113,227,.08);
}
.sh-filter-active-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.sh-btn-pill {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .78rem;
}
.sh-btn-clear-filter {
    background: rgba(255,59,48,.1);
    color: #c41e14;
    border: 1px solid rgba(255,59,48,.2);
}
.sh-btn-clear-filter:hover { background: rgba(255,59,48,.18); }
.sh-chip-clear {
    border: 0;
    background: rgba(0,0,0,.06);
    border-radius: 999px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: .8rem;
}
.sh-btn-outline {
    background: transparent;
    border: 1px solid rgba(0,113,227,.35);
    color: var(--sh-primary);
}
.sh-btn-model-more {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    font-weight: 700;
}
.sh-card {
    background: var(--sh-surface-strong);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-glass-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease;
}

.sh-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.15);
}
.sh-card-soldout { opacity: .92; }
.sh-card-soldout img { filter: grayscale(0.35); }

.sh-badge-soldout {
    display: inline-block;
    background: rgba(255, 59, 48, 0.12);
    color: #c41e14;
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.sh-btn-preorder {
    background: rgba(255, 149, 0, 0.15);
    color: #b35c00;
}
.sh-btn-preorder:hover { background: rgba(255, 149, 0, 0.25); }

.sh-stock-preorder { color: #b35c00; font-weight: 600; }

.sh-card img { aspect-ratio: 4/3; object-fit: cover; background: rgba(0,0,0,0.03); }
.sh-card-img-wrap { position: relative; }
.sh-img-missing-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    color: #9a3412;
    background: rgba(255, 237, 213, 0.95);
    border: 1px solid rgba(234, 88, 12, 0.35);
}
.sh-card-noimg img { object-fit: contain; background: #f8fafc; padding: 12px; }
.sh-card-body { padding: 14px; flex: 1; }
.sh-card-meta { font-size: .78rem; color: var(--sh-muted); margin-bottom: 4px; }
.sh-card-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 8px;
}
.sh-card-code,
.sh-card-sku {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .76rem;
}
.sh-card-code span,
.sh-card-sku span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--sh-muted);
}
.sh-card-code strong,
.sh-card-sku strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .82rem;
    font-weight: 800;
    color: var(--sh-primary);
    background: rgba(0, 113, 227, 0.1);
    border: 1px solid rgba(0, 113, 227, 0.2);
    padding: 3px 10px;
    border-radius: 8px;
}
.sh-color-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}
.sh-color-badge.is-light { color: #0f172a; background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); }
.sh-color-badge-lg { font-size: .95rem; padding: 8px 14px; margin-bottom: 14px; }
.sh-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}
.sh-color-badge.is-light .sh-color-dot { border-color: rgba(15, 23, 42, 0.15); }
.sh-color-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .78;
}
.sh-card-desc {
    margin: 0 0 10px;
    font-size: .84rem;
    line-height: 1.45;
    color: var(--sh-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sh-card h3 { margin: 0 0 8px; font-size: 1rem; line-height: 1.3; font-weight: 600; }

.sh-tag {
    display: inline-block;
    background: rgba(0, 113, 227, 0.1);
    color: var(--sh-primary);
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

.sh-price { font-weight: 700; color: var(--sh-text); }
.sh-price-lg { font-size: 1.6rem; margin: 12px 0; }

.sh-btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform .15s, box-shadow .15s, background .15s;
}

.sh-btn:active { transform: scale(0.98); }

.sh-btn-primary {
    background: var(--sh-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.35);
}

.sh-btn-primary:hover {
    background: var(--sh-primary-dark);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

.sh-btn-sm { font-size: .85rem; padding: 8px 12px; }
.sh-btn-lg { padding: 14px 20px; font-size: 1rem; border-radius: 14px; }
.sh-btn-block { width: 100%; }
.sh-btn-cart { margin: 0 12px 12px; }

.sh-muted { color: var(--sh-muted); }
.sh-small { font-size: .82rem; }
.sh-breadcrumb { font-size: .88rem; color: var(--sh-muted); margin-bottom: 16px; }

.sh-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .sh-product-layout { grid-template-columns: 1fr; } }

.sh-product-gallery img,
.sh-product-info {
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-glass-shadow);
}

.sh-product-gallery img { padding: 0; }
.sh-product-info { padding: 24px; }
.sh-product-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 12px;
}
.sh-product-code,
.sh-product-sku-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0, 113, 227, 0.08);
    border: 1px solid rgba(0, 113, 227, 0.2);
}
.sh-product-code-label,
.sh-product-sku-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--sh-muted);
}
.sh-product-code-value,
.sh-product-sku-value {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 1rem;
    color: var(--sh-primary);
}
.sh-product-desc {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--sh-border);
}
.sh-product-desc h2 { margin: 0 0 10px; font-size: 1.05rem; }
.sh-product-desc p { margin: 0; line-height: 1.6; color: var(--sh-text); }
.sh-stock { color: var(--sh-success); font-weight: 600; }
.sh-related { margin-top: 40px; }

.sh-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.sh-model-card {
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    padding: 16px;
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-glass-shadow);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: inherit;
    transition: transform .2s;
}

.sh-model-card:hover { transform: translateY(-2px); }

.sh-cart-layout, .sh-checkout-grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
@media (max-width: 900px) { .sh-cart-layout, .sh-checkout-grid { grid-template-columns: 1fr; } }

.sh-cart-line {
    display: grid;
    grid-template-columns: 72px 1fr auto auto;
    gap: 12px;
    align-items: center;
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    padding: 12px;
    border-radius: var(--sh-radius);
    margin-bottom: 10px;
    box-shadow: var(--sh-glass-shadow);
}

.sh-cart-summary {
    padding: 20px;
    height: fit-content;
}

.sh-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.sh-total { font-size: 1.15rem; border-top: 1px solid var(--sh-border); padding-top: 10px; margin-top: 10px; }

.sh-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sh-form-grid label { display: flex; flex-direction: column; gap: 4px; font-size: .88rem; font-weight: 600; }

.sh-form-grid input,
.sh-form-grid textarea,
.sh-form-grid select,
.sh-input {
    padding: 11px 14px;
    border: 1px solid var(--sh-border);
    border-radius: 10px;
    font: inherit;
    color: var(--sh-text);
    background: rgba(255, 255, 255, 0.92);
    outline: none;
    min-height: 44px;
    width: 100%;
}

.sh-form-grid input:focus,
.sh-form-grid textarea:focus,
.sh-form-grid select:focus,
.sh-input:focus {
    border-color: rgba(0, 113, 227, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.sh-full { grid-column: 1 / -1; }

.sh-pay-options { display: flex; flex-direction: column; gap: 10px; }

.sh-pay-opt {
    display: flex;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid var(--sh-border);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.sh-pay-opt:has(input:checked) {
    border-color: rgba(0, 113, 227, 0.5);
    background: rgba(0, 113, 227, 0.06);
}

.sh-pay-opt input { margin-top: 4px; accent-color: var(--sh-primary); }

.sh-pay-panel { max-width: 520px; margin: 0 auto; padding: 32px; }
.sh-stripe-mount, .sh-paypal-mount { margin: 20px 0; min-height: 48px; }

.sh-mt { margin-top: 24px; }
.sh-checkout-line { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; margin-bottom: 6px; }

.sh-confirm-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 36px;
    background: var(--sh-surface);
    backdrop-filter: var(--sh-blur);
    border: 1px solid var(--sh-glass-border);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-glass-shadow);
}

.sh-confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.15);
    color: var(--sh-success);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sh-confirm-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 14px;
    margin: 20px 0;
    border: 1px solid var(--sh-glass-border);
}

.sh-confirm-details div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--sh-border);
}

.sh-alert.error { background: rgba(255, 59, 48, 0.12); color: #c41e16; border: 1px solid rgba(255, 59, 48, 0.2); }
.sh-alert.success { background: rgba(52, 199, 89, 0.12); color: #1d7a36; border: 1px solid rgba(52, 199, 89, 0.2); }

.sh-delivery-bar {
    background: linear-gradient(90deg, #0071e3, #34c759);
    color: #fff;
    font-size: .86rem;
    padding: 8px 0;
}
.sh-delivery-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sh-delivery-badge {
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 4px 12px;
    font-weight: 700;
}
.sh-delivery-text { opacity: .95; }
.sh-delivery-support { color: #fff; font-weight: 600; margin-left: auto; text-decoration: underline; }
.sh-delivery-inline { color: #0071e3; }

.sh-nav-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--sh-glass-border);
    background: var(--sh-surface);
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--sh-muted);
    font-weight: 600;
    font-size: .88rem;
}
.sh-nav-search-btn:hover { border-color: rgba(0,113,227,.35); color: var(--sh-primary); }
.sh-kbd {
    font-size: .72rem;
    background: rgba(0,0,0,.06);
    border-radius: 6px;
    padding: 2px 6px;
    border: 1px solid var(--sh-glass-border);
}

.sh-search-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 10vh 16px 16px;
}
.sh-search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}
.sh-search-modal-panel {
    position: relative;
    width: min(720px, 100%);
    background: var(--sh-surface-strong);
    border: 1px solid var(--sh-glass-border);
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0,0,0,.2);
    overflow: hidden;
}
.sh-search-modal-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--sh-glass-border);
}
.sh-search-modal-input {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 1.1rem;
    padding: 10px;
    outline: none;
}
.sh-search-modal-close {
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--sh-muted);
    line-height: 1;
}
.sh-search-modal-hint {
    padding: 8px 16px;
    font-size: .82rem;
    color: var(--sh-muted);
    border-bottom: 1px solid var(--sh-glass-border);
}
.sh-search-modal-results {
    max-height: 50vh;
    overflow-y: auto;
    padding: 8px;
}
.sh-search-hit {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 10px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.sh-search-hit:hover { background: rgba(0,113,227,.06); }
.sh-search-hit img { border-radius: 8px; object-fit: cover; }
.sh-search-hit strong { display: block; }
.sh-search-hit small { color: var(--sh-muted); }

.sh-support-widget { position: fixed; right: 18px; bottom: 18px; z-index: 1100; }
.sh-support-fab {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0071e3, #34c759);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,113,227,.35);
}
.sh-support-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(320px, 92vw);
    background: var(--sh-surface-strong);
    border: 1px solid var(--sh-glass-border);
    border-radius: 16px;
    box-shadow: var(--sh-glass-shadow);
    padding: 14px;
}
.sh-support-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.sh-support-panel-head button {
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}
.sh-support-welcome { font-size: .88rem; color: var(--sh-muted); margin: 0 0 12px; }
.sh-support-actions { display: grid; gap: 8px; margin-bottom: 12px; }
.sh-support-quick-form { display: grid; gap: 8px; }

.sh-auth-page { display: flex; justify-content: center; }
.sh-auth-card { width: min(480px, 100%); padding: 24px; }
.sh-auth-card-checkout { width: min(520px, 100%); }
.sh-auth-kicker {
    margin: 0 0 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--sh-primary);
}
.sh-auth-split {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--sh-border);
}
.sh-auth-split-label {
    margin: 0 0 10px;
    font-size: .92rem;
    color: var(--sh-text);
    font-weight: 600;
}
.sh-form { display: grid; gap: 12px; }
.sh-form label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
.sh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sh-input {
    border: 1px solid var(--sh-glass-border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    color: var(--sh-text);
    background: rgba(255,255,255,.92);
    min-height: 44px;
    width: 100%;
}
.sh-auth-alt { margin-top: 14px; font-size: .9rem; color: var(--sh-muted); }
.sh-account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.sh-account-card { padding: 18px; }
.sh-account-actions, .sh-order-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.sh-delivery-highlight { border-color: rgba(0,113,227,.25); background: rgba(0,113,227,.05); }
.sh-orders-list, .sh-ticket-list { display: grid; gap: 10px; }
.sh-order-card, .sh-ticket-view, .sh-ticket-create, .sh-ticket-sidebar-card { padding: 20px; }
.sh-order-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.sh-support-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.sh-ticket-list { list-style: none; padding: 0; margin: 0; }
.sh-ticket-list li { margin: 0; }
.sh-ticket-list a {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--sh-glass-border);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.45);
    transition: border-color .15s, background .15s;
}
.sh-ticket-list a:hover {
    border-color: rgba(0, 113, 227, 0.35);
    background: rgba(0, 113, 227, 0.05);
}
.sh-ticket-list li.is-active a {
    border-color: rgba(0, 113, 227, 0.45);
    background: rgba(0, 113, 227, 0.1);
}
.sh-ticket-list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.sh-ticket-list-subject { font-size: .9rem; color: var(--sh-text); line-height: 1.35; }
.sh-ticket-list-date { font-size: .75rem; color: var(--sh-muted); }
.sh-ticket-view-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.sh-ticket-code {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--sh-primary);
    margin-bottom: 4px;
}
.sh-ticket-view h2 { margin: 0; font-size: 1.2rem; line-height: 1.3; }
.sh-ticket-order-ref { margin: 0 0 12px; font-size: .88rem; color: var(--sh-muted); }
.sh-ticket-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    white-space: nowrap;
}
.sh-ticket-status-sm { font-size: .66rem; padding: 2px 8px; }
.sh-ticket-status.is-open { background: rgba(0, 113, 227, 0.12); color: var(--sh-primary); }
.sh-ticket-status.is-progress { background: rgba(255, 159, 10, 0.15); color: #9a6200; }
.sh-ticket-status.is-closed { background: rgba(0, 0, 0, 0.06); color: var(--sh-muted); }
.sh-ticket-thread {
    display: grid;
    gap: 12px;
    margin: 16px 0 18px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}
.sh-ticket-msg {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--sh-glass-border);
    background: rgba(255, 255, 255, 0.65);
}
.sh-ticket-msg.is-client { margin-right: 12%; }
.sh-ticket-msg.is-staff {
    margin-left: 12%;
    background: rgba(0, 113, 227, 0.08);
    border-color: rgba(0, 113, 227, 0.18);
}
.sh-ticket-msg-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: .74rem;
    color: var(--sh-muted);
    margin-bottom: 6px;
}
.sh-ticket-msg-author { font-weight: 700; color: var(--sh-text); }
.sh-ticket-msg-body { font-size: .92rem; line-height: 1.5; color: var(--sh-text); }
.sh-ticket-msg-body p { margin: 0; }
.sh-ticket-reply-form { margin-top: 8px; }
.sh-support-login-note { margin: 0; line-height: 1.45; }
.sh-support-login-note a { color: var(--sh-primary); font-weight: 600; }

/* B2B registration & pricing */
.sh-price-block { display: grid; gap: 2px; line-height: 1.25; }
.sh-price-gross { font-weight: 800; color: var(--sh-text); font-size: 1.08rem; }
.sh-price-block.sh-price-lg .sh-price-gross { font-size: 1.65rem; }
.sh-price-vat-incl { font-size: .7rem; font-weight: 600; color: var(--sh-muted); }
.sh-price-net { font-weight: 700; color: var(--sh-text); font-size: 1rem; }
.sh-price-block.sh-price-lg .sh-price-net { font-size: 1.5rem; }
.sh-price-net-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--sh-muted); }
.sh-price-vat { font-size: .78rem; color: var(--sh-primary); font-weight: 600; }
.sh-b2b-register-head { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.sh-b2b-register-trust { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; color: var(--sh-muted); }
.sh-b2b-steps-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.sh-b2b-step-tab {
    border: 1px solid var(--sh-glass-border);
    background: rgba(255,255,255,.5);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--sh-muted);
}
.sh-b2b-step-tab.active { background: rgba(0,113,227,.12); border-color: rgba(0,113,227,.35); color: var(--sh-primary); }
.sh-b2b-step-panel { display: none; }
.sh-b2b-step-panel.active { display: block; }
.sh-b2b-summary { padding: 12px 16px; margin-bottom: 12px; border-left: 3px solid rgba(0,113,227,.45); }
.sh-b2b-summary strong { display: block; margin-bottom: 4px; }
.sh-b2b-panel { padding: 22px; }
.sh-address-block {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--sh-border);
    background: rgba(255,255,255,.45);
}
.sh-address-title { margin: 0 0 12px; font-size: 1rem; }
.sh-inline-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.3;
}
.sh-inline-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--sh-primary);
}
.sh-address-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.sh-shipping-list { display: grid; gap: 12px; margin-top: 10px; }
.sh-shipping-item {
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed rgba(0,113,227,.25);
    background: rgba(0,113,227,.03);
}
.sh-shipping-item-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 10px; }
.sh-places-input { background-image: linear-gradient(90deg, rgba(0,113,227,.05), transparent); }
#shB2bFattFields.is-disabled,
#shB2bShipFields.is-disabled { opacity: .72; }
.sh-address-list { margin: 0; padding-left: 18px; }
.sh-address-list li { margin-bottom: 6px; }
.sh-b2b-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.sh-b2b-upload input[type=file] { display: none; }
.sh-b2b-upload-box {
    display: block;
    border: 2px dashed rgba(0,113,227,.25);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: rgba(0,113,227,.03);
}
.sh-b2b-upload-box strong { display: block; margin-bottom: 6px; }
.sh-b2b-step-error { margin-bottom: 12px; }
.sh-input-invalid {
    border-color: #d93025 !important;
    box-shadow: 0 0 0 2px rgba(217,48,37,.15);
}
.sh-field-error {
    color: #d93025;
    font-size: .78rem;
    font-weight: 500;
}
.sh-required-mark { color: #d93025; }
.sh-b2b-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: .9rem; }
.sh-b2b-success { padding: 32px; text-align: center; max-width: 640px; margin: 0 auto; }
.sh-b2b-success-icon { font-size: 2.4rem; margin-bottom: 12px; }
.sh-b2b-success-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 24px 0; text-align: left; }
.sh-b2b-step { padding: 10px; border-radius: 10px; background: rgba(0,0,0,.03); font-size: .78rem; }
.sh-b2b-step span { display: inline-block; width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,.08); text-align: center; line-height: 22px; margin-right: 6px; font-weight: 700; }
.sh-b2b-step.done { background: rgba(0,113,227,.08); }
.sh-b2b-step.active { background: rgba(0,113,227,.14); color: var(--sh-primary); font-weight: 600; }
.sh-b2b-status-banner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; margin-bottom: 18px; flex-wrap: wrap; }
.sh-b2b-verify-card { text-align: center; max-width: 520px; margin: 0 auto; }
.sh-wallet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sh-wallet-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--sh-glass-border); border-radius: 12px; }
.sh-wallet-default { font-size: .7rem; background: rgba(0,113,227,.1); color: var(--sh-primary); padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.sh-wallet-card { padding: 20px; }
.sh-center { text-align: center; }
.sh-mb { margin-bottom: 16px; }
.sh-span-2 { grid-column: span 2; }
@media (max-width: 640px) {
    .sh-b2b-success-steps { grid-template-columns: 1fr 1fr; }
    .sh-span-2 { grid-column: span 1; }
}
.sh-support-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.sh-support-layout { align-items: start; }
.sh-mb { margin-bottom: 20px; }
.sh-btn-ghost { background: transparent; border: 1px solid var(--sh-glass-border); }
body.sh-modal-open { overflow: hidden; }

.d-none { display: none !important; }

@media (prefers-reduced-motion: reduce) {
    .sh-card, .sh-btn, .sh-model-card { transition: none; }
}
