.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 15px 0;
}

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    background: white;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
    text-align: center;
    margin-bottom: 10px;
}

.product-image img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.product-info h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.3;
}

.product-info p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.product-link {
    display: inline-block;
    padding: 6px 12px;
    background: #0066cc;
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
}

.product-link:hover {
    background: #0052a3;
}

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

    .product-card {
        margin-bottom: 10px;
    }
}