

/* Start:/local/templates/fitasyntex/components/bitrix/news.list/mainslider/style.css?17636455242192*/
@charset "UTF-8";
/* Стили для упрощенного слайдера */
.main-slider {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  display: flex !important;
  flex-direction: row !important;
  width: 1300px;
  height: 400px !important;
  min-height: 400px !important;
  max-height: 400px !important;
  overflow: hidden;
}

.slide-img {
  flex: 1 1 100%;
  min-width: 0;
  min-height: 400px !important;
  height: 400px !important;
  max-height: 400px !important;
  width: 100%;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.slide-img-tag {
  display: none;
  width: 100%;
  height: auto;
}

/* Стили для ссылки слайда */
.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.slide-link:hover {
  opacity: 0.9;
}

/* Стили для пагинации */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #120fa0;
  transform: scale(1.2);
}

/* Стили для стрелок */
.swiper-button-next,
.swiper-button-prev {
  color: #120fa0 !important;
  stroke: #120fa0 !important;
  fill: #120fa0 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
  .main-slider {
    max-width: 100%;
    border-radius: 8px;
  }
  .swiper-slide {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
  .slide-img {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: none !important;
    display: block;
  }
  .slide-img-tag {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/fitasyntex/components/bitrix/catalog.section/fitasy_products_slider/style.css?176575655010673*/
@charset "UTF-8";

/* Скрываем любые остаточные элементы избранного */
.favorite-btn,
.mibazarow_add_favor,
[class*="favorite"],
[data-product-id][class*="favor"] {
    display: none !important;
    visibility: hidden !important;
}

/* Контейнер слайдера */
.products-slider-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 16px;
    position: relative;
}

/* Заголовок слайдера */
.products-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 20px;
}

.products-slider-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #120FA0;
    margin: 0;
}

.products-slider-view-all {
    font-size: 0.9rem;
    color: #120FA0;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.products-slider-view-all:hover {
    background: rgba(18, 15, 160, 0.08);
    color: #1a1a9e;
}

/* Обертка слайдера */
.products-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Кнопки навигации */
.products-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #120FA0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    padding: 0;
}

.products-slider-btn:hover {
    background: #120FA0;
    border-color: #120FA0;
    transform: translateY(-50%) scale(1.1);
}

.products-slider-btn:hover svg {
    stroke: #fff;
}

.products-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.products-slider-btn:disabled:hover {
    transform: translateY(-50%);
    background: #fff;
    border-color: #120FA0;
}

.products-slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: #120FA0;
    transition: stroke 0.2s;
}

.products-slider-btn-prev {
    left: 0;
}

.products-slider-btn-next {
    right: 0;
}

/* Трек слайдера */
.products-slider-track {
    overflow: hidden;
    position: relative;
}

/* Список товаров */
.products-slider-list {
    display: flex;
    transition: transform 0.4s ease;
    gap: 15px;
    will-change: transform;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .products-slider-list {
        gap: 10px;
    }
}

/* Карточка товара */
.products-slider-item {
    flex: 0 0 auto;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}

.products-slider-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(33, 31, 193, 0.07);
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.products-slider-card:hover {
    box-shadow: 0 6px 24px rgba(33, 31, 193, 0.13);
    transform: translateY(-3px);
}

/* Изображение */
.products-slider-card__img {
    margin-bottom: 8px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.products-slider-card__img a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

.products-slider-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s;
}

.products-slider-card__img a:hover img {
    opacity: 0.8;
}


/* Цена */
.products-slider-card__price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 6px;
    min-height: 24px;
}

