

/* Start:/local/templates/fitasyntex/components/bitrix/catalog/fitasyntex_catalog/style.css?176184832422458*/
@charset "UTF-8";
.catalog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
}

.catalog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.catalog-sort {
    display: flex;
    gap: 12px;
}

.sort-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 15px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.sort-btn:hover, .sort-btn.active {
    color: #211fc1;
    background: rgba(33, 31, 193, 0.08);
}

.catalog-view-switch {
    display: flex;
    gap: 12px;
}

.view-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    opacity: 0.6;
    transition: opacity 0.2s, box-shadow 0.2s, background 0.2s;
    border-radius: 8px;
}

.view-btn.active {
    opacity: 1;
    background: #f6f7ff;
    box-shadow: 0 2px 8px rgba(33, 31, 193, 0.1);
}

.view-btn:hover {
    opacity: 0.85;
}

.view-btn svg {
    width: 28px;
    height: 28px;
    fill: #211fc1;
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.catalog-items.fade {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.catalog-items-grid .catalog-item {
    width: 220px;
}

.catalog-items-large {
    flex-direction: column;
    gap: 24px;
}

.catalog-items-list {
    flex-direction: column;
    gap: 8px;
}

.catalog-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33, 31, 193, 0.07);
    padding: 16px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-item:hover {
    box-shadow: 0 6px 24px rgba(33, 31, 193, 0.13);
    transform: translateY(-3px);
}

.catalog-item__img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.catalog-item__info {
    margin: 10px 0;
}

.catalog-item__title a {
    font-size: 16px;
    color: #211fc1;
    font-weight: 500;
    text-decoration: none;
}

.catalog-item__title a:hover {
    text-decoration: underline;
}

.catalog-item__stock {
    color: #1a7f37;
    font-size: 13px;
}

.catalog-item__article {
    color: #888;
    font-size: 12px;
}

.catalog-item__price {
    font-size: 18px;
    color: #111;
    font-weight: bold;
    margin: 8px 0;
}

/* Cart controls hidden by default, show on hover */
.catalog-item__cart-controls {
    margin-top: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.catalog-item:hover .catalog-item__cart-controls {
    opacity: 1;
    pointer-events: auto;
}

.catalog-item__btn,
button.catalog-item_btn.cart-btn-add {
    background: #211fc1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
    cursor: pointer;
    width: auto;
    min-width: 110px;
}

.catalog-item__btn:hover,
button.catalog-item_btn.cart-btn-add:hover {
    background: #1a1a9e;
}

.cart-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-btn {
    background: #211fc1;
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.2s;
}

.cart-btn:hover {
    background: #1a1a9e;
}

.cart-btn.cart-btn-minus {
    background: #ff4757;
}

.cart-btn.cart-btn-minus:hover {
    background: #e63946;
}

.cart-quantity {
    font-size: 16px;
    font-weight: bold;
    color: #211fc1;
    min-width: 24px;
    text-align: center;
}

/* LARGE */
.catalog-item-large {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 24px 32px;
    min-width: 0;
}

.catalog-item-large .catalog-item__img {
    flex: 0 0 120px;
    margin-right: 32px;
}

.catalog-item-large .catalog-item__img img {
    width: 120px;
    height: 120px;
}

.catalog-item-large .catalog-item__info {
    flex: 1;
    margin: 0;
    min-width: 0;
}

.catalog-item-large .catalog-item__title a {
    font-size: 18px;
    color: #211fc1;
    font-weight: 500;
    text-decoration: none;
}

.catalog-item-large .catalog-item__title a:hover {
    text-decoration: underline;
}

.catalog-item-large .catalog-item__row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 6px;
}

.catalog-item-large .catalog-item__price {
    font-size: 22px;
    color: #111;
    font-weight: bold;
    margin-left: 32px;
    min-width: 120px;
    text-align: right;
}

.catalog-item-large .catalog-item__cart-controls {
    margin-left: 32px;
    min-width: 120px;
    display: flex;
    justify-content: center;
}

.catalog-item-large .catalog-item__btn,
.catalog-item-large button.catalog-item_btn.cart-btn-add {
    padding: 4px 10px;
    font-size: 13px;
    min-width: 120px;
}

/* LIST */
.catalog-item-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 48px;
    padding: 8px 12px;
}

