@media (min-width: 1200px) {
    /* --- 1. Глобально: 6 товаров в ряд для всех широких модулей (Главная) --- */
    .uni-module__item,
    .product-layout {
        width: 16.6666% !important;
    }

    /* --- 2. Исключение: 5 товаров в ряд ТОЛЬКО там, где есть боковое меню --- */
    #content.col-lg-9 .uni-module__item,
    #content.col-lg-9 .product-layout {
        width: 20% !important;
    }

    /* --- 3. Настройка ширины самих колонок (20% левое меню / 80% контент) --- */
    #column-left.col-lg-3 {
        width: 20%;
    }
    #content.col-lg-9 {
        width: 80%;
    }
}

/* Перестраиваем блок корзины: элементы друг под другом */
.product-thumb__cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important; /* Расстояние между выбором количества и кнопкой */
}

/* Контейнер количества на всю ширину */
.product-thumb__cart .qty-switch {
    display: flex !important;
    width: 100% !important;
    height: 36px !important; 
    margin: 0 !important;
}

/* "Растворяем" невидимую обертку span, чтобы кнопки стали свободными */
.product-thumb__cart .qty-switch > span {
    display: contents !important;
}

/* Кнопка МИНУС (25% ширины, слева) */
.product-thumb__cart .qty-switch__btn.fa-minus {
    order: 1 !important;
    width: 25% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 4px 0 0 4px !important;
    cursor: pointer !important;
}

/* Поле ВВОДА (50% ширины, по центру) */
.product-thumb__cart .qty-switch__input {
    order: 2 !important;
    width: 50% !important;
    text-align: center !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Кнопка ПЛЮС (25% ширины, справа) */
.product-thumb__cart .qty-switch__btn.fa-plus {
    order: 3 !important;
    width: 25% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 0 4px 4px 0 !important;
    cursor: pointer !important;
}

/* Растягиваем кнопку "В корзину" и делаем отступ сверху */
.product-thumb__cart .add_to_cart {
    width: 100% !important;
    justify-content: center !important;
}