.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    position: relative;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 115, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === МАРКЕТИНГОВЫЕ БЕЙДЖИ - МЯГКИЕ ГРАДИЕНТНЫЕ ОБВОДКИ === */
.marketing-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.marketing-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.marketing-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, currentColor 0%, transparent 70%);
    opacity: 0.08;
    z-index: 1;
}

.marketing-badge > * {
    position: relative;
    z-index: 2;
}

.marketing-badge:hover {
    transform: translateY(-1px);
}

.marketing-badge.best-seller {
    color: #ff8787;
    border-color: rgba(255, 135, 135, 0.4);
    box-shadow: 0 2px 8px rgba(255, 135, 135, 0.15);
}

.marketing-badge.best-choice {
    color: #63e6be;
    border-color: rgba(99, 230, 190, 0.4);
    box-shadow: 0 2px 8px rgba(99, 230, 190, 0.15);
}

.marketing-badge.new {
    color: #51cf66;
    border-color: rgba(81, 207, 102, 0.4);
    box-shadow: 0 2px 8px rgba(81, 207, 102, 0.15);
}

.marketing-badge.sale {
    color: #ffa94d;
    border-color: rgba(255, 169, 77, 0.4);
    box-shadow: 0 2px 8px rgba(255, 169, 77, 0.15);
}

.marketing-badge.popular {
    color: #cc5de8;
    border-color: rgba(204, 93, 232, 0.4);
    box-shadow: 0 2px 8px rgba(204, 93, 232, 0.15);
}

.marketing-badge.exclusive {
    color: #748ffc;
    border-color: rgba(116, 143, 252, 0.4);
    box-shadow: 0 2px 8px rgba(116, 143, 252, 0.15);
}

.marketing-badge i {
    font-size: 9px;
    opacity: 0.9;
}

/* === СКРИНШОТ (ЧИСТЫЙ, БЕЗ ФЛАГОВ) === */
.product-screenshot {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-screenshot img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-screenshot:hover .screenshot-overlay {
    opacity: 1;
}

.preview-btn {
    background: rgba(122, 115, 255, 0.9);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === ЗАГОЛОВОК === */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-name {
    background: rgba(122, 115, 255, 0.15);
    color: #7a73ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(122, 115, 255, 0.3);
}

.game-name {
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 500;
}

/* === ФУНКЦИИ === */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-badge.aimbot {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.2);
}

.feature-badge.esp {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.feature-badge.wh {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

/* === ДОПОЛНИТЕЛЬНЫЕ ФИЧИ === */
.product-extra {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.extra-item i {
    color: #28a745;
    font-size: 12px;
}

.extra-item.negative i {
    color: #dc3545;
}

.extra-item.negative {
    color: rgba(255, 255, 255, 0.5);
}

/* === ФУТЕР === */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-old {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #7a73ff;
}

.buy-btn {
    background: linear-gradient(135deg, #7a73ff, #5a54d6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 115, 255, 0.4);
}