﻿/* Стили для вида списка - КОМПАКТНЫЙ С НОРМАЛЬНЫМИ ШРИФТАМИ */
.products-grid.list-view .grid-container {
    grid-template-columns: 1fr !important;
    gap: 6px;
}

.products-grid.list-view .product-card {
    flex-direction: row;
    height: 40px;
    padding: 8px 15px;
    gap: 12px;
    align-items: center;
}

.products-grid.list-view .product-image-container {
    display: none;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.products-grid.list-view .product-name-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.products-grid.list-view .product-sku {
    font-size: 12px; /* ВЕРНУЛИ стандартный размер */
    color: #999;
    font-weight: 500;
    padding-right: 12px;
    border-right: 1px solid #e0e0e0;
    min-width: 70px;
    flex-shrink: 0;
}

.products-grid.list-view .product-name {
    font-size: 16px; /* ВЕРНУЛИ стандартный размер */
    height: auto;
    margin: 0;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.products-grid.list-view .product-price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-top: none;
    padding: 0;
}

.products-grid.list-view .product-price {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-direction: row;
}

.products-grid.list-view .price-value {
    font-size: 20px; /* ВЕРНУЛИ стандартный размер */
}

.products-grid.list-view .price-currency {
    font-size: 14px; /* ВЕРНУЛИ стандартный размер */
    margin: 0;
    color: #666;
}

.products-grid.list-view .add-to-cart-btn {
    width: 32px; /* уменьшенный размер кнопки - ОСТАВЛЯЕМ */
    height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
}

    .products-grid.list-view .add-to-cart-btn svg {
        width: 16px; /* уменьшенная иконка - ОСТАВЛЯЕМ */
        height: 16px;
    }

/* Адаптивность для списка */
@media (max-width: 768px) {
    .products-grid.list-view .product-card {
        height: auto;
        min-height: 40px;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
    }

    .products-grid.list-view .product-info {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .products-grid.list-view .product-name-section {
        gap: 8px;
    }

    .products-grid.list-view .product-sku {
        min-width: 60px;
        padding-right: 8px;
    }

    .products-grid.list-view .product-price-section {
        width: 100%;
        justify-content: space-between;
    }

    .products-grid.list-view .add-to-cart-btn {
        width: 36px;
        height: 36px;
    }

        .products-grid.list-view .add-to-cart-btn svg {
            width: 18px;
            height: 18px;
        }
}