/* Название */
.products-slider-card__title {
    margin-bottom: 6px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-slider-card__title a {
    font-size: 0.95rem;
    color: #120FA0;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-slider-card__title a:hover {
    text-decoration: underline;
}

/* Раздел */
.products-slider-card__section {
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.products-slider-card__section a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.products-slider-card__section a:hover {
    color: #120FA0;
    text-decoration: underline;
}

/* Корзина */
.products-slider-card__cart {
    margin-top: auto;
    padding-top: 8px;
    padding-bottom: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.products-slider-card__btn {
    background: #120FA0;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    transition: background 0.2s;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    box-sizing: border-box;
    flex-shrink: 0;
    display: block;
    line-height: 1.4;
}

.products-slider-card__btn:hover {
    background: #1a1a9e;
}

/* Элементы управления корзиной */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cart-btn {
    background: #120FA0;
    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: #120FA0;
    min-width: 24px;
    text-align: center;
}

/* Пагинация */
.products-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.products-slider-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e3e6ff;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.products-slider-pagination-dot:hover {
    background: #b7d0e6;
    transform: scale(1.2);
}

.products-slider-pagination-dot.active {
    background: #120FA0;
    transform: scale(1.3);
}

.products-slider-pagination-dot.not-loaded {
    opacity: 0.5;
    background: #ccc;
}

.products-slider-pagination-dot.not-loaded:hover {
    opacity: 0.7;
    background: #999;
}

/* 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;
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .products-slider-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 992px) {
    .products-slider-card__img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .products-slider-container {
        padding: 15px 10px;
    }

    .products-slider-header {
        padding: 0 10px;
        margin-bottom: 12px;
    }

    .products-slider-title {
        font-size: 1.2rem;
    }

    .products-slider-wrapper {
        padding: 0 35px;
    }

    .products-slider-btn {
        width: 36px;
        height: 36px;
    }

    .products-slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .products-slider-card {
        padding: 10px;
    }

    .products-slider-card__img {
        height: 120px;
        margin-bottom: 6px;
    }

    .products-slider-card__price {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .products-slider-card__title {
        min-height: 36px;
        margin-bottom: 4px;
    }

    .products-slider-card__title a {
        font-size: 0.85rem;
    }

    .products-slider-card__section {
        margin-bottom: 6px;
        font-size: 0.75rem;
    }

    .products-slider-card__cart {
        padding-top: 6px;
        min-height: 36px;
    }

    .products-slider-card__btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-slider-card__img {
        height: 110px;
    }


    .products-slider-wrapper {
        padding: 0 30px;
    }

    .products-slider-btn {
        width: 32px;
        height: 32px;
    }

    .products-slider-btn svg {
        width: 16px;
        height: 16px;
    }

    .products-slider-pagination {
        gap: 4px;
        margin-top: 12px;
    }

    .products-slider-pagination-dot {
        width: 6px;
        height: 6px;
    }
}

/* Индикатор загрузки */
.products-slider-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.loading-spinner {
    font-size: 14px;
    color: #120FA0;
    padding: 10px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



/* End */


/* Start:/local/templates/fitasyntex/components/bitrix/news.list/news_slider_fitasyntex/style.css?17695671284504*/
.news-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    position: relative;
}

.news-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.news-slider-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.news-slider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #120FA0;
}

.news-slider-nav {
    display: flex;
    gap: 8px;
}

.news-slider-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e3e3e3;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #120FA0;
    font-size: 18px;
}

.news-slider-btn:hover {
    border-color: #120FA0;
    background: #120FA0;
    color: #fff;
    transform: translateY(-1px);
}

.news-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.news-slider-wrapper {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.news-slider-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 16px;
}

.news-slider-card {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.news-slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.news-slider-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #f5f5f5;
}

.news-slider-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    min-height: 0;
}

