

/* Start:/local/templates/djo-djo/assets/css/styles.css?17444291662365*/
@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_boldit.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/local/templates/djo-djo/assets/css/../fonts/proxima_nova/proximanova_blackit.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
}

:root {
    --color-text: #222222;
    --color-accent: #760410;      /* для hover и акцентов */
    --color-muted: #8C8C8C;       /* для неактивного текста */
    --color-bg: #ffffff;
    --color-bg-light: #F6F6F6;
    --color-button-main: #93252E;
    --color-button-accent: #2A445F;
    /*--color-border: #eeeeee;*/
    --color-border: #E9EAEA;

    --font-main: 'Proxima Nova', sans-serif;
    --font-headings: 'Neucha', cursive;
}

body, p, div {
    font-family: var(--font-main);
}

h2 {
    font-family: var(--font-headings);
}

.main-content {
    overflow: hidden;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: var(--color-text);
    font-size: 0.75rem !important;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.1);
    padding: 0.5rem 1.5rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0 !important;
    transform: translate(-50%);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0 !important;
    transform: translate(50%);
}
/* End */


/* Start:/local/templates/djo-djo/assets/css/header.css?17446932181507*/
/* header */

.header {
    position: relative;
    *border-bottom: 1px solid #eee;
    box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.1);
}

.header__top {
    padding: 1rem 0;
}

.header__left,
.header__right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__left {
    position: relative;
}

.header__right {
    justify-content: flex-end;
}

.header__logo-img {
    height: 36px;
}

.header__ornament {
    position: absolute;
    top: 0px; /* вылет вверх */
    transform: translateY(-50%);
    left: 50%;
    height: 70px;
    z-index: 1;
    pointer-events: none; /* чтобы не мешал кликам */
}

.header__phone-link {
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 18px;
    line-height: 140%;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__icon img {
    display: block;
    height: 32px;
}

/* ----- Адаптивный хедер ----- */
@media (max-width: 768px) {
    /* Скрываем телефон и орнамент */
    .header__phone,
    .header__ornament,
    .header__icon--search {
        display: none;
    }

    /* Показываем только избранное и корзину */
    .header__icon--fav,
    .header__icon--cart {
        display: inline-block;
    }

    .header__right {
        justify-content: flex-start;
        flex-direction: row-reverse;
        gap: 1rem;
    }
}
/* End */


/* Start:/local/templates/djo-djo/assets/css/footer.css?17682847591833*/
/* footer */
.footer {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    padding: 3rem 0 2rem;
}

.footer__top,
.footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__column {
    flex: 1 1 30%;
    *min-width: 200px;
}

.footer__column--center {
    text-align: center;
}

.footer__column--right {
    text-align: right;
}

.footer__logo {
    height: 40px;
}

.footer__phone {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
}

.footer__phone:hover {
    color: var(--color-accent);
}

.footer__label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer__time {
    font-size: 0.9rem;
    color: var(--color-text);
}

.footer__socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
}

.footer__social img {
    width: 28px;
    height: 28px;
    transition: opacity 0.2s ease;
}

.footer__social:hover img {
    opacity: 0.7;
}

.footer__bottom {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.footer__policy,
.footer__studio {
    text-decoration: none;
    color: var(--color-muted);
}

.footer__policy:hover,
.footer__studio:hover {
    color: var(--color-accent);
}

.footer__studio {
	text-align: right;
}

.footer__studio a {
    color: unset;
}

.main-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 14px;
}

/* Адаптив */
@media (max-width: 768px) {
    /* footer */
    .footer__top,
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer__studio {
    	text-align: center;
    }
}
/* End */


/* Start:/local/templates/djo-djo/components/bitrix/menu/top_menu/style.css?17435178671895*/
.top-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* соответствует примерно Bootstrap gap-3 */
    white-space: nowrap;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4; /* 140% */
    letter-spacing: normal;
    color: var(--color-muted);
}

.top-menu__link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
    font-size: 14px;
    line-height: 140%;
}

.top-menu__link:hover {
    color: var(--color-accent);
}

.header__icon--menu {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed; /* фиксируем */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 9999;
    padding: 2rem 1rem;
    *overflow-y: auto; /* если пунктов очень много */
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__list a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.2rem;
}

.mobile-menu__list a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Показать, если активен */
.mobile-menu--active {
    display: block;
}

.mobile-menu__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.body--locked {
    overflow: hidden;
}

/* Скрыть меню на маленьких экранах */
@media (max-width: 768px) {
    .top-menu {
        display: none;
    }

    /* Показываем иконку-бургер */
    .header__icon--menu {
        display: inline-block;
        height: 32px;
    }

    /* Прячем другие иконки, если нужно */
    .header__search,
    .header__phone {
        display: none;
    }
}
/* End */


/* Start:/local/templates/djo-djo/components/bitrix/menu/top_catalog/style.css?17444289793260*/
.top-catalog {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.top-catalog__wrapper {
    width: 100%;
    font-size: 0.95rem;
    padding: 1rem 0 !important;
}

.top-catalog__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
}

.top-catalog__item {
    position: relative;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 140%;
    font-family: var(--font-main);
}

.top-catalog__link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-catalog__link:hover {
    color: var(--color-accent);
}

.top-catalog__submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    padding: 1rem;
    display: none;
    box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.1);
    z-index: 999;
    border-radius: 8px;
}

.top-catalog__item--more:hover > .top-catalog__submenu {
    display: block;
}

.top-catalog__submenu-item {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    text-align: right;
}

.top-catalog__submenu-link {
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
}

.top-catalog__submenu-link:hover {
    color: var(--color-accent);
}

.top-catalog__icon {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
    pointer-events: none;
}

/* При наведении на родительский пункт "ещё" поворачиваем стрелку */
.top-catalog__item--more:hover .top-catalog__icon {
    transform: rotate(180deg);
}

.top-catalog__item--mobile {
    display: none;
}

/* Мобильная адаптация */
/*@media (max-width: 768px) {
    .top-catalog__list {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .top-catalog__submenu {
        position: static;
        display: block;
        padding-left: 1rem;
        box-shadow: none;
    }

    .top-catalog__item--more:hover > .top-catalog__submenu {
        display: block;
    }
}*/

@media (max-width: 768px) {
    .top-catalog .container {
        padding: 0;
    }

    .top-catalog__wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .top-catalog__list {
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 1rem;
        width: max-content; /* важно! не сжиматься */
        margin: 0 12px;
    }

    .top-catalog__item {
        flex: 0 0 auto;
    }

    /* Подменю (опционально: скрыто/переведено в дропдаун) */
    .top-catalog__submenu {
        position: absolute;
        top: 100%;
        right: 0;
        display: none;
        padding: 1rem;
        box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.1);
        z-index: 999;
        background-color: #fff;
        border-radius: 8px;
    }

    .top-catalog__item--more:hover > .top-catalog__submenu {
        display: block;
    }

    .top-catalog__item--mobile {
        display: block;
    }

    .top-catalog__item--more {
        display: none;
    }
}
/* End */
/* /local/templates/djo-djo/assets/css/styles.css?17444291662365 */
/* /local/templates/djo-djo/assets/css/header.css?17446932181507 */
/* /local/templates/djo-djo/assets/css/footer.css?17682847591833 */
/* /local/templates/djo-djo/components/bitrix/menu/top_menu/style.css?17435178671895 */
/* /local/templates/djo-djo/components/bitrix/menu/top_catalog/style.css?17444289793260 */
