/*
/*
========================================================
    ОЧИЩЕННЫЙ style.css (v8.4 - ФИНАЛЬНЫЙ КОНТРОЛЬ)
    - В category.ejs добавлена версия для сброса кеша: style.css?v=20251025
    - Ультра-агрессивные правила для пагинации на моб. (display: block, max-width: max-content, !important)
========================================================
*/

/* === 1. Переменные темы === */
:root {
    --primary-orange: #ff9900;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --red-stock: #d9534f;
    --green-stock: #5cb85c;
    --sidebar-width: 250px; /* Ширина сайдбара для больших экранов */
    --content-padding: 20px; /* Стандартный отступ контента от краев */
}

/* === 2. Общие стили и фон === */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    
    /* ФОН */
    background: url('/images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    
    color: var(--dark-gray);
    overflow-x: hidden;
    outline: none;
    padding-top: 70px; /* Отступ для фиксированной шапки */
}

/* Глобальный класс .container используется только для центрирования на адаптивных экранах.
   На десктопе main.container переопределяет его. */
.container {
    margin: 0 auto; 
    padding: 0 var(--content-padding); /* Используем переменную */
	
}


.container h2{
color: var(--primary-orange);
    box-sizing: border-box;
	background: black;}
	
/* === 3. Header (Шапка) === */
.welcome {
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 101; 
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--content-padding); 
    height: 70px; 
    background-color: var(--black); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.welcome h1 {
    color: var(--primary-orange);
    font-size: 3em;
    margin: 0;
    flex-shrink: 0; 
}

.product-details {
    display: flex;
    gap: 20px;
    align-items: flex-start; /* Выравнивание по верхнему краю */
    background: white; /* Явный белый фон */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.product-details img {
    max-width: 50%;
    height: auto;
    max-height: 300px; /* Ограничение высоты изображения */
    object-fit: contain;
    border-radius: 5px;
}

.product-info {
    flex: 1;
    padding: 10px;
}

.product-info .price {
    font-size: 1.5em;
    color: var(--primary-orange);
    font-weight: bold;
    margin: 0 0 10px;
}

.product-info .description {
    font-size: 1em;
    color: #222222; /* Более темный цвет для читаемости */
    margin: 0 0 10px;
    line-height: 1.5;
}

.product-info .stock {
    font-size: 0.9em;
    margin: 5px 0;
}

.product-info .stock.enough-stock {
    color: var(--green-stock);
}

.product-info .stock.low-stock {
    color: var(--red-stock);
}

.product-info .stock.no-stock {
    color: var(--dark-gray);
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1em;
}

.back-link:hover {
    text-decoration: underline;
}

/* === 4. Глобальный Поиск (стили оставлены как есть) === */
.global-search-container {
    /* Обеспечивает, что контейнер поиска займет всю доступную ширину */
    width: 100%; 
    /* Добавляем отступ справа, как было запрошено (20px) */
    padding-right: 20px; 
    /* Добавляем отступ слева, чтобы он выглядел симметрично */
    padding-left: 20px;
    box-sizing: border-box; /* Важно, чтобы padding не увеличивал общую ширину */
    margin-top: 10px; /* Небольшой отступ сверху для визуального отделения */
	z-index: 1000;
}

.search-form {
    display: flex;
    width: 100%;
}

.search-input {
    /* Поле ввода должно занимать все доступное пространство,
       выталкивая кнопку вправо */
    flex-grow: 1; 
    /* Устанавливаем минимальную ширину и убираем стандартные отступы */
    min-width: 0; 
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-right: none; /* Убираем правую границу, чтобы слилась с кнопкой */
    border-radius: 5px 0 0 5px; /* Скругляем только левую часть */
    font-size: 16px;
}

.search-button {
    /* Задаем фиксированные стили для кнопки */
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: 1px solid #333;
    cursor: pointer;
    border-radius: 0 5px 5px 0; /* Скругляем только правую часть */
    font-size: 16px;
    white-space: nowrap; /* Предотвращает перенос текста кнопки */
}

.search-button:hover {
    background-color: #e58a00;
}

/* === 5. АВТОДОПОЛНЕНИЕ (стили оставлены как есть) === */
.autocomplete-results {
    position: absolute;
    top: 100%; 
    left: 0;
    right: 0;
    width: calc(100% - 40px)
    max-width: 100%;
    max-height: 350px; /* Ограничение высоты */
    overflow-y: auto; /* Включение прокрутки */

    background-color: white;
    border: 1px solid var(--primary-orange);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: block; /* Важно, чтобы контейнер был блочным или flex */
    padding: 0; /* Убираем общий паддинг */
    z-index: 1001;
}


.autocomplete-list-item {
    display: flex; /* Делаем элемент гибким (фото слева, текст справа) */
    align-items: center;
    padding: 8px 15px; /* Компактный паддинг */
    text-decoration: none;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
    transition: background-color 0.2s;
    min-width: 0; /* Предотвращает переполнение */
}

.autocomplete-list-item:last-child {
    border-bottom: none;
}

.autocomplete-list-item:hover {
    background-color: var(--light-gray);
}

.autocomplete-list-item img {
    width: 40px; 
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0; 
    border-radius: 2px;
}

.autocomplete-list-item .text-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0; 
}

