/* --------- /templates/sibalt/css/critical.css --------- */
/* CSS critical */
*,*::before,*::after{box-sizing:border-box;padding:0;margin:0;}
:root{--primary-color:#000; --secondary-color:#E30075;--green-color: #1A8A22;--white-color: #fff;}
html{-webkit-text-size-adjust:100%;}
body{margin:0;font-family:'Ubuntu',sans-serif;font-size:15px;line-height:1.5;color:#000;background:#fff;}
@font-face{font-family:'Ubuntu';src:url('/templates/sibalt/fonts/Ubuntu/ubuntu-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'UbuntuBold';src:url('/templates/sibalt/fonts/Ubuntu/ubuntu-700.woff2') format('woff2');font-weight:700;font-style:normal;font-display:swap;}
.header{position:relative;min-height:80px;background:transparent;}
.header__top{display:flex;align-items:center;padding-top:10px;max-width:1340px;margin:0 auto;flex-wrap:wrap;}
.header__logo{display:block;width:137px;height:60px;}
.header__logo-img{width:100%;height:auto;}
.container{max-width:1340px;margin:0 auto;}
.container-2{max-width:1340px;margin:0 auto;padding:0 20px 15px;}
h1,h2,h3,h4,h5,h6{font-weight:700;margin:0 0 1rem;}
.title{font-size:2rem;line-height:1.2;color:#2c3e50;}
a{color:var(--primary-color);text-decoration:none;}
img{max-width:100%;height:auto;vertical-align:top;}
button{border:none;font-size:inherit;}
button,input[type="submit"]{display:inline-block;box-shadow:none;background-color:transparent;background:none;cursor:pointer;}
.breadcrumb{display:flex;align-items:center;gap:8px;font-size:16px;margin-bottom:5px;flex-wrap:wrap;}
.breadcrumb__item{color:#7f8c8d;display:flex;align-items:center;gap:5px;--link-arrow:#7f8c8d;}
.breadcrumb__item.active{color:#828282;font-weight:600;}
.box{background:#fff;padding:20px;border-radius:8px;}
.header__menu-button,.header__info-button{display:none;width:40px;height:40px;background:transparent;cursor:pointer;}
.main-content{min-height:400px;}
.link-2{color: var(--secondary-color);text-decoration: underline;}
@media (max-width:768px){
.header{min-height:350px;background:url('/templates/sibalt/images/main-bg-mobile.webp') no-repeat center / cover;}
.header__menu-button,.header__info-button{display:flex;align-items:center;justify-content:center;}
.header__logo{width:186px;height:82px;}
.title{font-size:1.5rem;}
.box{padding:20px;border-radius:0;}
.container-2{padding:0 0 15px 0;}
}


/* --------- /templates/sibalt/css/pages/catalog.css --------- */
.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 5px 0 20px 0;
    display: flex;
    gap:  20px;
    border-bottom: 1px solid #e6e6e6;
    text-decoration: none;
    color: inherit;
}

.catalog__image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
}

.catalog__preview {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.5;
}

.catalog__bar {
    margin-top: 30px;
    align-items: center;
    gap: 2px;
}
.catalog__bar-button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
}
.catalog__bar-button.active {
    background-color: #D87093;
    color: var(--white-color);
}
.catalog__bar-dots {
    margin: 0 5px;
    color: var(--secondary-color);
}

.category-list .page-header h2 {
    color: #009245;
    font-size: 24px;
    margin-bottom: 20px;
}

.catalog__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog__item a {
    padding: 20px 0;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.catalog__item a:hover .catalog__name {
    color: var(--primary-color);
}

.catalog__image {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.catalog__text {
    flex: 1;
}

.catalog__name {
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 10px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.catalog__preview {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.catalog__description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.catalog__empty {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #f9f9f9;
    border-radius: 8px;
}

.catalog__bar {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.catalog__bar > span {
    margin-right: 10px;
    color: var(--secondary-color);
}

.catalog__bar-button {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.catalog__bar-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.catalog__bar-button.active {
    background-color: #D87093;
    color: #fff;
    border-color: #D87093;
}

.catalog__children {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.catalog__children h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.catalog__children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.catalog__children-list li {
    list-style: none;
}

.catalog__children-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.catalog__children-list a:hover {
    text-decoration: underline;
}

.category .category-table {
    border-collapse: collapse;
    width: 100%;
}

.category .category-table tr {
    border-bottom: 1px solid #e6e6e6;
}

.category .category-item img {
    margin-top: 15px;
    margin-bottom: 15px;
}

.category .category-item .img-block {
    margin-right: 20px;
}

.category .category-item .img-block,
.category .category-item .all-category-content-block {
    display: inline-block;
    vertical-align: top;
}

.category .category-item .all-category-content-block {
    width: calc(100% - 220px);
    max-width: 500px;
}

.category .category-item .all-category-content-block > .text {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
}

.category .category-item .all-category-content-block > .text p {
    margin-top: 5px;
}

.category .category-item .all-category-content-block > .title {
    margin-top: 12px;
}

.category .category-item .all-category-content-block > .title a {
    font-family: 'UbuntuBold', sans-serif;
    font-weight: 700;
    color: #e30075;
    font-size: 16px;
    text-decoration: underline;
}

.category .category-item .all-category-content-block > .title a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .catalog {
        padding-top: 0;
    }

    .catalog__item a {
        padding: 10px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 200px;
    }

    .catalog__bar-button {
        width: 50px;
        height: 50px;
    }

    .catalog__item a {
        padding: 15px 0;
        flex-direction: column;
    }

    .catalog__image {
        width: 100%;
        height: 180px;
    }

    .catalog__bar-button {
        width: 45px;
        height: 45px;
    }

    .catalog__name {
        font-size: 16px;
    }

}

/* --------- /templates/sibalt/css/pagination.css --------- */
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

ul.pagination,
.pagination__wrapper ul.pagination {
    display: flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

ul.pagination .page-item .page-link,
ul.pagination li a,
ul.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
    background: #fff;
}

ul.pagination .page-item:not(.disabled):not(.active) .page-link:hover,
ul.pagination li a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

ul.pagination .page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

ul.pagination .page-item.disabled .page-link {
    color: #999;
    cursor: not-allowed;
    background: #f5f5f5;
}

.icon-angle-double-left::before,
.icon-angle-double-right::before,
.icon-angle-left::before,
.icon-angle-right::before {
    font-family: inherit;
    font-style: normal;
}

.icon-angle-double-left::before { content: '«'; }
.icon-angle-double-right::before { content: '»'; }
.icon-angle-left::before { content: '‹'; }
.icon-angle-right::before { content: '›'; }

.pagination__wrapper,
nav.pagination__wrapper {
    margin-top: 30px;
}