.catalog-item-list .catalog-item__img {
    flex: 0 0 36px;
    margin-right: 12px;
}

.catalog-item-list .catalog-item__img img {
    width: 36px;
    height: 36px;
}

.catalog-item-list .catalog-item__price {
    font-size: 16px;
    color: #111;
    font-weight: bold;
    margin-right: 12px;
    min-width: 70px;
    text-align: left;
}

.catalog-item-list .catalog-item__info {
    flex: 1;
    margin: 0;
}

.catalog-item-list .catalog-item__title a {
    font-size: 16px;
    color: #211fc1;
    font-weight: 500;
    text-decoration: none;
}

.catalog-item-list .catalog-item__title a:hover {
    text-decoration: underline;
}

.catalog-item-list .catalog-item__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-item-list .catalog-item__cart-controls {
    margin-left: 12px;
    min-width: 100px;
}

.catalog-item-list .cart-quantity-controls .cart-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

.catalog-item-list .cart-quantity-controls .cart-quantity {
    font-size: 14px;
}

.catalog-item-list .catalog-item__btn,
.catalog-item-list button.catalog-item_btn.cart-btn-add {
    padding: 4px 10px;
    font-size: 13px;
    min-width: 110px;
}

/* Pager */
.pager-brand {
    text-align: center;
    margin: 30px 0;
}

.pager-brand a, .pager-brand span {
    display: inline-block;
    margin: 0 4px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e3e6ff;
    color: #211fc1;
    text-decoration: none;
    font-size: 14px;
}

.pager-brand a:hover {
    background: #f6f7ff;
}

.pager-brand span {
    background: #211fc1;
    color: #fff;
    border-color: #211fc1;
}

/* Notifications */
.cart-notifications {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
}

.cart-notifications .notification {
    background: #2ed573;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
    animation: slideIn 0.3s ease;
    max-width: 300px;
}

.cart-notifications .notification.error {
    background: #ff4757;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Grid-specific equal heights and clamped titles only for tile view */
.catalog-items-grid .catalog-item {
    height: 330px;
}

.catalog-items-grid .catalog-item__info {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-items-grid .catalog-item__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
}

.catalog-items-grid .catalog-item__price {
    margin-top: auto;
}

.catalog-items-grid .catalog-item__img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Sections (top-level catalog) */
.catalog-sections-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 16px 30px;
}

.catalog-sections-header {
    text-align: left;
    margin-bottom: 20px;
}

.catalog-sections-title {
    margin: 0 0 6px 0;
    font-size: 28px;
    font-weight: 700;
    color: #120FA0;
}

.catalog-sections-description {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.catalog-sections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.catalog-section-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(18, 15, 160, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.catalog-section-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.catalog-section-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(18, 15, 160, 0.18);
}

.catalog-section-image {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9ff;
}

.catalog-section-image img {
    max-width: 85%;
    max-height: 100px;
    object-fit: contain;
}

.catalog-section-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #eef0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #120FA0;
}

.catalog-section-info {
    padding: 12px 14px 14px;
}

.catalog-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #120FA0;
    margin: 0 0 6px 0;
}

.catalog-section-count {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #888;
}

.catalog-section-subsections {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-top: 4px;
}

.catalog-subsection-link {
    display: inline-block;
    font-size: 12px;
    color: #120FA0;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f3f4ff;
    transition: background 0.2s ease, color 0.2s ease;
}