.autocomplete-list-item .name {
    font-weight: normal;
    font-size: 0.95em;
    /* Обрезка длинного текста */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.autocomplete-list-item .price {
    color: var(--primary-orange);
    font-size: 0.85em;
}


/* === 6. Sidebar (Боковая панель) === */
.sidebar {
    position: fixed;
    top: 70px; /* Начинается под шапкой */
    left: 0;
    width: 250px;
    height: calc(100% - 70px); /* Вся оставшаяся высота */
    background: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    z-index: 100;
    overflow-y: auto;
}

.sidebar + .container {
    margin-left: 350px; /* Отступ для контента */
    padding-top: 20px;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
}

.sidebar h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-top: 15px;
    font-size: 1.2em;
}

/* ФИКС QR: Возвращаем маленький размер QR-кода */
.sidebar .qr-link {
    display: block; 
    max-width: 150px; 
    margin: 0 auto; 
}

.sidebar .qr-link img {
    width: 100%; 
    height: auto;
    display: block;
    margin: 10px 0; 
}

.sidebar p {
    font-size: 0.9em;
    margin: 5px 0;
}


/* === 7. Сетки и Карточки === */

.categories-grid {
	display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 колонок на широком экране */
    gap: 1rem;
    margin-bottom: 4rem;
	margin-left: 50px !important; 
	margin-right: 20px
}

.products-grid {
	display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 колонок на широком экране */
    gap: 1rem;
    margin-bottom: 4rem;
	margin-left: 40px !important; 
}
.category-card,
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: var(--dark-gray);
    min-width: 150px;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-card img,
.product-card img {
    width: 150%;
    height: 150px; 
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h3, .category-card h3 {
    margin: 0.5rem 0 0.2rem;
    font-size: 1rem;
    height: 2.4rem; 
    overflow: hidden;
}

.product-card p.price {
    font-weight: bold;
    margin: 0.3rem 0;
    color: var(--primary-orange);
}

.product-card p.stock {
    font-size: 0.75rem;
    margin: 0.2rem 0;
}

.stock.low-stock {
    color: var(--green-stock);
}

.stock.enough-stock {
    color: var(--green-stock);
}

/* === 8. Модальное окно и Пагинация === */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); 
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    position: relative;
    animation: slideIn 0.3s;
    color: var(--dark-gray);
    display: flex; 
    gap: 30px;
}

.modal-image-container {
    flex: 1;
    max-width: 400px;
}

.modal-content img {
    max-width: 50%;
    height: auto;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5em;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-orange);
}

/* --- СТИЛИ ПАГИНАЦИИ ДЛЯ ЛУЧШЕЙ ВИДИМОСТИ (Desktop/General) --- */
.pagination {
    margin: 30px 0; /* Увеличенный вертикальный отступ */
    text-align: center;
}

/* ДОБАВЛЕН НОВЫЙ БЛОК для Flexbox-поведения на десктопе */
.pagination-inner {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin: 0 auto; /* Центрируем внутренний блок */
}

.pagination a {
    /* Обеспечиваем блочное поведение элемента для правильных размеров */
    display: inline-block; 
    
    margin: 0 8px; /* Увеличенный горизонтальный отступ */
    padding: 8px 16px; /* Увеличенный padding для большей области клика */
    border: 2px solid var(--dark-gray); /* Более толстая рамка */
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 6px; 
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    cursor: pointer;
    font-size: 1.1em; /* Увеличенный размер шрифта */
    font-weight: bold; /* Жирный шрифт */
}

