 /* Переопределяем Bootstrap для темной темы */
    body {
        background: #0a0a0f;
        color: #ffffff;
    }
    
    .navbar-inverse {
        background: rgba(10, 10, 15, 0.95) !important;
        border-color: rgba(255, 45, 117, 0.15) !important;
        border-radius: 0 !important;
        margin-bottom: 0 !important;
        min-height: 72px !important;
    }
    
    .navbar-inverse .navbar-brand {
        color: #ffffff !important;
        font-family: 'Orbitron', 'Inter', sans-serif;
        font-weight: 900;
        font-size: 22px !important;
        padding: 22px 15px !important;
    }
    
    .navbar-inverse .navbar-brand i {
        color: #ff2d75;
        text-shadow: 0 0 20px rgba(255, 45, 117, 0.5);
        margin-right: 10px;
    }
    
    .navbar-inverse .navbar-nav > li > a {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 500;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 26px 18px !important;
    }
    
    .navbar-inverse .navbar-nav > li > a:hover {
        color: #ffffff !important;
    }
    
    .navbar-inverse .navbar-nav > li > a .label {
        background: linear-gradient(135deg, #ff2d75, #b026ff) !important;
        border: none !important;
        padding: 2px 12px !important;
        font-weight: 700 !important;
        font-size: 10px !important;
        border-radius: 20px !important;
        margin-left: 6px;
        box-shadow: 0 0 20px rgba(255, 45, 117, 0.4);
        color: #fff !important;
    }
    
    .navbar-toggle {
        border-color: rgba(255,255,255,0.1) !important;
        margin-top: 18px !important;
    }
    
    .navbar-toggle .icon-bar {
        background-color: #fff !important;
    }
    
    /* ===== ФОРМА ПОИСКА В НАВИГАЦИИ ===== */
    .navbar-search {
        display: flex;
        align-items: center;
        padding: 14px 0;
        margin-right: 10px;
    }
    

    .navbar-search .search-form:focus-within {
        border-color: #00f5ff;
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.05);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .navbar-search .search-form input {
        background: transparent;
        border: none;
        color: #ffffff;
        padding: 8px 0;
        font-size: 14px;
        font-weight: 400;
        outline: none;
        flex: 1;
        min-width: 120px;
    }
    
    .navbar-search .search-form input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }
    
    .navbar-search .search-form button {
        background: linear-gradient(135deg, #ff2d75, #b026ff);
        border: none;
        border-radius: 8px;
        color: #fff;
        padding: 8px 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .navbar-search .search-form button:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(255, 45, 117, 0.3);
    }
    
    .navbar-search .search-form button i {
        font-size: 14px;
    }
    
    /* ===== ГЛАВНЫЙ КОНТЕЙНЕР С САЙДБАРОМ ===== */
    .page-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        min-height: calc(100vh - 72px) !important;
        background: var(--bg-primary, #0a0a0f);
    }
    
    /* ===== САЙДБАР ===== */
    .sidebar {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        background: rgba(10, 10, 15, 0.9) !important;
        backdrop-filter: blur(10px) !important;
        border-right: 1px solid rgba(255, 45, 117, 0.08) !important;
        padding: 24px 12px !important;
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.3) !important;
        overflow-y: auto;
        height: 100%;
        position: sticky !important;
        top: 0 !important;
        max-height: 100vh;
    }
    
    /* ===== КОНТЕНТ ===== */
    .page-content {
        flex: 1 !important;
        padding: 30px !important;
        background: var(--bg-primary, #0a0a0f) !important;
        min-height: 100vh;
        overflow-x: hidden;
        width: 100% !important;
        max-width: calc(100% - 280px) !important;
    }
    
    /* ===== СЕТКА ТОВАРОВ - 4 КОЛОНКИ ===== */
    .eshop-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 4px 0;
        width: 100%;
    }
    
    /* ===== КАРТОЧКА ТОВАРА ===== */
    .product-card {
        background: rgba(22, 22, 31, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255, 45, 117, 0.06);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
    
    .product-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255, 45, 117, 0.15);
        box-shadow: 0 24px 60px rgba(255, 45, 117, 0.08);
    }
    
    .product-card .card-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, #ff2d75, #b026ff);
        color: #fff;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 10;
        box-shadow: 0 4px 20px rgba(255, 45, 117, 0.4);
        animation: pulse-badge 2s ease-in-out infinite;
    }
    
    @keyframes pulse-badge {
        0%, 100% { box-shadow: 0 4px 20px rgba(255, 45, 117, 0.4); }
        50% { box-shadow: 0 4px 40px rgba(255, 45, 117, 0.8), 0 0 60px rgba(255, 45, 117, 0.2); }
    }
    
    .product-card .card-image {
        position: relative;
        overflow: hidden;
        height: 180px;
        background: #111118;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.6s ease;
        filter: brightness(0.85);
    }
    
    .product-card:hover .card-image img {
        transform: scale(1.05);
        filter: brightness(1);
    }
    
    .product-card .card-image .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 15, 0.8));
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .product-card:hover .card-image .image-overlay {
        opacity: 1;
    }
    
    .product-card .card-body {
        padding: 16px 18px 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-card .card-title {
        font-family: 'Orbitron', 'Inter', sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #ffffff;
        margin: 0 0 8px 0;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 38px;
    }
    
    .product-card .card-title a {
        color: inherit;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .product-card .card-title a:hover {
        color: #00f5ff;
        text-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    }
    
    .product-card .card-meta {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        color: #6a6a82;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    
    .product-card .card-meta span {
        display: flex;
        align-items: center;
        gap: 3px;
        background: rgba(255, 255, 255, 0.03);
        padding: 2px 10px;
        border-radius: 20px;
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .product-card .card-meta i {
        font-size: 10px;
    }
    
    .product-card .card-meta i.fa-star {
        color: #ffe600;
        text-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
    }
    
    .product-card .card-description {
        font-size: 12px;
        color: #a0a0b8;
        line-height: 1.5;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1;
        min-height: 36px;
    }
    
    .product-card .card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .product-card .card-price {
        font-family: 'Orbitron', 'Inter', sans-serif;
        font-weight: 800;
        font-size: 18px;
        color: #ffffff;
        letter-spacing: -0.5px;
    }
    
    .product-card .card-price .currency {
        font-size: 12px;
        color: #6a6a82;
        font-weight: 600;
    }
    
    .product-card .card-actions {
        display: flex;
        gap: 4px;
    }
    
    .product-card .card-actions .btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
        color: #a0a0b8;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-size: 14px;
        cursor: pointer;
        text-decoration: none;
        padding: 0;
    }
    
    .product-card .card-actions .btn:hover {
        background: rgba(255, 45, 117, 0.1);
        border-color: #ff2d75;
        color: #ffffff;
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 45, 117, 0.1);
    }
    
    .product-card .card-actions .btn-fav {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .product-card .card-actions .btn-fav:hover {
        background: rgba(255, 45, 117, 0.15);
        border-color: #ff2d75;
        color: #ff2d75;
        box-shadow: 0 0 30px rgba(255, 45, 117, 0.15);
    }
    
    .product-card .card-actions .btn-fav.active {
        background: rgba(255, 45, 117, 0.15);
        border-color: #ff2d75;
        color: #ff2d75;
        box-shadow: 0 0 30px rgba(255, 45, 117, 0.15);
    }
    
    /* ===== ЗАГОЛОВОК СТРАНИЦЫ ===== */
    .page-header {
        background: rgba(22, 22, 31, 0.6) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 45, 117, 0.08) !important;
        border-radius: 20px !important;
        padding: 20px 28px !important;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2) !important;
        margin-bottom: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }
    
    .page-title h3 {
        font-family: 'Orbitron', 'Inter', sans-serif;
        font-weight: 800;
        font-size: 22px;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.5px;
    }
    
    .page-title h3 i {
        color: #00f5ff;
        text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
        margin-right: 12px;
    }
    
    .page-title h3 small {
        font-weight: 400;
        font-size: 13px;
        color: #a0a0b8;
        margin-left: 12px;
        font-family: 'Inter', sans-serif;
    }
    
    /* ===== ХЛЕБНЫЕ КРОШКИ ===== */
    .breadcrumb-line {
        background: rgba(22, 22, 31, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 45, 117, 0.06) !important;
        border-radius: 16px !important;
        padding: 12px 20px !important;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
        margin-bottom: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }
    
    .breadcrumb {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }
    
    .breadcrumb li {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .breadcrumb li + li::before {
        content: '›' !important;
        color: rgba(255, 255, 255, 0.15) !important;
        font-size: 18px;
        font-weight: 300;
        padding: 0 8px;
    }
    
    .breadcrumb li a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .breadcrumb li a i {
        margin-right: 6px;
    }
    
    .breadcrumb li a:hover {
        color: #00f5ff;
    }
    
    .breadcrumb li.active {
        color: #ffffff;
        font-weight: 600;
    }
    
    /* ===== КНОПКИ ===== */
    .btn-primary {
        background: linear-gradient(135deg, #ff2d75, #b026ff) !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 8px 20px !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        color: #fff !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 30px rgba(255, 45, 117, 0.25) !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 40px rgba(255, 45, 117, 0.4) !important;
        color: #fff !important;
    }
    
    .btn-success {
        background: linear-gradient(135deg, #00f5ff, #0088ff) !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 8px 20px !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        color: #fff !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 30px rgba(0, 245, 255, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-success:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 40px rgba(0, 245, 255, 0.35) !important;
        color: #fff !important;
    }
    
    .btn-warning {
        background: linear-gradient(135deg, #ffe600, #ff6b00) !important;
        border: none !important;
        border-radius: 12px !important;
        padding: 8px 20px !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        color: #0a0a0f !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 30px rgba(255, 230, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }
    
    .btn-warning:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 40px rgba(255, 230, 0, 0.35) !important;
        color: #0a0a0f !important;
    }
    
    .btn-icon {
        padding: 0 !important;
        width: 34px !important;
        height: 34px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
    }
    
    /* ===== ПАГИНАЦИЯ ===== */
    .pagination {
        display: flex !important;
        gap: 6px !important;
        justify-content: center !important;
        margin-top: 30px !important;
        flex-wrap: wrap !important;
        padding: 0 !important;
    }
    
    .pagination a,
    .pagination span {
        padding: 8px 16px !important;
        border-radius: 12px !important;
        background: rgba(22, 22, 31, 0.6) !important;
        color: #a0a0b8 !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.04) !important;
        min-width: 40px !important;
        text-align: center !important;
        backdrop-filter: blur(10px) !important;
        display: inline-block !important;
    }
    
    .pagination a:hover {
        background: rgba(255, 45, 117, 0.1) !important;
        border-color: #ff2d75 !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 30px rgba(255, 45, 117, 0.1) !important;
    }
    
    .pagination .active a,
    .pagination .active span {
        background: linear-gradient(135deg, #ff2d75, #b026ff) !important;
        color: #fff !important;
        border-color: transparent !important;
        box-shadow: 0 4px 30px rgba(255, 45, 117, 0.25) !important;
    }
    
    /* ===== ФУТЕР ===== */
    .footer {
        background: rgba(10, 10, 15, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        padding: 16px 30px !important;
        color: #6a6a82 !important;
        border-top: 1px solid rgba(255, 45, 117, 0.06) !important;
        margin-top: 0 !important;
        clear: both !important;
    }
    
    .footer a {
        color: #6a6a82 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
    
    .footer a:hover {
        color: #00f5ff !important;
        text-shadow: 0 0 30px rgba(0, 245, 255, 0.2) !important;
    }
    
    /* ===== АДАПТИВНОСТЬ ===== */
    @media (max-width: 1400px) {
        .eshop-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
    }
    
    @media (max-width: 1200px) {
        .eshop-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        
        .navbar-search .search-form {
            min-width: 150px;
        }
    }
    
    @media (max-width: 992px) {
        .eshop-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        
        .sidebar {
            width: 220px !important;
            min-width: 220px !important;
            max-width: 220px !important;
        }
        
        .page-content {
            max-width: calc(100% - 220px) !important;
        }
        
        .navbar-search .search-form {
            min-width: 120px;
        }
        
        .navbar-search .search-form button span {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        .page-container {
            flex-direction: column !important;
        }
        
        .sidebar {
            width: 100% !important;
            min-width: 100% !important;
            max-width: 100% !important;
            position: relative !important;
            border-right: none !important;
            border-bottom: 1px solid rgba(255, 45, 117, 0.08) !important;
            padding: 16px !important;
            height: auto !important;
            max-height: 300px !important;
            overflow-y: auto !important;
        }
        
        .page-content {
            max-width: 100% !important;
            padding: 16px !important;
        }
        
        .eshop-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        
        .page-header {
            padding: 16px !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 10px !important;
        }
        
        .page-title h3 {
            font-size: 18px;
        }
        
        .page-title h3 small {
            display: block;
            margin-left: 0;
            margin-top: 4px;
            font-size: 12px;
        }
        
        .breadcrumb-line {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 8px !important;
            padding: 12px 16px !important;
        }
        
        .product-card .card-image {
            height: 160px;
        }
        
        .navbar {
            padding: 0 12px !important;
        }
        
        .navbar-brand {
            font-size: 16px !important;
            padding: 18px 0 !important;
        }
        
        .navbar-search {
            padding: 8px 0;
            width: 100%;
        }
        
        .navbar-search .search-form {
            width: 100%;
            min-width: unset;
        }
        
        .navbar-search .search-form input {
            min-width: unset;
        }
        
        .navbar-nav > li > a {
            padding: 12px 15px !important;
        }
        
        .visible-xs {
            display: block !important;
        }
    }
    
    @media (max-width: 480px) {
        .eshop-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }
        
        .product-card .card-body {
            padding: 14px 16px 16px;
        }
        
        .product-card .card-price {
            font-size: 17px;
        }
        
        .product-card .card-title {
            font-size: 13px;
            min-height: 34px;
        }
        
        .product-card .card-image {
            height: 140px;
        }
        
        .product-card .card-meta span {
            font-size: 9px;
            padding: 1px 8px;
        }
    }
	/* ===== ВЕРТИКАЛЬНЫЙ БАННЕР ===== */
.ad-banner-vertical {
    transition: all 0.3s ease;
}

.ad-banner-vertical:hover {
    border-color: rgba(0, 245, 255, 0.1);
}

.ad-banner-vertical .ad-placeholder:hover div {
    border-color: rgba(0, 245, 255, 0.15) !important;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(176, 38, 255, 0.05)) !important;
}

.ad-banner-vertical .ad-placeholder:hover i {
    color: #00f5ff !important;
}

.ad-banner-vertical .ad-placeholder:hover span {
    color: #ffffff !important;
}

/* Адаптивность для вертикального баннера */
@media (max-width: 768px) {
    .ad-banner-vertical {
        float: none !important;
        margin: 20px auto !important;
        max-width: 100% !important;
    }
    
    .ad-banner-vertical img {
        width: 100% !important;
        height: auto !important;
        max-width: 200px;
    }
}
/* ===== СТИЛИ ДЛЯ КНОПКИ ВХОДА ===== */
.btn-login {
    background: linear-gradient(135deg, #ffe600, #ff6b00) !important;
    color: #0a0a0f !important;
    box-shadow: 0 4px 30px rgba(255, 230, 0, 0.15) !important;
}

.btn-login:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 40px rgba(255, 230, 0, 0.3) !important;
    color: #0a0a0f !important;
}

/* ===== ОФЕРТА В МОДАЛКЕ ===== */
.offer-agreement {
    margin: 16px 0;
    border: 1px solid rgba(255, 45, 117, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.offer-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding: 12px 16px;
}

.offer-scroll::-webkit-scrollbar {
    width: 4px;
}

.offer-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.offer-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 45, 117, 0.3);
    border-radius: 4px;
}

.offer-content h4 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #00f5ff;
    margin: 0 0 8px 0;
}

.offer-content h4 i {
    margin-right: 8px;
}

.offer-content h5 {
    font-weight: 600;
    font-size: 13px;
    color: #ffffff;
    margin: 10px 0 4px 0;
}

.offer-content p {
    color: #a0a0b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 4px 0;
}

.offer-content strong {
    color: #ff2d75;
}

.offer-content a {
    color: #00f5ff;
    text-decoration: none;
}

.offer-content a:hover {
    text-decoration: underline;
}

.offer-check {
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.offer-check .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #a0a0b8;
    font-size: 13px;
}

.offer-check .styled-checkbox {
    display: none;
}

.offer-check .checkmark {
    min-width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.3s ease;
    margin-top: 1px;
    flex-shrink: 0;
}

.offer-check .styled-checkbox:checked + .checkmark {
    background: linear-gradient(135deg, #ff2d75, #b026ff);
    border-color: #ff2d75;
}

.offer-check .styled-checkbox:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.offer-check .checkbox-text a {
    color: #00f5ff;
    text-decoration: none;
    font-weight: 500;
}

.offer-check .checkbox-text a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .offer-scroll {
        max-height: 150px;
        padding: 10px 12px;
    }
    
    .offer-content h4 {
        font-size: 13px;
    }
    
    .offer-content h5 {
        font-size: 12px;
    }
    
    .offer-content p {
        font-size: 12px;
    }
    
    .offer-check .checkbox-text {
        font-size: 12px;
    }
}


/* ===== ИНТЕРАКТИВНЫЙ РЕЙТИНГ ===== */
.stars-display i {
    transition: all 0.2s ease;
    margin: 0 1px;
}

.stars-display i:hover {
    transform: scale(1.3);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stars-display i.active-hover {
    color: #ffd700 !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.stars-display i.rated {
    animation: star-pop 0.3s ease;
}

@keyframes star-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); color: #ff6b00; }
    100% { transform: scale(1); }
}

.stars-display i.disabled {
    cursor: default !important;
    opacity: 0.7;
}

.stars-display i.disabled:hover {
    transform: none !important;
    text-shadow: none !important;
}

.rating-status {
    min-height: 24px;
}
/* ===== СТАТУСЫ ТОВАРА ===== */
.meta-item.status-verified i {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.meta-item.status-not-verified i {
    color: #ffe600;
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

.meta-item.status-virus-safe i {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.meta-item.status-virus-safe {
    border-left: 2px solid #00ff88;
    padding-left: 10px;
}

.meta-item.status-verified {
    border-left: 2px solid #00ff88;
    padding-left: 10px;
}

.meta-item.status-not-verified {
    border-left: 2px solid #ffe600;
    padding-left: 10px;
}

.meta-item.status-contact-only {
    border-left: 2px solid #00f5ff;
    padding-left: 10px;
}

/* ===== ПОЯСНЕНИЯ СТАТУСОВ ===== */
.product-status-details {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(22, 22, 31, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .product-status-details {
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .product-status-details > div {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .product-status-details > div > div {
        padding: 10px 14px !important;
    }
}

@media (max-width: 480px) {
    .product-status-details {
        padding: 12px 14px;
    }
    
    .product-status-details > div > div {
        padding: 8px 12px !important;
        gap: 8px !important;
    }
    
    .product-status-details > div > div > div:last-child {
        font-size: 12px !important;
    }
}
/* ===== META-БЛОК С ПОДСВЕТКОЙ ===== */
.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.meta-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.meta-item span {
    color: #a0a0b8;
    font-size: 13px;
}

.meta-item span a {
    transition: all 0.3s ease;
}

.meta-item span a:hover {
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

/* Адаптивность для meta */
@media (max-width: 768px) {
    .product-meta {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .meta-item {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .meta-item {
        padding: 5px 8px;
        font-size: 11px;
        gap: 6px;
    }
    
    .meta-item i {
        font-size: 13px;
        width: 16px;
    }
}

/* ===== ХАРАКТЕРИСТИКИ С ПОДСВЕТКОЙ ===== */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.05);
}

.spec-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.04);
}

.spec-label {
    display: flex;
    align-items: center;
    color: #a0a0b8;
    font-size: 13px;
    font-weight: 500;
}

.spec-label i {
    font-size: 14px;
}

.spec-value {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.spec-value i {
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .spec-item {
        padding: 10px 14px;
    }
    
    .spec-label {
        font-size: 12px;
    }
    
    .spec-value {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .spec-item {
        padding: 8px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .spec-label {
        font-size: 11px;
    }
    
    .spec-value {
        font-size: 11px;
    }
}

/* ===== КНОПКА ЗАКАЗАТЬ РЕКЛАМУ ===== */
.ad-banner-container a[href="/account/ads_buy"] {
    transition: all 0.3s ease;
}

.ad-banner-container a[href="/account/ads_buy"]:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}
/* ===== ЭМОДЗИ ===== */
.emoji {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px;
    transition: transform 0.2s ease;
}

.emoji:hover {
    transform: scale(1.3);
}

/* Панель эмодзи */
.emoji-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: none;
    margin-bottom: 0;
}

.emoji-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #a0a0b8;
    line-height: 1;
}

.emoji-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.2);
}

.emoji-btn i {
    font-size: 16px;
}

.emoji-picker {
    background: rgba(22, 22, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px;
    margin-top: 4px;
    max-height: 250px;
    overflow-y: auto;
    position: relative;
    z-index: 10;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2px;
}

.emoji-grid .emoji-btn {
    font-size: 22px;
    padding: 4px;
}

.emoji-grid .emoji-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.3);
}

/* Стили для скролла панели эмодзи */
.emoji-picker::-webkit-scrollbar {
    width: 4px;
}

.emoji-picker::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.emoji-picker::-webkit-scrollbar-thumb {
    background: rgba(255, 45, 117, 0.3);
    border-radius: 4px;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .emoji-panel {
        padding: 6px 8px;
        gap: 2px;
    }
    
    .emoji-btn {
        font-size: 18px;
        padding: 3px 6px;
    }
    
    .emoji-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 480px) {
    .emoji-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .emoji-btn {
        font-size: 16px;
        padding: 2px 4px;
    }
}
/* ===== СТИЛИ ДЛЯ МАТЕРИАЛОВ ===== */
.btn-login {
    background: linear-gradient(135deg, #ffe600, #ff6b00) !important;
    color: #0a0a0f !important;
    box-shadow: 0 4px 30px rgba(255, 230, 0, 0.15) !important;
}

.btn-login:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 40px rgba(255, 230, 0, 0.3) !important;
    color: #0a0a0f !important;
}

/* ===== ТАЙМЕР ===== */
#timerContainer {
    background: rgba(0, 255, 136, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.06);
}

#timerProgress {
    background: linear-gradient(90deg, #00ff88, #00b894);
    border-radius: 10px;
    height: 100%;
    transition: width 1s linear;
}

/* ===== META-БЛОК ===== */
.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.meta-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.meta-item span {
    color: #a0a0b8;
    font-size: 13px;
}

/* ===== ХАРАКТЕРИСТИКИ ===== */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.05);
}

.spec-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.04);
}

.spec-label {
    display: flex;
    align-items: center;
    color: #a0a0b8;
    font-size: 13px;
    font-weight: 500;
}

.spec-value {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .product-meta {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .meta-item {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .spec-item {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .meta-item {
        padding: 5px 8px;
        font-size: 11px;
        gap: 6px;
    }
    
    .meta-item i {
        font-size: 13px;
        width: 16px;
    }
    
    .spec-item {
        padding: 8px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .spec-label {
        font-size: 11px;
    }
    
    .spec-value {
        font-size: 11px;
    }
    
    #timerContainer {
        padding: 10px 14px;
    }
}
/* ===== РЕКЛАМНЫЙ БАННЕР-ЗАГЛУШКА ===== */
.ad-placeholder .ad-banner-container {
    transition: all 0.3s ease;
}

.ad-placeholder:hover .ad-banner-container {
    border-color: rgba(0, 245, 255, 0.15);
}

.ad-placeholder a:hover div {
    border-color: rgba(0, 245, 255, 0.15) !important;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(176, 38, 255, 0.05)) !important;
}

.ad-placeholder a:hover i {
    color: #00f5ff !important;
}

.ad-placeholder a:hover span {
    color: #ffffff !important;
}

/* Анимация пульсации для заглушки */
@keyframes ad-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.ad-placeholder .fa-ad {
    animation: ad-pulse 2s ease-in-out infinite;
}
/* ===== КНОПКА ЗАКАЗАТЬ РЕКЛАМУ ===== */
.ad-banner-container a[href="/account/ads_buy"] {
    transition: all 0.3s ease;
}

.ad-banner-container a[href="/account/ads_buy"]:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}
/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ РЕКЛАМЫ ===== */
.ads-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Заголовок */
.ads-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 30px;
    background: rgba(22, 22, 31, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 45, 117, 0.06);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.ads-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(0, 136, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00f5ff;
    flex-shrink: 0;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.ads-title h1 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.ads-title p {
    color: #a0a0b8;
    font-size: 15px;
    margin: 0;
}

/* Информация */
.ads-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(22, 22, 31, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Активные баннеры */
.ads-active {
    background: rgba(22, 22, 31, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 45, 117, 0.06);
    padding: 24px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.ads-active h3 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.active-ads-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.active-ad-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
}

.ad-preview {
    position: relative;
    display: flex;
    align-items: center;
}

.ad-preview img {
    max-height: 60px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.ad-preview .ad-size-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: #6a6a82;
    background: rgba(0,0,0,0.6);
    padding: 1px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

.ad-info {
    flex: 1;
    min-width: 150px;
}

.ad-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.ad-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #6a6a82;
    margin-top: 2px;
}

.ad-status {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.ad-status.active {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.ad-status.expired {
    background: rgba(255, 45, 117, 0.1);
    color: #ff2d75;
    border: 1px solid rgba(255, 45, 117, 0.1);
}

/* Формат селектор */
.ads-format-selector {
    margin-bottom: 30px;
}

.ads-format-selector h2 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.format-tabs {
    display: flex;
    gap: 12px;
    background: rgba(22, 22, 31, 0.3);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.format-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: #6a6a82;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.format-tab small {
    font-weight: 400;
    font-size: 11px;
    color: #6a6a82;
}

.format-tab:hover {
    color: #a0a0b8;
    background: rgba(255, 255, 255, 0.02);
}

.format-tab.active {
    background: rgba(0, 245, 255, 0.05);
    color: #00f5ff;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.format-tab.active small {
    color: #00f5ff;
}

/* Тарифы */
.ads-plans {
    margin-bottom: 30px;
}

.ads-plans h2 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.plan-card {
    background: rgba(22, 22, 31, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 245, 255, 0.05);
}

.plan-card .discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff2d75, #b026ff);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.plan-header h3 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.plan-price {
    font-size: 22px;
    font-weight: 700;
    color: #ffe600;
}

.plan-price .old-price {
    font-size: 14px;
    color: #6a6a82;
    text-decoration: line-through;
    margin-right: 6px;
}

.plan-period {
    color: #6a6a82;
    font-size: 12px;
    margin-top: 2px;
}

.plan-features {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    padding: 3px 0;
    color: #a0a0b8;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li i {
    color: #00ff88;
    font-size: 12px;
    width: 16px;
}

.btn-ads-purchase {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #00f5ff, #0088ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ads-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.3);
}

/* Модальное окно */
.ad-summary {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 12px 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.summary-item:last-child {
    border-bottom: none;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover {
    border-color: rgba(0, 245, 255, 0.2);
    background: rgba(0, 245, 255, 0.02);
}

.upload-area.dragover {
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.05);
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-hint {
    display: block;
    color: #6a6a82;
    font-size: 12px;
    margin-top: 6px;
}

.file-name {
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 8px;
    color: #00f5ff;
    font-size: 14px;
    text-align: center;
}

/* Адаптивность */
@media (max-width: 992px) {
    .ads-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ads-header {
        flex-direction: column;
        text-align: center;
    }
    
    .ads-title h1 {
        font-size: 22px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .format-tabs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .ads-title h1 {
        font-size: 18px;
    }
    
    .ads-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .active-ad-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== ПЛАТЕЖНЫЕ СИСТЕМЫ В ВИДЕ ИКОНОК ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin: 16px 0 20px 0;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.payment-item.selected {
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.04);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.05);
}

.payment-item.selected .payment-check {
    opacity: 1;
}

.payment-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
    transform: scale(1.05);
}

.payment-item.selected .payment-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

.payment-name {
    font-size: 13px;
    font-weight: 500;
    color: #a0a0b8;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-item:hover .payment-name {
    color: #ffffff;
}

.payment-item.selected .payment-name {
    color: #00f5ff;
}

.payment-check {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    color: #00f5ff;
    opacity: 0;
    transition: all 0.3s ease;
}

.selected-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(0, 245, 255, 0.03);
    border: 1px solid rgba(0, 245, 255, 0.06);
    border-radius: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.selected-payment span {
    color: #a0a0b8;
    font-size: 14px;
}

.selected-payment strong {
    color: #00f5ff;
}

.selected-payment .btn-pay {
    margin: 0;
    padding: 8px 24px;
    font-size: 14px;
    min-width: auto;
}

.no-payments {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #6a6a82;
}

.no-payments i {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.payment-info {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6a6a82;
    font-size: 13px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.payment-info i {
    color: #00ff88;
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 12px;
    }
    
    .payment-item {
        padding: 14px 10px;
    }
    
    .payment-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
    
    .payment-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .payment-item {
        padding: 12px 8px;
        border-radius: 12px;
    }
    
    .payment-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .payment-name {
        font-size: 10px;
    }
    
    .selected-payment {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .selected-payment .btn-pay {
        width: 100%;
        justify-content: center;
    }
}
.admin-avatar-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}