.catalog-subsection-link:hover {
    background: #120FA0;
    color: #fff;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1200px) {
    .catalog-container {
        max-width: 1120px;
        padding: 0 20px;
    }
    .catalog-sections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .catalog-controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .catalog-items-grid .catalog-item {
        width: calc(50% - 12px);
    }
    .catalog-item-large {
        padding: 20px;
    }
    .catalog-item-large .catalog-item__img {
        margin-right: 20px;
    }
    .catalog-item-large .catalog-item__price {
        margin-left: 20px;
    }
    .catalog-item-large .catalog-item__cart-controls {
        margin-left: 20px;
    }
    .catalog-item__btn,
    button.catalog-item_btn.cart-btn-add {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .catalog-item-large .catalog-item__btn,
    .catalog-item-large button.catalog-item_btn.cart-btn-add {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
    }
    .catalog-item-list .catalog-item__btn,
    .catalog-item-list button.catalog-item_btn.cart-btn-add {
        min-width: 110px;
        max-width: 110px;
        width: 110px;
    }
}

@media (max-width: 900px) {
    .catalog-sections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .catalog-container {
        padding: 0 15px;
    }
    .catalog-items-grid .catalog-item {
        width: 100%;
        height: auto;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    .catalog-items-grid .catalog-item__img img {
        width: 100px;
        height: 100px;
    }
    .catalog-items-grid .catalog-item__info {
        margin: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-grow: 1;
        width: 100%;
    }
    .catalog-items-grid .catalog-item__title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 60px;
        width: 100%;
    }
    .catalog-items-grid .catalog-item__price {
        margin-top: auto;
        font-size: 18px;
    }
    .catalog-item__cart-controls {
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
    }
    .catalog-item__btn,
    button.catalog-item_btn.cart-btn-add {
        min-width: 140px;
        max-width: 140px;
        width: 140px;
        padding: 8px 16px;
        font-size: 14px;
    }
    .cart-quantity-controls {
        width: 100%;
        justify-content: center;
        min-width: 140px;
        max-width: 140px;
    }
    .catalog-item-list {
        flex-direction: row;
        align-items: center;
        min-height: 60px;
        padding: 12px 16px;
    }
    .catalog-item-list .catalog-item__img {
        flex: 0 0 40px;
        margin-right: 16px;
    }
    .catalog-item-list .catalog-item__img img {
        width: 40px;
        height: 40px;
    }
    .catalog-item-list .catalog-item__info {
        flex: 1;
        margin: 0;
        min-width: 0;
    }
    .catalog-item-list .catalog-item__price {
        margin-right: 16px;
        min-width: 80px;
        flex-shrink: 0;
    }
    .catalog-item-list .catalog-item__cart-controls {
        margin-left: 16px;
        min-width: 140px;
        max-width: 140px;
        flex-shrink: 0;
        opacity: 1;
    }
    .catalog-item-list .catalog-item__btn,
    .catalog-item-list button.catalog-item_btn.cart-btn-add {
        min-width: 140px;
        max-width: 140px;
        width: 140px;
    }
    .catalog-item-large {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
    }
    .catalog-item-large .catalog-item__img {
        flex: 0 0 100px;
        margin-right: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .catalog-item-large .catalog-item__img img {
        width: 100px;
        height: 100px;
    }
    .catalog-item-large .catalog-item__info {
        flex: 1;
        margin: 0;
        min-width: 0;
    }
    .catalog-item-large .catalog-item__price {
        margin-left: 20px;
        margin-top: 0;
        text-align: right;
        min-width: 100px;
        flex-shrink: 0;
    }
    .catalog-item-large .catalog-item__cart-controls {
        margin-left: 20px;
        margin-top: 0;
        min-width: 140px;
        max-width: 140px;
        flex-shrink: 0;
    }
    .catalog-item-large .catalog-item__btn,
    .catalog-item-large button.catalog-item_btn.cart-btn-add {
        min-width: 140px;
        max-width: 140px;
        width: 140px;
    }
    .catalog-sort {
        flex-wrap: wrap;
    }
    .catalog-sections-title { font-size: 24px; }
    .catalog-sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .catalog-section-image { height: 140px; }
}

@media (max-width: 520px) {
    .catalog-sections-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .catalog-container {
        padding: 0 10px;
    }
    .catalog-item {
        padding: 12px;
    }
    .catalog-items {
        gap: 16px;
    }
    .catalog-items-grid .catalog-item {
        padding: 12px;
    }
    .catalog-item__btn,
    button.catalog-item_btn.cart-btn-add {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
        padding: 6px 12px;
        font-size: 13px;
    }
    .cart-quantity-controls {
        min-width: 120px;
        max-width: 120px;
    }
    .catalog-item-list .catalog-item__cart-controls,
    .catalog-item-large .catalog-item__cart-controls {
        min-width: 120px;
        max-width: 120px;
    }
    .catalog-item-list .catalog-item__btn,
    .catalog-item-list button.catalog-item_btn.cart-btn-add,
    .catalog-item-large .catalog-item__btn,
    .catalog-item-large button.catalog-item_btn.cart-btn-add {
        min-width: 120px;
        max-width: 120px;
        width: 120px;
    }
    .catalog-item-large {
        padding: 16px;
    }
    .catalog-item-large .catalog-item__img {
        flex: 0 0 80px;
        margin-right: 16px;
    }
    .catalog-item-large .catalog-item__img img {
        width: 80px;
        height: 80px;
    }
    .catalog-item-large .catalog-item__price {
        margin-left: 16px;
        min-width: 80px;
    }
    .catalog-item-list {
        padding: 10px 12px;
    }
    .catalog-item-list .catalog-item__img {
        flex: 0 0 36px;
        margin-right: 12px;
    }
    .catalog-item-list .catalog-item__img img {
        width: 36px;
        height: 36px;
    }
    .catalog-item-list .catalog-item__price {
        margin-right: 12px;
        min-width: 70px;
    }
    .cart-notifications {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    .cart-notifications .notification {
        max-width: 100%;
    }
    .catalog-sections-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Каталог: стили для всех внутренних страниц (разделов) кроме /catalog/ --- */
.is-section-page {
    background: #fff;
    padding-top: 28px;
    min-height: 700px;
}
.is-section-page .catalog-items {
    gap: 32px;
}
.is-section-page .catalog-item {
    background: #eef3fb;
    border: 1.5px solid #b7d0e6;
    box-shadow: 0 2px 12px rgba(50, 120, 180, 0.06);
}
.is-section-page .catalog-item__title a {
    color: #120FA0;
}
.is-section-page .catalog-item__btn {
    background: #120FA0;
    color: #fff;
}
.is-section-page .catalog-item__btn:hover {
    background: #02223a;
}

/* Мини-карточка для product-item */
.product-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(33,31,193,0.07);
    padding: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 170px;
    min-width: 0;
}
.catalog-items-list .product-item, .product-item--list {
    width: 100%;
    min-width: inherit;
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 8px 20px;
    border-radius: 9px;
}
.catalog-items-table .product-item, .product-item--table {
    width: 100%;
    min-width: inherit;
    text-align: left;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f7;
    box-shadow: none;
}
.product-item__img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.product-item__info {
    margin: 6px 0 0 0;
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.product-item__title {
    font-size: 15px;
    font-weight: 500;
    color: #120FA0;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}
.product-item__article {
    font-size: 12px;
    color: #888;
}
.product-item__price {
    font-size: 15px;
    color: #191919;
    font-weight: bold;
    margin-top: 2px;
}
.catalog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 10px 48px 10px;
}
.catalog-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px 14px;
    margin-bottom: 26px;
}
.catalog-sort {
    display: flex;
    gap: 12px;
}
.catalog-sort .sort-btn {
    padding: 5px 16px;
    border: none;
    background: #e9edf4;
    border-radius: 7px;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    cursor: pointer;
    transition: .11s;
    text-decoration: none;
}
.catalog-sort .sort-btn.active,
.catalog-sort .sort-btn:hover {
    background: #2333b9;
    color: #fff;
}
.catalog-view-switch {
    display: flex;
    gap: 8px;
}
.catalog-view-switch .view-btn {
    border: none;
    padding: 6px 8px;
    background: transparent;
    border-radius: 6px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: background .11s,color .11s;
    text-decoration: none;
}
.catalog-view-switch .view-btn.active,
.catalog-view-switch .view-btn:hover {
    background: #2333b9;
    color: #fff;
}
.catalog-section__filter {
    margin-bottom: 25px;
    background: #f4f6fa;
    border-radius: 8px;
    padding: 20px 18px 12px 18px;
    box-shadow: 0 2px 12px 0 rgba(34,52,185,0.035);
}
@media (max-width: 900px) {
    .catalog-section__filter {padding: 12px 4vw 8px 4vw;}
    .catalog-controls {flex-direction:column; align-items:stretch;}
}
@media (max-width:650px) {
    .catalog-container { padding: 2vw 2vw; }
    .catalog-section__filter {padding: 10px 2vw 6px 2vw;}
}
@media (max-width:900px){
    .product-item { width: 46%; }
}
@media (max-width:600px){
    .product-item { width: 96%; padding:7px; }
}
/* End */


/* Start:/bitrix/components/bitrix/catalog.section.list/templates/.default/style.min.css?17768731116236*/
.bx_catalog_line{margin-bottom:30px}.bx_catalog_line .bx_catalog_line_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_line .bx_catalog_line_category_title a{color:#000;text-decoration:none}.bx_catalog_line .bx_catalog_line_ul{padding:0}.bx_catalog_line .bx_catalog_line_ul li{margin-bottom:20px;list-style:none}.bx_catalog_line .bx_catalog_line_ul li:before{content:''!important}.bx_catalog_line .bx_catalog_line_img{position:relative;display:block;float:left;overflow:hidden;margin-right:40px;width:125px;height:125px;border:1px solid #ccc;border-radius:2px;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_line .bx_catalog_line_title{margin-bottom:10px;padding:0;vertical-align:top;line-height:18px}.bx_catalog_line .bx_catalog_line_title a{color:#4c7da6;font-size:18px}.bx_catalog_line .bx_catalog_line_title a:hover{text-decoration:none}.bx_catalog_line .bx_catalog_line_title span{font-size:16px}.bx_catalog_line .bx_catalog_line_description{color:#3f3f3f;font-size:13px;line-height:16px}@media(max-width:639px){.bx-touch .bx_catalog_line .bx_catalog_line_img{margin-right:10px;width:50px;height:50px}.bx-touch .bx_catalog_line .bx_catalog_line_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_line .bx_catalog_line_title a{font-size:14px}.bx-touch .bx_catalog_line .bx_catalog_line_description{font-size:11px}}.bx_catalog_line .bx_catalog_line_img,.bx_catalog_line .bx_catalog_line_title,.bx_catalog_line .bx_catalog_line_title a,.bx_catalog_line .bx_catalog_line_description{transition:all .3s ease}.bx_catalog_text{margin-bottom:30px}.bx_catalog_text .bx_catalog_text_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_text .bx_catalog_text_category_title a{color:#000;text-decoration:none}.bx_catalog_text .bx_catalog_text_ul{padding:0}.bx_catalog_text .bx_catalog_text_ul li{float:left;margin:0 10px 10px;list-style:none}.bx_catalog_text .bx_catalog_text_ul li:before{content:''!important}.bx_catalog_text .bx_catalog_text_title{margin:0;padding:0;vertical-align:top;font-size:14px;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{display:inline-block;overflow:hidden;max-width:100%;color:#4c7da6;-ms-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px}.bx_catalog_text .bx_catalog_text_title a:hover{text-decoration:none}.bx_catalog_text .bx_catalog_text_title span{font-size:12px}@media(max-width:639px){.bx-touch .bx_catalog_text .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_catalog_text .bx_catalog_line_title a{font-size:12px}}.bx_catalog_text .bx_catalog_line_title,.bx_catalog_text .bx_catalog_line_title a{transition:all .3s ease}.bx_catalog_tile{margin-bottom:30px}.bx_catalog_tile .bx_catalog_tile_category_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_catalog_tile .bx_catalog_tile_category_title a{color:#000;text-decoration:none}.bx_catalog_tile .bx_catalog_tile_ul{padding:0}.bx_catalog_tile .bx_catalog_tile_ul li{float:left;box-sizing:border-box;margin-bottom:20px;padding:0 10px;width:12.5%;list-style:none;text-align:center}.bx_catalog_tile .bx_catalog_tile_ul li:before{content:''!important}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:both}.bx_catalog_tile .bx_catalog_tile_img{position:relative;display:block;overflow:hidden;margin:0 auto;width:78px;height:78px;border:1px solid #ccc;border-radius:2px;background-color:#fff;background-position:center;background-size:contain;background-repeat:no-repeat;-webkit-background-size:contain}.bx_catalog_tile .bx_catalog_tile_title{margin-top:5px;margin-bottom:10px;padding:0;vertical-align:top;line-height:14px}.bx_catalog_tile .bx_catalog_tile_title a{color:#4c7da6;font-size:14px}.bx_catalog_tile .bx_catalog_tile_title a:hover{text-decoration:none}.bx_catalog_tile .bx_catalog_tile_title span{font-size:12px}@media(max-width:980px){.bx_catalog_tile .bx_catalog_tile_ul li{width:20%}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:both}}@media(max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_title{margin-bottom:5px;line-height:14px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title{line-height:10px}.bx-touch .bx_catalog_tile .bx_catalog_tile_title a{font-size:11px}}@media(min-width:480px) and (max-width:639px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:25%}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(4n+1){clear:both}}@media(max-width:479px){.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li{width:33.3%}.bx-touch .bx_catalog_tile .bx_catalog_tile_img{width:100%;height:80px}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1){clear:none}.bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(3n+1){clear:both}}.bx_catalog_tile .bx_catalog_tile_title,.bx_catalog_tile .bx_catalog_tile_title a,.bx_catalog_tile .bx_catalog_tile_ul li,.bx_catalog_tile .bx_catalog_tile_img{transition:all .3s ease}.bx_sitemap{margin-bottom:30px}.bx_sitemap .bx_sitemap_title{padding-bottom:14px;border-bottom:1px solid #e5e5e5;font-size:24px}.bx_sitemap .bx_sitemap_title a{color:#000;text-decoration:none}.bx_sitemap .bx_sitemap_ul li{padding:0;line-height:14px}.bx_sitemap .bx_sitemap_ul li:before{content:''!important}.bx_sitemap .bx_sitemap_li_title{display:inline-block;margin:0;margin-bottom:10px;padding:0;vertical-align:top;font-weight:normal;line-height:13px}.bx_sitemap .bx_sitemap_li_title a{color:#4c7da6;white-space:nowrap;font-size:13px}.bx_sitemap .bx_sitemap_li_title a:hover{text-decoration:none}.bx_sitemap .bx_sitemap_li_title span{font-size:11px}@media(max-width:639px){.bx-touch .bx_sitemap .bx_catalog_line_title{margin-bottom:5px;line-height:12px}.bx-touch .bx_sitemap .bx_catalog_line_title a{font-size:12px}}.bx_sitemap .bx_catalog_line_title,.bx_sitemap .bx_catalog_line_title a{transition:all .3s ease}
/* End */


/* Start:/local/templates/fitasyntex/components/bitrix/catalog.section/monopreparaty_section/style.css?176958521812090*/
.monopreparaty-catalog-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
}


/* Стили для поиска */
.monopreparaty-search-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}


.monopreparaty-search-input {
    flex: 1;
    max-width: 500px;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}


.monopreparaty-search-input:focus {
    border-color: #120fa0;
}

.monopreparaty-search-button {
    padding: 12px 24px;
    background-color: #120fa0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.monopreparaty-search-button:hover {
    background-color: #120fa0;
}

.monopreparaty-search-button:active {
    background-color: #120fa0;
}


/* Стили для фильтра по алфавиту */
.monopreparaty-alphabet-filter {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Переключатель RU/EN */
.monopreparaty-alphabet-lang-switch {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 14px;
}

.monopreparaty-alphabet-lang-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 600;
    cursor: pointer;
}

.monopreparaty-alphabet-lang-btn.active {
    background: #120fa0;
    border-color: #120fa0;
    color: #fff;
}

/* Показываем только выбранный алфавит */
.monopreparaty-catalog-section[data-alphabet="russian"] .monopreparaty-alphabet-group[data-alphabet="english"] {
    display: none;
}
.monopreparaty-catalog-section[data-alphabet="english"] .monopreparaty-alphabet-group[data-alphabet="russian"] {
    display: none;
}

/* Показываем только выбранный список товаров (RU/ENG) */
.monopreparaty-catalog-section[data-alphabet="russian"] .monopreparaty-products-group[data-alphabet="english"] {
    display: none;
}
.monopreparaty-catalog-section[data-alphabet="english"] .monopreparaty-products-group[data-alphabet="russian"] {
    display: none;
}

/* В RU-режиме скрываем EN-заголовки, в EN-режиме — RU-заголовки */
.monopreparaty-catalog-section[data-alphabet="russian"] .monopreparaty-letter-header--en {
    display: none !important;
}
.monopreparaty-catalog-section[data-alphabet="english"] .monopreparaty-letter-header--ru {
    display: none !important;
}


.monopreparaty-alphabet-group {
    margin-bottom: 15px;
}


.monopreparaty-alphabet-group:last-child {
    margin-bottom: 20px;
}


.monopreparaty-alphabet-title {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}


.monopreparaty-alphabet-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.monopreparaty-alphabet-letter {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.monopreparaty-alphabet-letter:hover {
    background-color: #e9ecef;
    border-color: #120fa0;
    color: #120fa0;
}


.monopreparaty-alphabet-letter.active {
    background-color: #120fa0;
    border-color: #120fa0;
    color: #fff;
}


.monopreparaty-alphabet-letter.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f0f0f0;
}


.monopreparaty-alphabet-reset {
    padding: 10px 20px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}


.monopreparaty-alphabet-reset:hover {
    background-color: #c82333;
}


/* Обертка для контента */
.monopreparaty-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}


/* Левая колонка со списком товаров */
.monopreparaty-products-list {
    flex: 0 0 350px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 10px;
}


.monopreparaty-product-item {
    padding: 8px 12px;
    margin-bottom: 4px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #f8f9fa;
    font-size: 13px;
    line-height: 1.4;
}


.monopreparaty-product-item:hover {
    background-color: #e9ecef;
    border-color: #120fa0;
}


.monopreparaty-product-item.active {
    background-color: #120fa0;
    border-color: #120fa0;
    color: #fff;
}


.monopreparaty-product-item.hidden {
    display: none;
}


.monopreparaty-product-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
    color: inherit;
    line-height: 1.3;
}