.pagination a:hover {
    background-color: var(--light-gray); 
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.pagination a.active {
    background-color: var(--primary-orange);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.5); 
}
.stats-summary {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            gap: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
.stats-summary div {
            font-size: 1.2em;
        }
.stats-list {
            list-style: none;
            padding: 0;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
.stats-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

/* === 9. Адаптивность === */

/* --- Планшеты и большие мобильные (до 1200px) --- */
@media (max-width: 1200px) {
    /* ОТКЛЮЧЕНИЕ ФИКСИРОВАНИЯ: Сайдбар становится обычным блоком */
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 10px;
        order: 2; 
    }
    
main.container {
    /* 1. Сдвигаем контент вправо на ширину сайдбара. */
    margin-left: 10px !important; 
    
    /* 2. Явно задаем ширину, чтобы занимать оставшееся место, учитывая отступы. */
    width: calc(100% - var(--sidebar-width)) !important; 
    
    /* 3. Применяем внутренний отступ для контента, обеспечивая отступ от правого края! */
    padding: var(--content-padding) !important; 
    
    /* 4. Переопределяем центрирование и глобальный max-width */
    margin-right: 0 !important; 
    max-width: none !important; 
    
    box-sizing: border-box; /* Гарантируем, что padding не добавляет ширину */
    min-height: calc(100vh - 70px);
}

main.container h2{

color: var(--primary-orange);
    box-sizing: border-box;
	background: black;

margin:5px 0;
 }
    
.products-grid, .categories-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 колонки для планшетов */
    }

.product-details {
        flex-direction: column; /* Вертикальное расположение на малых экранах */
        gap: 15px;
        padding: 15px;
    }

    .product-details img {
         /* Изображение на всю ширину */
        max-height: 200px;
        width: 100%;
    }

    .product-info {
        padding: 0;
    }
	
.global-search-container {
    /* Обеспечивает, что контейнер поиска займет всю доступную ширину */
    width: 100%; 
    /* Добавляем отступ справа, как было запрошено (20px) */
    padding-right: 20px; 
    /* Добавляем отступ слева, чтобы он выглядел симметрично */
    padding-left: 20px;
    box-sizing: border-box; /* Важно, чтобы padding не увеличивал общую ширину */
    margin-top: 10px; /* Небольшой отступ сверху для визуального отделения */

}

/* --- Мобильные телефоны (до 480px) --- */
@media (max-width: 480px) {
    /* Header */
    .welcome {
        flex-direction: column; 
        align-items: flex-start;
        height: auto; 
        padding: 10px var(--content-padding);
        position: static; 
    }
    
    body {
        display: flex;
        flex-direction: column; /* Элементы идут в столбец */
        min-height: 100vh;
        padding-top: 0; /* Шапка больше не fixed */
    }

    .welcome h1 {
        font-size: 2em;
        margin-bottom: 5px;
    }

    main.container h2 {
        width: 100%;
        color: var(--primary-orange);
        background: black;
        max-width: 480px;
    }

    /* Grid */
    .products-grid, .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-left: 10px !important; 
        margin-right: 20px;
    }
    
    .product-details {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .product-details img {
        max-width: 50%;
        max-height: 200px;
        width: 100%;
    }

    .product-info {
        padding: 0;
    }

    .category-card, .product-card {
        padding: 0.5rem;
    }
    
	main.container {
		order: 1 !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
        box-sizing: border-box;
		margin-left: 0 !important;
    }
	.back-link, .category-title, .products-grid, .pagination {
        order: 1 !important;
        width: 100% !important; 
        padding: 0 1px; /* Добавим небольшой горизонтальный отступ */
    }

    /* Sidebar */
    .sidebar {
        order: 2 !important; /* <--- САЙДБАР ВНИЗУ */
        position: static !important;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 10px;
        top: 0;
        left: 0;
    }
	

    /* Модальное окно */
    .modal-content {
        flex-direction: column;
        max-width: 95%;
        padding: 15px;
    }

    .global-search-container {
        width: 100% !important; 
        margin: 10px 0 !important; 
        padding: 0 10px !important; /* Отступы внутри контейнера поиска */
        position: relative !important; /* Гарантируем точку отсчета */
        box-sizing: border-box;
    }

    .autocomplete-results {
        position: absolute !important;
        top: 100% !important; /* Сразу под формой */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        z-index: 102; /* Над всем остальным */
    }

    /* === ФИНАЛЬНЫЙ ФИКС ПАГИНАЦИИ НА МОБИЛЬНЫХ (горизонтальная прокрутка) === */
    .pagination {
        margin: 15px auto;
        width: 90vw;
        text-align: left;
        overflow-x: auto;
        overflow-y: hidden;
		padding-right: 20px
        -webkit-overflow-scrolling: touch; /* плавная прокрутка */
    }

    .pagination-inner {
        display: inline-flex !important;
        flex-wrap: nowrap !important;
        gap: 1px !important;
        padding: 0 10px 5px;
        min-width: max-content;
    }

    .pagination a {
        display: inline-block !important;
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 8px 14px !important;
        border: 2px solid var(--dark-gray) !important;
        border-radius: 2px !important;
        color: var(--dark-gray) !important;
        font-size: 1em !important;
        font-weight: bold !important;
        text-decoration: none !important;
        background-color: #fff !important;
        transition: all 0.2s ease-in-out;
    }

    .pagination a:hover {
        background-color: var(--light-gray) !important;
        color: var(--primary-orange) !important;
        border-color: var(--primary-orange) !important;
    }

    .pagination a.active {
        background-color: var(--primary-orange) !important;
        color: #fff !important;
        border-color: var(--primary-orange) !important;
        box-shadow: 0 0 5px rgba(255,153,0,0.4) !important;
    }

    /* Убираем полосу прокрутки в iOS/Android */
    .pagination::-webkit-scrollbar {
        display: none;
    }
	footer, .site-footer {
        order: 99 !important; /* <--- САМЫЙ БОЛЬШОЙ ПОРЯДОК, чтобы принудительно опустить футер вниз */
        width: 100%; 
        padding: 10px 0;
        text-align: center;
        background: black; /* Для наглядности, если нужно */
        color: white; /* Для наглядности, если нужно */
        flex-shrink: 0; /* Чтобы он не сжимался */
    }
}
