body {
            background-color: #1a1a2e;
            color: white;
        }

        header {
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            height: 50px;
            box-sizing: border-box;
        }
        .header-content > a {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0;
            margin: 0;
            line-height: 1;
            height: 100%;
        }
        label.hamburger {
            display: flex !important;
            align-items: center;
            margin: 0;
            line-height: 1;
            height: 100%;
        }
        .logo {
            font-size: 2.3rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0;
            line-height: 1;
            display: flex;
            align-items: center;
        }
        .hamburger {
            font-size: 1.9rem;
            color: white;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 8px;
            transition: 0.3s;
            margin-left: 15px;
        }
        .hamburger:hover {
            background: rgba(255,255,255,0.15);
        }
        .menu-toggle { display: none; }

        .mobile-menu {
            position: absolute;
            top: 100%;
            right: 15px;
            background: rgba(25, 28, 55, 0.98);
            border: 1px solid rgba(0,212,255,0.3);
            border-radius: 12px;
            width: 260px;
            padding: 15px 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.6);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.35s ease;
        }
        .menu-toggle:checked ~ .mobile-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .mobile-menu a {
            display: block;
            padding: 14px 22px;
            color: #e0e0ff;
            text-decoration: none;
            font-size: 1.08rem;
        }
        .mobile-menu a:hover {
            background: rgba(0,212,255,0.15);
            color: white;
        }
        .mobile-menu hr {
            border-color: rgba(255,255,255,0.12);
            margin: 10px 0;
        }
        .select-group {
            padding: 10px 22px;
            display: flex;
            gap: 12px;
        }
        .select-group select {
            flex: 1;
            background: rgba(255,255,255,0.08);
            color: white;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 1rem;
        }
        .dropdown { flex: 1; position: relative; }
        .dropdown-toggle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.06);
    color: #e9f1ff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 8px 28px 8px 12px;
    cursor: pointer;
    position: relative;
    transition: border-color .2s;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}
        .dropdown-toggle:hover { border-color: rgba(0,212,255,.4); }
        .dropdown-toggle .fa-chevron-down {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 11px;
            color: #8a9bae;
            transition: transform .25s;
        }
        .dropdown.open .dropdown-toggle .fa-chevron-down { transform: translateY(-50%) rotate(180deg); }
        .dd-label { font-size: 10px; color: #aac8e4; text-transform: uppercase; letter-spacing: .5px; }
        .dd-value { font-size: 14px; font-weight: 700; color: #e9f1ff; margin-top: 2px; }
        .dropdown-menu {
            display: none;
            background: #0d1830;
            border: 1px solid rgba(0,212,255,.25);
            border-radius: 10px;
            padding: 6px;
            margin-top: 6px;
            box-shadow: 0 8px 24px rgba(0,0,0,.5);
        }
        .dropdown.open .dropdown-menu {
            display: block;
        }
        .dd-item {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 13px;
            color: #aac8e4;
            cursor: pointer;
            transition: all .15s;
        }
        .dd-item:hover { background: rgba(0,212,255,.12); color: #00d4ff; }
        .dd-item.active { background: rgba(0,212,255,.18); color: #00d4ff; font-weight: 700; }

        /* ========== GRID и КАРТОЧКИ ========== */
        .skins-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

        .skin-card {
            background: #0f3460;
            border-radius: 12px;
            overflow: hidden;
            color: white;
            text-align: center;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .skin-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }
        .skin-image {
            font-size: 6rem;
            padding: 30px 0;
            background: #1a1a2e;
        }
        .skin-info {
            padding: 15px;
        }
        .skin-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 6px;
        }
        .skin-game {
            font-size: 0.9rem;
            color: #aac8e4;
            margin-bottom: 8px;
        }
        .skin-info p {
            font-size: 0.92rem;
            color: #c0c8e0;
            margin-bottom: 12px;
        }
        .skin-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .price {
            font-size: 1.6rem;
            font-weight: bold;
            color: #00d4ff;
            margin: 0;
        }
        .btn-buy {
            background: #00d4ff;
            color: #000;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.2s;
        }
        .btn-buy:hover {
            background: #00b8d9;
        }
        .btn-buy a {
            color: inherit;
            text-decoration: none;
        }

        /* ========== КАТЕГОРИИ ========== */
        .footer-column h3 {
            color: #00d4ff;
            margin-bottom: 12px;
        }
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        .footer-column ul li a {
            color: #aac8e4;
            text-decoration: none;
            display: block;
            padding: 5px 0;
            transition: color 0.2s;
        }
        .footer-column ul li a:hover {
            color: #00d4ff;
        }
        .footer-column.categories {
            background: #0f3460;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        /* ========== ПОИСК ========== */
        .search-bar {
            max-width: 520px;
            margin: 0 auto 10px;
            position: relative;
        }
        .search-bar input {
            width: 100%;
            padding: 12px 44px 12px 48px;
            border-radius: 12px;
            border: 1px solid rgba(0,212,255,0.3);
            background: #0f3460;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }
        .search-bar input:focus {
            border-color: rgba(0,212,255,0.7);
            box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
        }
        .search-bar input::placeholder {
            color: rgba(255,255,255,0.3);
        }
        .search-bar .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #00d4ff;
            font-size: 1rem;
            pointer-events: none;
        }
        .search-bar .search-clear {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
            cursor: pointer;
            display: none;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
        }
        .search-bar .search-clear:hover { color: #00d4ff; }

        .no-results {
            display: none;
            text-align: center;
            padding: 40px 20px;
            color: #aac8e4;
            font-size: 1.05rem;
            grid-column: 1 / -1;
        }
        .no-results i {
            font-size: 2.5rem;
            color: #00d4ff;
            display: block;
            margin-bottom: 12px;
        }

        /* ========== ИКОНКИ ХЕДЕРА ========== */
        .header-icons {
            display: flex;
            align-items: center;
            gap: 4px;
            height: 100%;
        }
        .icon-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: none;
            border: none;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .icon-btn:hover { background: rgba(255,255,255,0.12); }
        .icon-btn .badge {
            position: absolute;
            top: 4px;
            right: 4px;
            background: #00d4ff;
            color: #000;
            font-size: 0.6rem;
            font-weight: 700;
            border-radius: 999px;
            min-width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 3px;
            display: none;
        }

        /* ========== БОКОВЫЕ ПАНЕЛИ ========== */
        .side-panel {
            position: fixed;
            top: 0;
            right: -380px;
            width: 360px;
            max-width: 95vw;
            height: 100vh;
            background: #0d1b3e;
            border-left: 1px solid rgba(0,212,255,0.2);
            box-shadow: -10px 0 40px rgba(0,0,0,0.6);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            transition: right 0.35s cubic-bezier(.4,0,.2,1);
        }
        .side-panel.open { right: 0; }

        .panel-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        .panel-overlay.open { opacity: 1; pointer-events: all; }

        .panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .panel-header h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 700;
            color: #00d4ff;
        }
        .panel-close {
            background: none;
            border: none;
            color: rgba(255,255,255,0.5);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .panel-close:hover { background: rgba(255,255,255,0.1); color: white; }

        .panel-body {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }
        .panel-body::-webkit-scrollbar { width: 4px; }
        .panel-body::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 4px; }

        .panel-empty {
            text-align: center;
            padding: 60px 20px;
            color: #aac8e4;
        }
        .panel-empty i {
            font-size: 3rem;
            color: rgba(0,212,255,0.3);
            display: block;
            margin-bottom: 14px;
        }

        /* Карточка внутри панели */
        .panel-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #0f3460;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 10px;
        }
        .panel-item-icon {
            font-size: 2rem;
            width: 48px;
            text-align: center;
            flex-shrink: 0;
        }
        .panel-item-info { flex: 1; min-width: 0; }
        .panel-item-name {
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .panel-item-game {
            font-size: 0.8rem;
            color: #aac8e4;
            margin-top: 2px;
        }
        .panel-item-price {
            font-size: 1rem;
            font-weight: 700;
            color: #00d4ff;
            white-space: nowrap;
        }
        .panel-item-actions {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex-shrink: 0;
        }
        .panel-item-actions button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 6px;
            border-radius: 6px;
            font-size: 0.85rem;
            transition: all 0.2s;
        }
        .btn-remove-item { color: #ff6b6b; }
        .btn-remove-item:hover { background: rgba(255,107,107,0.15); }
        .btn-move-item { color: #aac8e4; }
        .btn-move-item:hover { background: rgba(0,212,255,0.15); color: #00d4ff; }

        /* Корзина — количество */
        .panel-item-qty {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 4px;
        }
        .qty-btn {
            background: rgba(255,255,255,0.08);
            border: none;
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.15s;
        }
        .qty-btn:hover { background: rgba(0,212,255,0.2); }
        .qty-val { font-size: 0.9rem; min-width: 16px; text-align: center; }

        /* Футер панели */
        .panel-footer {
            padding: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .panel-total {
            display: flex;
            justify-content: space-between;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: white;
        }
        .panel-total span:last-child { color: #00d4ff; }
        .btn-checkout {
            width: 100%;
            padding: 12px;
            background: #00d4ff;
            color: #000;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }
        .btn-checkout:hover { background: #00b8d9; transform: translateY(-1px); }

        /* Кнопки на карточках */
        .skin-card-actions {
            display: flex;
            gap: 6px;
            margin-top: 10px;
        }
        .btn-card-action {
            flex: 1;
            padding: 7px;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: #aac8e4;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        .btn-card-action:hover { background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.35); color: #00d4ff; }
        .btn-card-action.active-fav { color: #ff6b6b; border-color: rgba(255,107,107,0.35); background: rgba(255,107,107,0.08); }
        .btn-card-action.active-cart { color: #00d4ff; border-color: rgba(0,212,255,0.4); background: rgba(0,212,255,0.08); }
        .filters-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .filter-label {
            font-size: 0.88rem;
            color: #aac8e4;
            white-space: nowrap;
            margin: 0;
            flex-shrink: 0;
        }
        .price-inputs {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .price-inputs input {
            width: 90px;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px solid rgba(0,212,255,0.25);
            background: #0f3460;
            color: white;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
            box-sizing: border-box;
        }
        .price-inputs input:focus {
            border-color: rgba(0,212,255,0.6);
        }
        .price-inputs input::placeholder {
            color: rgba(255,255,255,0.3);
        }
        .price-inputs .separator {
            color: #aac8e4;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .filter-sort {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid rgba(0,212,255,0.25);
            background: #0f3460;
            color: white;
            font-size: 0.95rem;
            outline: none;
            cursor: pointer;
            transition: border-color 0.2s;
            flex-shrink: 0;
        }
        .filter-sort:focus {
            border-color: rgba(0,212,255,0.6);
        }
        .btn-reset-filters {
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.15);
            background: transparent;
            color: #aac8e4;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
            display: none;
        }
        .btn-reset-filters:hover {
            border-color: rgba(0,212,255,0.4);
            color: #00d4ff;
        }
        .btn-reset-filters.visible {
            display: inline-block;
        }

        /* ========== ЗАГОЛОВОК СЕКЦИИ ========== */
        .section-title {
            text-align: center;
            color: white;
            font-size: 1.9rem;
            font-weight: 700;
            margin: 30px 0 20px;
        }
        .section-title span {
            color: #00d4ff;
        }