.monopreparaty-product-item.active .monopreparaty-product-name {
    color: #fff;
}


.monopreparaty-product-latin {
    font-size: 11px;
    font-style: italic;
    color: #666;
    margin-top: 2px;
    line-height: 1.2;
}


.monopreparaty-product-item.active .monopreparaty-product-latin {
    color: #e0e0e0;
}


/* Заголовок буквы */
.monopreparaty-letter-header {
    padding: 8px 12px;
    margin-top: 12px;
    margin-bottom: 6px;
    background-color: #e9ecef;
    border-left: 3px solid #120fa0;
    font-size: 16px;
    font-weight: 700;
    color: #120fa0;
    text-transform: uppercase;
}

.monopreparaty-letter-header:first-child {
    margin-top: 0;
}

.monopreparaty-letter-header[style*="display: none"] {
    display: none !important;
}


/* Правая колонка с детальной карточкой */
.monopreparaty-product-detail {
    flex: 1;
    min-width: 0;
}

/* Десктоп: правая колонка "липнет" и следует за скроллом */
@media (min-width: 1025px) {
    /* sticky может не работать, если у родителя overflow не visible */
    .monopreparaty-catalog-section,
    .monopreparaty-content-wrapper,
    .monopreparaty-product-detail {
        overflow: visible;
    }

    /* Если AJAX-шаблон оборачивает в .product-detail */
    .monopreparaty-product-detail .product-detail {
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }

    /* основной контейнер карточки из product detail */
    .monopreparaty-product-detail .product-detail__container {
        position: sticky;
        top: 20px;
    }
    /* fallback: если в AJAX-шаблоне другой контейнер */
    .monopreparaty-product-detail .monopreparaty-product-card {
        position: sticky;
        top: 20px;
    }
}


