body {
    min-height: 100vh;
    background: #080808;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url('../png/fon.png') center/cover no-repeat;
    opacity: 0.18;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.2), #080808 78%);
}

.store-page {
    min-height: calc(100vh - 80px);
    padding: 72px 0 90px;
}

.store-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
}

.store-eyebrow {
    color: #3a7afe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.store-title {
    margin-top: 10px;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.store-description {
    max-width: 650px;
    margin-top: 22px;
    color: #9b9b9b;
    font-size: 16px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 32px;
    margin-top: 52px;
}

.category-list {
    display: flex;
    flex-direction: column;
    align-self: start;
    position: sticky;
    top: 105px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid #252525;
    border-radius: 22px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    color: #777;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.category-link i {
    width: 20px;
    text-align: center;
}

.category-link:hover,
.category-link.active {
    color: #fff;
    background: #3a7afe;
}

.catalog-section {
    display: none;
}

.catalog-section.active {
    display: block;
    animation: storeFade 0.25s ease;
}

@keyframes storeFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 28px;
    text-transform: uppercase;
}

.section-heading span {
    color: #666;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-grid,
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card,
.case-card {
    overflow: hidden;
    background: rgba(18, 18, 18, 0.94);
    border: 1px solid #252525;
    border-radius: 24px;
    transition: 0.25s ease;
}

.product-card:hover,
.case-card:hover {
    border-color: rgba(58, 122, 254, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.product-art,
.case-art {
    display: grid;
    place-items: center;
    min-height: 230px;
    position: relative;
    background: radial-gradient(circle at 50% 60%, rgba(58, 122, 254, 0.23), transparent 48%), #0d0d0d;
}

.product-art i,
.case-art i {
    color: #fff;
    font-size: 74px;
    filter: drop-shadow(0 12px 24px rgba(58, 122, 254, 0.45));
}

.product-number {
    position: absolute;
    right: 18px;
    top: 14px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 76px;
    font-weight: 800;
    line-height: 1;
}

.product-body,
.case-body {
    padding: 22px;
}

.product-name,
.case-name {
    font-size: 22px;
    font-weight: 800;
}

.product-footer,
.case-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.product-price,
.case-price {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.product-price small,
.case-price small {
    color: #777;
    font-size: 12px;
    font-weight: 600;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 0;
    border-radius: 12px;
    background: #3a7afe;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.store-button:hover {
    background: #fff;
    color: #111;
}

.case-hero {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 45px;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(11, 11, 11, 0.96));
    border: 1px solid #282828;
    border-radius: 30px;
}

.case-showcase {
    display: grid;
    place-items: center;
    min-height: 350px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(58, 122, 254, 0.3), transparent 58%);
}

.case-showcase i {
    color: #fff;
    font-size: 150px;
    filter: drop-shadow(0 30px 45px rgba(58, 122, 254, 0.55));
}

.case-meta {
    color: #777;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-copy h2 {
    margin: 8px 0 12px;
    font-size: 52px;
}

.case-copy p {
    color: #929292;
}

.case-action {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.case-action .store-button {
    padding: 15px 26px;
}

.drop-section {
    margin-top: 46px;
}

.drop-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
}

.forbes-list {
    margin-top: 48px;
    overflow: hidden;
    background: rgba(16, 16, 16, 0.92);
    border: 1px solid #252525;
    border-radius: 26px;
}

.forbes-head,
.forbes-row {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    align-items: center;
    gap: 20px;
    padding: 18px 26px;
}

.forbes-head {
    color: #666;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #252525;
}

.forbes-row + .forbes-row {
    border-top: 1px solid #202020;
}

.forbes-place {
    color: #3a7afe;
    font-size: 22px;
    font-weight: 800;
}

.forbes-name {
    font-weight: 700;
}

.forbes-balance {
    text-align: right;
    font-weight: 800;
}

.forbes-state {
    padding: 28px;
    color: #777;
    text-align: center;
}

@media (max-width: 1050px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .category-list { position: static; flex-direction: row; overflow-x: auto; }
    .category-link { flex: 0 0 auto; }
    .case-hero { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .store-page { padding-top: 42px; }
    .store-shell { padding: 0 18px; }
    .store-title { letter-spacing: -2px; }
    .catalog-layout { margin-top: 34px; }
    .case-hero { padding: 22px; }
    .case-showcase { min-height: 250px; }
    .case-showcase i { font-size: 105px; }
    .case-copy h2 { font-size: 38px; }
    .forbes-head, .forbes-row { grid-template-columns: 50px 1fr 105px; gap: 10px; padding: 15px; }
    .forbes-balance { font-size: 13px; }
}
