.products_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product_card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.product_badge.hit {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.product_badge.new {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.product_image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    text-align: center;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product_card:hover .product_image img {
    transform: scale(1.05);
}

.no_image {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
}

.product_info {
    padding: 20px;
}

.product_title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
}

.product_features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
}

.product_price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current_price {
    font-size: 24px;
    font-weight: 700;
    color: #f97316;
}

.old_price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.product_actions {
    display: flex;
    gap: 10px;
}

.btn_cart {
    flex: 1;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn_cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #fb923c, #fdba74);
}

.btn_details {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn_details:hover {
    border-color: #f97316;
    color: #f97316;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .products_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product_image {
        height: 200px;
        padding: 20px;
    }
    
    .product_image img {
        max-height: 160px;
    }
    
    .product_title {
        font-size: 16px;
        min-height: auto;
    }
    
    .current_price {
        font-size: 20px;
    }
    
    .product_actions {
        flex-direction: column;
    }
    
    .btn_details {
        padding: 8px;
    }
}

@media (max-width: 580px) {
    .products_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}