.news-slider-card-date {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-slider-card-title {
    font-size: 16px;
    line-height: 1.4;
    color: #120FA0;
    margin: 0 0 8px 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Гарантируем обрезку внутри ссылки без «хвостов» текста снизу */
.news-slider-card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.news-slider-card-preview {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.news-slider-card-more {
    display: inline-block;
    padding: 8px 16px;
    background: #120FA0;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
    flex-shrink: 0;
}

.news-slider-card-more:hover {
    background: #0e0d8a;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .news-slider-container {
        padding: 16px 12px;
    }

    .news-slider-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .news-slider-card {
        /* Ровно 2 карточки в видимой области на мобилке */
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .news-slider-card-image {
        height: 160px;
    }
}
/* СКРЫВАЕМ ТОЧКИ ПАГИНАЦИИ */
.news-slider-pagination,
.news-slider-dot {
    display: none !important;
}
@media (max-width: 480px) {
    .news-slider-card {
        /* Также 2 карточки на очень узких экранах */
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .news-slider-card-image {
        height: 140px;
    }

    .news-slider-card-content {
        padding: 12px;
    }
}
/* End */


/* Start:/local/templates/fitasyntex/components/bitrix/news.list/kursi/style.css?17617575125401*/
.courses-slider {
    width: 1100px;
    max-width: 90vw;
    margin: 48px auto 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.courses-title {
    font-size: 2.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}
.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: relative;
}
.courses-tab {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #22223b;
    padding: 8px 24px 12px 24px;
    cursor: pointer;
    transition: color 0.2s;
    outline: none;
    position: relative;
    z-index: 1;
}
.courses-tab.active,
.courses-tab:hover {
    color: #120fa0;
}
.courses-tabs-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #120fa0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    z-index: 0;
    width: 0;
    transform: translateX(0);
}
.courses-slides {
    position: relative;
    min-height: 380px;
}
.courses-slide {
    display: none;
    align-items: stretch;
    background: #120fa0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(18,15,160,0.08);
    padding: 0;
    min-height: 380px;
    transition: background 0.3s;
}
.courses-slide.active {
    display: flex;
    animation: fadeIn 0.5s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: none;}
}
.courses-slide-media {
    flex: 0 0 44%;
    min-width: 0;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.courses-slide-media img,
.courses-slide-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    max-height: 380px;
    background: #ccc;
}
.courses-slide-content {
    flex: 1 1 0;
    padding: 48px 40px 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #120fa0;
    color: #fff;
}
.courses-slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.courses-slide-desc {
    font-size: 1.15rem;
    margin-bottom: 32px;
    line-height: 1.5;
    color: #f5f5f5;
}
.courses-slide-btn {
    display: inline-block;
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    color: #120fa0;
    background: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-align: center;
    box-shadow: 0 2px 8px rgba(18,15,160,0.08);
    margin-top: 18px;
}
.courses-slide-btn:hover {
    background: #120fa0;
    color: #fff;
}

/* Только мобильная адаптация */
@media (max-width: 900px) {
    .courses-slider {
        width: 98vw;
        margin: 32px auto 0 auto;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .courses-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .courses-tabs {
        gap: 16px;
        margin-bottom: 24px;
        padding: 0 10px;
    }

    .courses-tab {
        font-size: 1rem;
        padding: 6px 16px 10px 16px;
    }

    .courses-slides {
        min-height: 300px;
    }

    .courses-slide {
        flex-direction: column;
        min-height: 0;
        border-radius: 12px;
        margin: 0 auto;
    }

    .courses-slide-media,
    .courses-slide-content {
        width: 100%;
        max-width: 100%;
        flex: none;
    }

    .courses-slide-media {
        min-height: 200px;
        max-height: 200px;
    }

    .courses-slide-content {
        padding: 24px 20px 20px 20px;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden;
    }

    .courses-slide-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .courses-slide-desc {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .courses-slide-btn {
        padding: 12px 20px;
        font-size: 1rem;
        margin-top: 12px;
        max-width: 100%;
        box-sizing: border-box;
        align-self: flex-start;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .courses-slider {
        padding: 0 12px;
    }

    .courses-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .courses-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .courses-tab {
        font-size: 0.9rem;
        padding: 5px 12px 8px 12px;
    }

    .courses-slide-content {
        padding: 20px 16px 16px 16px;
    }

    .courses-slide-title {
        font-size: 1.2rem;
    }

    .courses-slide-desc {
        font-size: 0.95rem;
    }

    .courses-slide-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}

/* Экстренный фикс для самых маленьких экранов */
@media (max-width: 360px) {
    .courses-slide-content {
        padding: 16px 12px 12px 12px;
    }

    .courses-slide-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
/* End */
/* /local/templates/fitasyntex/components/bitrix/news.list/mainslider/style.css?17636455242192 */
/* /local/templates/fitasyntex/components/bitrix/catalog.section/fitasy_products_slider/style.css?176575655010673 */
/* /local/templates/fitasyntex/components/bitrix/news.list/news_slider_fitasyntex/style.css?17695671284504 */
/* /local/templates/fitasyntex/components/bitrix/news.list/kursi/style.css?17617575125401 */
