/* ===== ЛИСТОВОЙ ВИД ===== */
.products-grid.view-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-list-item {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.product-list-item:hover { box-shadow: var(--shadow-md); }
.product-list-item .product-image-container {
    padding-top: 0;
    height: 180px;
    width: 180px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .product-list-item .row { align-items: center; }
}
.product-list-item .product-actions-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-list-item .btn-sm { font-size: 13px; padding: 6px 12px; border-radius: 6px; }