.monopreparaty-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}


.monopreparaty-empty-detail {
    text-align: center;
    padding: 60px 40px;
    color: #999;
    font-size: 18px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
}


/* Стили для карточки товара */
.monopreparaty-product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.monopreparaty-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.monopreparaty-detail-latin {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.monopreparaty-detail-image {
    margin-bottom: 25px;
    text-align: center;
}

.monopreparaty-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.monopreparaty-detail-price {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.monopreparaty-price-label {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.monopreparaty-price-value {
    font-size: 24px;
    font-weight: 700;
    color: #120fa0;
}

.monopreparaty-detail-preview {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.monopreparaty-detail-properties {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.monopreparaty-properties-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.monopreparaty-properties-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.monopreparaty-property-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
}

.monopreparaty-property-item:last-child {
    border-bottom: none;
}

.monopreparaty-property-name {
    font-weight: 600;
    color: #333;
    min-width: 150px;
    flex-shrink: 0;
}

.monopreparaty-property-value {
    color: #555;
    flex: 1;
}

.monopreparaty-detail-link-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    text-align: center;
}

.monopreparaty-detail-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #120fa0;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.monopreparaty-detail-link:hover {
    background-color: #0e0c7a;
    text-decoration: none;
    color: #fff;
}


/* Адаптивность */
@media (max-width: 1024px) {
    .monopreparaty-content-wrapper {
        flex-direction: column;
    }

    .monopreparaty-products-list {
        flex: 1;
        width: 100%;
    }

    .monopreparaty-product-detail {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .monopreparaty-catalog-section {
        padding: 10px;
    }

    .monopreparaty-alphabet-filter {
        padding: 15px;
    }

    .monopreparaty-alphabet-letters {
        gap: 6px;
    }

    .monopreparaty-alphabet-letter {
        min-width: 32px;
        height: 32px;
        padding: 6px 10px;
        font-size: 12px;
    }

    /* На мобилках: карточка всегда сверху под алфавитом */
    .monopreparaty-content-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .monopreparaty-product-detail {
        order: 1;
        width: 100%;
    }
    .monopreparaty-products-list {
        order: 2;
        width: 100%;
        max-height: 55vh;
        overflow: auto;
    }

}


/* Анимация загрузки */
.monopreparaty-loading {
    text-align: center;
    padding: 40px;
}


.monopreparaty-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #120fa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}






/* End */
/* /local/templates/fitasyntex/components/bitrix/catalog/fitasyntex_catalog/style.css?176184832422458 */
/* /bitrix/components/bitrix/catalog.section.list/templates/.default/style.min.css?17768731116236 */
/* /local/templates/fitasyntex/components/bitrix/catalog.section/monopreparaty_section/style.css?176958521812090 */
