/* components/catalog/catalog.css */
.theme-grey { background-color: #eaeaea; }

.theme-white { background-color: #ffffff; }

.no-wrap {
    white-space: nowrap;
}

/* Стили подзаголовка каталога */
.catalog-subtitle {
    margin-top: -15px; 
    margin-bottom: 30px; 
    text-align: left; 
    color: #1a1a1a;
    width: 100%;
}

.categorii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Строго 3 в ряд на десктопе */
    gap: 30px 30px; 
    margin: 20px 0 30px;
}

.categorii-pagination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

/* Обертка кнопки подгрузки */
.catalog-btn-wrapper {
    display: flex; 
    justify-content: center; 
    margin-top: 30px;
}

.categorii-load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: auto;
    padding: 0 20px;
    border: 2px solid #167f2b;
    border-radius: 30px;
    color: #167f2b;
    background: transparent;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    margin: 0; 
}

.categorii-load-more-btn:hover {
    background-color: #167f2b;
    color: #fff;
}

.f-center { display: flex; justify-content: center; width: 100%; margin-top: 0px; }
.f-green { color: #167f2b; }

/* Медиазапросы сеток */
@media (min-width: 601px) and (max-width: 1025px) {
    .categorii-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .categorii-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
