

/* Start:/bitrix/templates/eco/css/reset.css?17741563523689*/
/* reset.css — Modern CSS Reset
 * Убирает всё, что может сломать верстку
 * Основано на современных подходах (Andy Bell, Josh Comeau)
 */

/* 1. Бокс-модель для всех элементов — интуитивно понятная */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Убираем стандартные стили списков */
ul,
ol {
  list-style: none;
}

/* 3. Убираем подчеркивание у ссылок, наследуем цвет */
a {
  text-decoration: none;
  color: inherit;
}

/* 4. Убираем рамку у изображений, делаем их блочными */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. Наследуем шрифты для форм — чтобы не сбрасывать вручную */
input,
button,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  color: inherit;
}

/* 6. Убираем стандартные стили кнопок, но оставляем cursor */
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* 7. Убираем обводку у элементов при клике, но оставляем focus-visible для доступности */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
  border-radius: 2px;
}

/* 8. Убираем стрелки у number input (для WebKit) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* 9. Убираем стандартные стили для полей поиска в WebKit */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* 10. Базовые настройки для body — сглаживание шрифтов и базовая линия */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 11. Убираем анимации для пользователей, которые предпочитают их отключить */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 12. Убираем рамку у fieldset */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* 13. Убираем стандартные стили для summary (в details/summary) */
summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* 14. Таблицы — без двойных границ */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* 15. Базовые стили для заголовков — сбрасываем только маржины, размеры оставляем на волю дизайна */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
/* End */


/* Start:/bitrix/templates/eco/css/root.css?17762999955904*/
/* root.css — Глобальные переменные, базовые стили и компоненты */

/* ===== ПЕРЕМЕННЫЕ ===== */
:root {
  /* Цветовая палитра */
  --primary: #29488B;
  --primary-hover: #0F6BD4;
  --text: #1E222E;
  --grey: #767676;
  --black: #000000;
  --white: #FFFFFF;
  --litegrey: #F6F6F9;
  --yellow: #F2D900;
  --green: #009E3D;
  --white-transparent: rgba(255, 255, 255, 0.9);
  --accent: #F5C518;
  
  /* Типографика */
  --font-main: 'Montserrat', sans-serif;
  
  /* Размеры шрифтов */
  --text-sm: 14px;
  --text-base: 18px;
  --text-lg: 28px;
  --text-xl: 42px;
  
  /* Радиусы */
  --radius-md: 16px;
  --radius-full: 50px;
  
  /* Отступы */
  --spacing-md: 32px;
  --spacing-lg: 64px;
  
  /* Контейнер */
  --container-width: 1460px;
}

/* ===== БАЗОВЫЕ СТИЛИ ===== */
body {
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--white);
  font-size: var(--text-base);
  font-weight: 400;
}

a {color: var(--primary);}
div {line-height: 1;}
/* ===== ЗАГОЛОВКИ ===== */
h1 {
  font-weight: 700;
  font-size: var(--text-xl);
  line-height: 100%;
  letter-spacing: 1px;
  color: var(--black);
}

h2 {
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: 36px;
  letter-spacing: 0px;
  margin-bottom: 20px;
  color: var(--black);
}

h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--black);
}

/* ===== ТЕКСТОВЫЕ ЭЛЕМЕНТЫ ===== */
p, li, .text-base {
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.4;
  letter-spacing: 0px;
  color: var(--text);
}

small, .text-sm {
  font-size: var(--text-sm);
  line-height: 24px;
}

/* ===== КОНТЕЙНЕР (АДАПТИВ) ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  box-sizing: border-box;
}

/* Адаптив контейнера */
@media (max-width: 1500px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1220px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 979px) {
  .container {
    max-width: 740px;
    padding: 0 10px;
  }
}

@media (max-width: 750px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}

/* ===== БЛОКИ С РАДИУСАМИ ===== */
.radius_block {
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.radius_block_big {
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
}

/* ===== КНОПКИ (БАЗОВЫЙ КЛАСС) ===== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 48px;
  padding-right: 24px;
  padding-left: 24px;
  border-radius: var(--radius-full);
  border-width: 1px;
  border-style: solid;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

/* ===== ВАРИАНТЫ КНОПОК ===== */
.btn_primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn_primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
}

.btn_transparent {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn_transparent:hover {
  background: rgba(15, 107, 212, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.btn_white {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.btn_white:hover {
  background: var(--white-transparent);
  border-color: var(--white);
  color: var(--primary);
}

.btn_grey {
  background: var(--litegrey);
  border-color: var(--litegrey);
  color: var(--black);
}

.btn_grey:hover {
  background: #e8e8ed;
  border-color: #e8e8ed;
  color: var(--black);
}

/* Кнопка с иконкой */
.btn_icon {
  gap: 10px;
}

.btn_icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===== КРУГЛЫЕ КНОПКИ ===== */
.circle_btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  flex-shrink: 0;
}

.circle_btn svg {
  width: 24px;
  height: 24px;
}

.circle_btn_white {
  background: var(--white);
}

.circle_btn_white svg {
  fill: var(--primary);
}

.circle_btn_primary {
  background: var(--primary);
}

.circle_btn_primary svg {
  fill: var(--white);
}

.circle_btn_primary:hover {
  background: var(--primary-hover);
}

.circle_btn_white:hover {
  background: var(--litegrey);
}

/* ===== ФОРМЫ ===== */
input,
textarea,
select {
  font-family: var(--font-main);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  height: 48px;
}
textarea {height: 80px;}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 107, 212, 0.1);
  border-radius: 50px;
}

/* Чекбокс согласия */
.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox span {
  font-size: 14px;
  line-height: 1.4;
  color: var(--grey);
}

/* ===== ВСПОМОГАТЕЛЬНЫЕ КЛАССЫ ===== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-grey {
  color: var(--grey);
}

.mt-36 { margin-top: 36px; }
.mt-72 { margin-top: 72px; }

/* ===== АНИМАЦИИ ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}
/* End */


/* Start:/bitrix/templates/eco/css/header.css?17744147202560*/
/* Стили для шапки сайта */
.site-header__top {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
    padding: 16px 0;
}
.site-header__logo a.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-header__logo a.logo img {
    width: auto;
    height: auto;
    max-height: 65px;
    max-width: 237px;
    object-fit: contain;
    object-position: left center;
}
.logo__description {
    display: block;
    max-width: 218px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--grey);
}
.site-header__contacts {
    display: flex;
    align-items: flex-end;
    gap: 1px;
    flex-direction: column;
}
.site-header__phone a {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--black);
}
.site-header__email a {
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0px;
}
.search-form__button svg path {stroke: var(--grey);}
header .search-form {position: relative;}
.search-form__button {
    position: absolute;
    top: calc(50% - 11.5px);
    right: 17px;
}
.site-header__search {width: 512px;}
@media (max-width: 1500px) {
    .site-header__search {width: 293px;}   
}
/* меню */
.site-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    padding: 4px 0;
}
.main-menu {
    display: flex;
    align-items: center;
}
.main-menu li a.main-menu__link {
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0px;
    color: var(--primary);
    padding: 0px 20px;
    border-radius: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-menu li a.main-menu__link.active, .main-menu li a.main-menu__link:hover {background: var(--litegrey);}
.right_icons {
    display: flex;
}
.right_icons a {
    position: relative;
}
.right_icons a span {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 6px;
}
.main-menu__item a.btn_icon {padding-right: 37px;}
.page_title {
	width: 100%;
	padding: 40px 0;
}
.mod-breadcrumb {
	display: flex;
    gap: 5px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text);
}
.mod-breadcrumb a {color: var(--grey);}
/* End */


/* Start:/bitrix/templates/eco/css/banner.css?17741623341622*/
.banner-slide {
    height: 481px;
    overflow: hidden;
    border-radius: 16px;
    padding: 55px 62px;
    background-size: cover;
    background-position: center;
}
.banner-slide__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.banner-slide__title {
    font-weight: 700;
    font-size: 37px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    max-width: 970px;
}
.banner-slide__description {
    margin-top: 29px;
    max-width: 500px;
}
.banner-slide__description ol {
    list-style-type: decimal;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 40px;
}
.banner-slide__description ul {
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 40px;
}
.banner-slide__description, .banner-slide__description p, .banner-slide__description li {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0px;
}
.banner-slide__buttons {
    display: flex;
    margin-top: 72px;
    gap: 24px;
}
.banner-slider .owl-nav {display: none;}
.banner-slider .owl-dots {
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    gap: 15px;
}
.banner-slider .owl-dots button {
    background: var(--white) !important;
    opacity: 0.6;
}
.banner-slider .owl-dots button.active {
    background: var(--white) !important;
    opacity: 1;
}
.index_page {margin-top: 26px;}
/* End */


/* Start:/bitrix/templates/eco/css/footer.css?17751531761623*/
.container_mod_footer {
    background: var(--primary);
    box-sizing: border-box;
    padding: 32px;
    border-radius: 16px;
    margin: 40px auto 20px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.footer-description_mod_small, .footer-copyright_mod_small {
	color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    margin-top: 20px;
    max-width: 300px
}
.footer-copyright_mod_small {opacity: 0.6;}
.footer-links-title_mod_small {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0px;
	padding-top: 10px;
}
.footer_menu_catalog, .footer-links-list_mod_small {
	display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
	gap: 5px 24px;
}
.footer-links-list_mod_small li {width: 100%;}
.footer_menu_catalog li {width: 100%;}
.footer_menu_catalog a, .footer-links-list_mod_small a {
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
}
.footer_info {min-width: 319px;}
.footer-info-contacts_mod_small {
    min-width: 245px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: right;
    padding-top: 8px;
}
.footer-info-contacts_mod_small p {
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0px;
	color: var(--white);
}
.footer-info-contacts_mod_small a {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: var(--white);
}
.footer-info-links_mod_small.footer_info {min-width: 260px;}
/* End */


/* Start:/bitrix/templates/eco/css/personal.css?177570397412470*/
/* ============================================================
   Личный кабинет — personal.css
   ============================================================ */

/* ===== СЕТКА ЛЕЙАУТА (сайдбар + контент) ===== */
.personal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0 64px;
}

@media (max-width: 900px) {
    .personal-layout {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0 40px;
    }
}

/* ===== САЙДБАР ===== */
.personal-sidebar {
    background: var(--litegrey, #F6F6F9);
    border-radius: var(--radius-md, 16px);
    padding: 12px;
    position: sticky;
    top: 24px;
}

.personal-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 900px) {
    .personal-sidebar {
        position: static;
    }
    .personal-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
}

.personal-nav__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text, #1E222E);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.personal-nav__item svg {
    flex-shrink: 0;
    color: var(--grey, #767676);
    transition: color 0.2s ease;
}

.personal-nav__item:hover,
.personal-nav__item--active {
    background: #fff;
    color: var(--primary, #29488B);
}

.personal-nav__item:hover svg,
.personal-nav__item--active svg {
    color: var(--primary, #29488B);
}

.personal-nav__item--logout {
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
    padding-top: 16px;
    color: var(--grey, #767676);
}

.personal-nav__item--logout:hover {
    background: #fff2f2;
    color: #c62828;
}

.personal-nav__item--logout:hover svg {
    color: #c62828;
}

@media (max-width: 900px) {
    .personal-nav__item--logout {
        margin-top: 0;
        border-top: none;
        padding-top: 12px;
    }
}

/* ===== КОНТЕНТ ===== */
.personal-content {
    min-width: 0;
}

/* ===== ПРИВЕТСТВИЕ ===== */
.personal-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary, #29488B);
    border-radius: var(--radius-md, 16px);
    padding: 28px 32px;
    margin-bottom: 24px;
    color: #fff;
}

.personal-welcome__avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.personal-welcome__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.personal-welcome__email {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .personal-welcome {
        padding: 20px;
        gap: 16px;
    }
    .personal-welcome__avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .personal-welcome__name {
        font-size: 17px;
    }
}

/* ===== КАРТОЧКИ-СЧЁТЧИКИ ===== */
.personal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 700px) {
    .personal-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .personal-cards {
        grid-template-columns: 1fr;
    }
}

.personal-card {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: var(--radius-md, 16px);
    padding: 24px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.personal-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary, #29488B);
}

.personal-card__icon {
    color: var(--primary, #29488B);
    margin-bottom: 4px;
}

.personal-card__count {
    font-size: 30px;
    font-weight: 700;
    color: var(--text, #1E222E);
    line-height: 1;
}

.personal-card__label {
    font-size: 13px;
    color: var(--grey, #767676);
    line-height: 1.4;
}

/* ===== СЕКЦИЯ С ЗАГОЛОВКОМ ===== */
.personal-section {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: var(--radius-md, 16px);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.personal-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.personal-section__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.personal-section__link {
    font-size: 14px;
    color: var(--primary, #29488B);
    text-decoration: none;
    font-weight: 500;
}

.personal-section__link:hover {
    text-decoration: underline;
}

/* ===== МИНИ-ТАБЛИЦА ЗАКАЗОВ (дашборд) ===== */
.personal-orders-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.personal-orders-table__head {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr auto;
    gap: 12px;
    padding: 8px 0 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--grey, #767676);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f4;
}

.personal-orders-table__row {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f4;
    font-size: 14px;
}

.personal-orders-table__row:last-child {
    border-bottom: none;
}

.personal-orders-table__num {
    font-weight: 600;
    color: var(--text, #1E222E);
}

.personal-orders-table__date {
    color: var(--grey, #767676);
}

.personal-orders-table__price {
    font-weight: 600;
    color: var(--primary, #29488B);
}

.personal-orders-table__link {
    font-size: 13px;
    color: var(--primary, #29488B);
    text-decoration: none;
    white-space: nowrap;
}

.personal-orders-table__link:hover {
    text-decoration: underline;
}

@media (max-width: 680px) {
    .personal-orders-table__head { display: none; }
    .personal-orders-table__row {
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
    }
    .personal-orders-table__status { grid-column: 1; }
    .personal-orders-table__link { grid-column: 2; text-align: right; }
}

/* ===== СТАТУС-БЕЙДЖИ ===== */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.status-badge--active {
    background: rgba(0, 158, 61, 0.1);
    color: var(--green, #009E3D);
}

.status-badge--canceled {
    background: rgba(229, 57, 53, 0.1);
    color: #c62828;
}

.status-badge--pending {
    background: rgba(242, 217, 0, 0.2);
    color: #7a6800;
}

/* ===== ФОРМА ПРОФИЛЯ ===== */
.personal-profile {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: var(--radius-md, 16px);
    padding: 32px;
}

.personal-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .personal-form__row {
        grid-template-columns: 1fr;
    }
    .personal-profile {
        padding: 20px;
    }
}

.personal-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.personal-form__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--grey, #767676);
    letter-spacing: 0.3px;
}

.personal-form__required {
    color: #e53935;
}

.personal-form__input {
    font-family: var(--font-main, 'Montserrat', sans-serif);
    font-size: 15px;
    padding: 12px 18px;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-full, 50px);
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--text, #1E222E);
}

.personal-form__input:focus {
    outline: none;
    border-color: var(--primary, #29488B);
    box-shadow: 0 0 0 3px rgba(41, 72, 139, 0.12);
}

.personal-form__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0 24px;
    color: var(--grey, #767676);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.personal-form__divider::before,
.personal-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8ee;
}

.personal-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

/* ===== УВЕДОМЛЕНИЯ ===== */
.personal-alert {
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
}

.personal-alert p {
    margin: 0;
    font-size: 14px;
}

.personal-alert--success {
    background: rgba(0, 158, 61, 0.08);
    border: 1px solid rgba(0, 158, 61, 0.3);
    color: #00622a;
}

.personal-alert--error {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

/* ===== ЭКО-СТИЛИ ДЛЯ КОМПОНЕНТОВ БИТРИКС ===== */

/* Заголовки в компонентах */
.personal-content h1,
.personal-content h2,
.personal-content h3 {
    font-family: var(--font-main, 'Montserrat', sans-serif);
}

/* Обёртка компонента списка заказов */
.personal-content .container,
.personal-content .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

/* Карточка заказа */
.personal-content .sale-order-detail,
.personal-content .order-list-item {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: var(--radius-md, 16px);
    padding: 24px;
    margin-bottom: 16px;
}

/* Кнопки в компонентах */
.personal-content .btn-primary,
.personal-content .btn-success {
    background: var(--primary, #29488B);
    border-color: var(--primary, #29488B);
    border-radius: var(--radius-full, 50px);
    font-family: var(--font-main, 'Montserrat', sans-serif);
    font-weight: 600;
    padding: 10px 24px;
    height: auto;
    transition: background 0.2s ease;
}

.personal-content .btn-primary:hover,
.personal-content .btn-success:hover {
    background: var(--primary-hover, #0F6BD4);
    border-color: var(--primary-hover, #0F6BD4);
}

.personal-content .btn-default {
    border-color: var(--primary, #29488B);
    color: var(--primary, #29488B);
    border-radius: var(--radius-full, 50px);
    font-family: var(--font-main, 'Montserrat', sans-serif);
    font-weight: 600;
}

.personal-content .btn-default:hover {
    background: rgba(41, 72, 139, 0.06);
    color: var(--primary, #29488B);
}

/* Таблица в детальном заказе */
.personal-content .table {
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.personal-content .table thead th {
    background: var(--litegrey, #F6F6F9);
    color: var(--grey, #767676);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
    padding: 12px 16px;
}

.personal-content .table td {
    padding: 14px 16px;
    vertical-align: middle;
    border-color: #f0f0f4;
}

/* Алёрты */
.personal-content .alert {
    border-radius: 10px;
    font-size: 14px;
    border: none;
    padding: 14px 18px;
}

.personal-content .alert-danger {
    background: #fff5f5;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.personal-content .alert-success {
    background: rgba(0, 158, 61, 0.08);
    color: #00622a;
    border: 1px solid rgba(0, 158, 61, 0.3);
}

.personal-content .alert-info {
    background: rgba(41, 72, 139, 0.06);
    color: var(--primary, #29488B);
    border: 1px solid rgba(41, 72, 139, 0.2);
}

/* Пагинация */
.personal-content .pagination > li > a,
.personal-content .pagination > li > span {
    border-color: #e0e0e0;
    color: var(--primary, #29488B);
    border-radius: 8px !important;
    margin: 0 2px;
    font-size: 14px;
}

.personal-content .pagination > .active > a,
.personal-content .pagination > .active > span {
    background: var(--primary, #29488B);
    border-color: var(--primary, #29488B);
}

/* Ссылки */
.personal-content a {
    color: var(--primary, #29488B);
}

.personal-content a:hover {
    color: var(--primary-hover, #0F6BD4);
}

/* End */


/* Start:/bitrix/templates/eco/components/bitrix/breadcrumb/breds/style.min.css?1774413258620*/
.bx-breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.bx-breadcrumb-item{height:22px;white-space:nowrap}.bx-breadcrumb-item-angle{margin:0 10px;color:#b5bdc2;vertical-align:top;font-size:12px}.bx-breadcrumb-item-link{border-bottom:0;vertical-align:top;line-height:21px}.bx-breadcrumb-item-text{vertical-align:top;white-space:normal;font:400 13px/21px "Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;transition:250ms linear all}
/* End */


/* Start:/bitrix/templates/eco/components/bitrix/menu/leftmenu/style.min.css?1776298546490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/bitrix/templates/eco/components/bitrix/menu/leftmenu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/bitrix/templates/eco/template_styles.css?178093341651654*/
padding-top: 0;.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.owl-dots button {
    width: 12px;
    height: 12px;
    background: #e1e1e1 !important;
    border-radius: 50%;
}
.owl-dots button.active {background: var(--primary) !important;}
/* Разделы каталога */
.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.catalog-grid .catalog-item {
    display: flex;
    background: var(--litegrey);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    width: calc(20% - 13px);
}
.catalog-grid .catalog-item .catalog-item__title {
    display: block;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
    color: var(--black);
    font-size: 16px;
}
.catalog-section__footer {
    display: flex;
    justify-content: center;
}
.catalog-section__footer .btn {width: calc(20% - 13px);}

.section-tree {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.section-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    width: calc(50% - 10px);
}
.section-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.section-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.section-content {
    flex: 1;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--black);
}

.section-title a {
    text-decoration: none;
    color: inherit;
}

.section-title a:hover {
    color: var(--primary);
}

.subsections {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.subsection {
    background: var(--litegrey);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.subsection a {
    text-decoration: none;
    color: var(--text);
}

.subsection a:hover {
    color: var(--primary);
}

.section-count {
    color: var(--grey);
    font-size: 12px;
    margin-left: 5px;
}
.catalog_section_description, .catalog_section_description p, .catalog_section_description li, .catalog_section_description div {line-height: 1.5;}
.section_count_h1 {
	color: var(--grey);
    font-weight: 400;
    font-size: 15px;
    display: flex;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0px 12px;
    line-height: 1;
    height: 29px;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}
h1.page_title-h1 {
	display: flex;
    align-items: flex-end;
    gap: 15px;
}
.catalog_section_flex {
	display: flex;
	gap: 30px;
}
.catalog_section_left {width: calc(20% - 8px);}
.catalog_section_right {width: calc(80% - 22px);}
.mod_nav_string {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}
.mod_nav_string a, .mod_nav_string span {
    color: var(--text);
    border: 1px solid #e8e8e8;
    width: 42px;
    height: 47px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}
.mod_nav_string a:hover {
	color: var(--primary);
	border-color: var(--primary);
}
.mod_nav_string span.current {
	background: var(--primary);
    color: var(--white);
    font-weight: bold;
    border-color: var(--primary);
}
.mod_nav_string svg {
    width: 16px;
    height: 16px;
	fill: var(--text);
}
.mod_nav_string a:hover svg {fill: var(--primary);}
.nav_begin svg {transform: rotate(180deg);}
.load-more-wrapper_mod_small {margin-bottom: 40px;}
h1.page_title-h1 {align-items: flex-start;}
h1.page_title-h1 span {
	display: block;
    width: max-content;
    max-width: calc(100% - 245px);
}
h1.page_title-h1 span.section_count_h1 {
	min-width: max-content;
    margin-top: 5px;
	margin-bottom: 0px;
	display: flex;
}
.element_left_menu {width: 300px;}
.element_right_info {width: calc(100% - 330px);}
.element_one_flex {
	display: flex;
    gap: 30px;
}
/* левое меню */
/* Контейнер с флексом */
.element_one_flex {
    display: flex;
    gap: 30px;
}

.element_left_menu {
    width: 300px;
    flex-shrink: 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    position: relative;
}

.element_right_info {
    width: calc(100% - 330px);
}

/* Левое меню каталога */
.section-tree_menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Элемент меню (родительский раздел) */
.section-item_menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.section-item_menu:first-child {border-radius: 10px 10px 0 0;}
.section-item_menu:last-child {
	border-bottom: none;
    border-radius: 0px 0px 10px 10px;
}
.section-item_menu:hover {
    border-color: var(--primary, #1e88e5);
    background: #fafafa;
}

/* Активное состояние (открытый раздел) */
.section-item_menu.active {
    border-color: var(--primary, #1e88e5);
    background: #f0f7ff;
}

/* Левая часть - картинка */
.section-image_menu {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.section-image_menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Правая часть - контент */
.section-content_menu {
    flex: 1;
    min-width: 0;
}

/* Заголовок раздела */
.section-title_menu {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 6px;
}

.section-title_menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text, #333);
    text-decoration: none;
    transition: color 0.2s ease;
}

.section-title_menu a:hover {
    color: var(--primary, #1e88e5);
}

.section-count_menu {
    font-size: 11px;
    color: var(--grey, #888);
    font-weight: normal;
}

/* Стрелка для индикатора раскрытия */
.section-item_menu.has-children .section-title_menu {
    position: relative;
    padding-right: 18px;
}

.section-item_menu.has-children .section-title_menu::after {
    content: '→';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--grey, #888);
    transition: transform 0.2s ease;
}

.section-item_menu.has-children.active .section-title_menu::after {
    transform: translateY(-50%) rotate(90deg);
    color: var(--primary, #1e88e5);
}

/* Подразделы (выезжающее меню справа) */
.subsections_menu {
    position: absolute;
    left: 298px;
    top: 0;
    min-width: 290px;
    max-width: 320px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 0;
    height: 100%;
}
.section-item_menu:hover .subsections_menu {display: flex;}

/* Стрелка подсказки */
.subsections_menu::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transform: rotate(45deg);
    z-index: -1;
}

/* Элемент подраздела */
.subsection_menu {
    padding: 8px 16px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
}

.subsection_menu:hover {
    background: #f5f5f5;
}

.subsection_menu a {
    font-size: 14px;
    color: var(--text, #666);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    font-weight: 600;
    padding: 10px 0 10px 10px;
}

.subsection_menu a:hover {
    color: var(--primary, #1e88e5);
}

.subsection_menu .section-count_menu {
    font-size: 12px;
    margin-left: 6px;
    color: #bbb;
}

/* Адаптивность */
@media (max-width: 992px) {
    .element_left_menu {
        width: 260px;
    }
    
    .element_right_info {
        width: calc(100% - 290px);
    }
    
    .subsections_menu {
        left: calc(260px + 30px + 12px);
    }
    
    .section-image_menu {
        width: 36px;
        height: 36px;
    }
    
    .section-title_menu a {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .element_one_flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .element_left_menu {
        width: 100%;
    }
    
    .element_right_info {
        width: 100%;
    }
    
    .subsections_menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 20px;
        margin-top: 8px;
        background: #f9f9f9;
        border-radius: 8px;
    }
    
    .subsections_menu::before {
        display: none;
    }
    
    .section-item_menu.has-children .section-title_menu::after {
        content: '↓';
    }
    
    .section-item_menu.has-children.active .section-title_menu::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .section-item_menu {
        padding: 8px 10px;
        gap: 10px;
    }
    
    .section-image_menu {
        width: 32px;
        height: 32px;
    }
    
    .section-title_menu a {
        font-size: 12px;
    }
    
    .subsection_menu {
        padding: 6px 12px;
    }
    
    .subsection_menu a {
        font-size: 12px;
    }
}
.site-header .container {position: relative;}
.catalog_menu_top {
	position: absolute;
    box-shadow: 1px 5px 6px 0px rgba(0, 0, 0, 0.3);
    top: 155px;
    left: 0;
    z-index: 199;
    background: var(--white);
    padding: 30px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    border-radius: 12px;
	display: none;
}
.catalog_menu_top .section-item {
    display: flex;
    gap: 20px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: #fff;
    width: calc(50% - 10px);
}
.catalog_menu_top .section-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    border-radius: 50%;
    background: #f9f9f9;
}
.catalog_menu_top .subsection {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
}
.catalog_menu_top .subsections {
    display: flex;
    gap: 9px;
    margin-top: 13px;
    flex-direction: column;
}
.catalog_view {
	display: flex;
    align-items: center;
    gap: 5px;
}
.catalog_view a {
    display: block;
    padding: 3px 14px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
}
.catalog_view a.active {
	border-color: var(--primary);
	background-color: var(--primary);
}
.catalog_view a svg {
	width: 16px;
	height: 16px;
}
.list_view svg {fill: var(--text);}
.grid_view svg {stroke: var(--text);}
.catalog_view a.active.list_view svg {fill: var(--white);}
.catalog_view a.active.grid_view svg {stroke: var(--white);}
.catalog_sort_left {
	display: flex;
    align-items: flex-start;
    gap: 10px;
}
.catalog-sort {justify-content: space-between;}
.catalog_section_right.view_list .catalog-section {
	display: flex;
    flex-direction: column;
}
.catalog_section_right.view_list .product-card_mod_card_line {
	flex-direction: row;
	gap: 20px;
}
.catalog_section_right.view_list .product-card_mod_card_line .product-image_mod_card_line {
	width: 140px;
    height: 140px;
}
.catalog_section_right.view_list .product-card_mod_card_line .product-actions_mod_card_line {width: 180px;}
.mobile_photo_slider {display: none !important;}
/* товар в корзине */
/* Попап корзины */
.cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cart-popup-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 450px;
    max-width: 90%;
    overflow: hidden;
    z-index: 1001;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--primary);
    color: #fff;
}

.cart-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
	color: var(--white);
}

.cart-popup-close {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.cart-popup-body {
    padding: 20px;
}

.cart-popup-product {
    display: flex;
    gap: 15px;
}

.cart-popup-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-popup-info {
    flex: 1;
}

.cart-popup-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.cart-popup-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.cart-popup-quantity {
    font-size: 13px;
    color: #888;
}

.cart-popup-footer {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #e8e8e8;
}

.cart-popup-continue,
.cart-popup-checkout {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.cart-popup-continue {
    background: #f5f5f5;
    color: #333;
    border: none;
}

.cart-popup-continue:hover {
    background: #e8e8e8;
}

.cart-popup-checkout {
    background: var(--primary);
    color: #fff;
}

.cart-popup-checkout:hover {
    background: #3a8be0;
}
.personal-content {
	font-size: 16px;
    line-height: 1.4;
}
.personal-layout {padding-top: 0;}
.left_part {width: 300px;}
.left_part > ul {
	display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    position: relative;
}
.left_part > ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0px;
    transition: all 0.2s ease;
    cursor: pointer;
	overflow: hidden;
}
.left_part > ul li:first-child {border-radius: 10px 10px 0 0;}
.left_part > ul li:last-child {border-radius: 0px 0px 10px 10px;}
.left_part > ul li a {
    color: var(--text);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 15px 20px;
}
.left_part > ul li a:hover, .left_part > ul li a.selected {background: var(--litegrey);}
.right_part {
    width: calc(100% - 330px);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
}
.page_menu_flex {
	display: flex;
	gap: 30px;
}
.mainAboutMap {
	margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
}
/* Блок контактов */
.cont_list {
    display: flex;
    gap: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px;
}

.cont_one {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cont_left {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    text-transform: none;
}

.cont_right {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

/* Телефоны */
.cont_right.phones a {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary, #57A5FF);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.cont_right.phones a:hover {
    color: #3a8be0;
}

.cont_right.phones span {
    display: block;
    font-size: 12px;
    color: #888;
}

/* Email */
.cont_right a[href^="mailto"] {
    color: var(--primary, #57A5FF);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cont_right a[href^="mailto"]:hover {
    text-decoration: underline;
    color: #3a8be0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .cont_list {
        gap: 20px;
        padding: 25px;
    }
    
    .cont_right.phones a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cont_list {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .cont_one {
        text-align: center;
    }
    
    .cont_left {
        text-align: center;
    }
    
    .cont_right.phones a {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .cont_list {
        padding: 15px;
        gap: 20px;
    }
    
    .cont_right.phones a {
        font-size: 18px;
    }
    
    .cont_right {
        font-size: 14px;
    }
}
.cards-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 12px;
  flex: 1;
  cursor: pointer;
}

.card--default {
  background: var(--primary);
  color: #fff;
}

.card--active {
  background: var(--accent);
  color: var(--primary);
}

.card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.promo-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 340px;
}

.promo-col { position: relative; overflow: hidden; }

.promo-col--photo img { width: 100%; height: 100%; object-fit: cover; }

.promo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.88);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.5;
}

.promo-col--blue {
  background: var(--primary);
  padding: 32px 28px 60px;
}

.promo-col--blue .promo-title { color: #fff; font-size: 22px; font-weight: 500; }
.promo-col--blue .promo-body  { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.65; }

.promo-col--advantages {
  background: #f5f5f5;
  padding: 32px 28px 60px;
}

.promo-col--advantages .promo-title { font-size: 20px; font-weight: 500; }

.adv-list  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.adv-item  { display: flex; gap: 14px; align-items: flex-start; }
.adv-icon  { flex-shrink: 0; width: 32px; height: 32px; color: var(--primary); }
.adv-text  { font-size: 13px; line-height: 1.55; }

.promo-btn {
  position: absolute;
  bottom: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.promo-col--blue .promo-btn       { background: #fff; }
.promo-col--advantages .promo-btn { background: var(--primary); }
blockquote {
	margin-bottom: 20px;
    padding: 20px;
    border-left: 2px solid var(--primary);
    background: var(--litegrey);
    border-radius: 12px;
}
.right_part > img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin-bottom: 20px;
}
.right_part img[align="left"] {
	width: auto;
	max-width: 66%;
    height: auto;
    margin-right: 20px;
    margin-bottom: 15px;
}
.right_part img[align="right"] {
	width: auto;
	max-width: 66%;
    height: auto;
    margin-left: 20px;
    margin-bottom: 15px;
}
.right_part p, .right_part ul, .right_part ol, .right_part div {
	font-size: 16px;
	line-height: 1.4;
	color: var(--text);
	margin-bottom: 20px;
}
.right_part ul, .right_part ol {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}
.right_part li {
	font-size: 16px;
	line-height: 1.4;
	color: var(--text);
	display: flex;
	gap: 15px;
	align-items: center;
}
.right_part li:before {
	content: '';
  	display: block;
  	min-width: 15px;
  	height: 2px;
  	background: var(--primary);
  	border-radius: 5px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0 0px;
    margin-bottom: 0 !important;
}

.advantage-item {
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.advantage-icon svg {
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon svg {
    transform: scale(1.05);
}

.advantage-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a305e;
    margin-bottom: 12px;
}

.advantage-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .advantages-grid {
        gap: 20px;
    }
    
    .advantage-text h3 {
        font-size: 16px;
    }
    
    .advantage-text p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-icon svg {
        width: 56px;
        height: 56px;
    }
}
.our_sets img {max-width: 100%;}
.our_sets a {
    display: block;
    width: calc(25% - 16px);
    background: var(--litegrey);
    padding: 10px;
    border-radius: 12px;
}
.our_sets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
/* Стили для блока услуг */
.services-page-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-page-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary, #57A5FF);
}

.service_left_item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service_left_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-page-item:hover .service_left_item img {
    transform: scale(1.05);
}

.service_right_item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service_right_item a {
    text-decoration: none;
    margin-bottom: 12px;
}

.service_right_item b {
    font-size: 18px;
    font-weight: 600;
    color: var(--text, #333);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.service_right_item a:hover b {
    color: var(--primary, #57A5FF);
}

.service_price_item {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary, #57A5FF);
    margin-bottom: 20px;
}

/* Кнопка заказа услуги */
.order_service {
    margin-top: auto;
    width: 100%;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services-page-list {
        gap: 20px;
    }
    
    .service_right_item b {
        font-size: 16px;
    }
    
    .service_price_item {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-page-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service_right_item {
        padding: 16px;
    }
    
    .service_right_item b {
        font-size: 15px;
    }
    
    .service_price_item {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .services-page-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service_right_item {
        padding: 14px;
    }
    
    .service_right_item b {
        font-size: 14px;
    }
}
/* Страница детальной услуги */
.service_page_detail {
    color: var(--text, #333);
}

/* Детальная картинка */
.detail_picture_service {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
    object-fit: cover;
    max-height: 500px;
    margin-top: 0 !important;
}

/* Блок с ценой и кнопкой */
.res_price_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: var(--litegrey, #e8e8e8);
}

.res_price_btn .service_price_item {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary, #57A5FF);
    margin: 0 !important;
}

/* Контент страницы */
.service_page_detail p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text, #333);
}

.service_page_detail h2,
.service_page_detail h3 {
    color: var(--text, #333);
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.service_page_detail h3 {
    font-size: 22px;
    margin-top: 30px;
}

/* Списки */
.service_page_detail ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service_page_detail li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text, #333);
}

.service_page_detail li::marker {
    color: var(--primary, #57A5FF);
}

/* Изображения внутри контента */
.service_page_detail img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .service_page_detail {
        padding: 15px;
    }
    
    .res_price_btn {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .service_price_item {
        font-size: 28px;
    }
    
    .service_page_detail h2 {
        font-size: 24px;
    }
    
    .service_page_detail h3 {
        font-size: 20px;
    }
    
    .service_page_detail p,
    .service_page_detail li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service_page_detail {
        padding: 12px;
    }
    
    .res_price_btn {
        padding: 12px 16px;
    }
    
    .service_price_item {
        font-size: 24px;
    }
    
    .service_page_detail h2 {
        font-size: 20px;
    }
    
    .service_page_detail h3 {
        font-size: 18px;
    }
}
.res_price_btn .order_service {max-width: 300px;}
.cont_list p, .cont_list div {margin-bottom: 0;}
/* Контейнер формы */
.form-wrapper {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 30px;
}
.map_form_flex .form-wrapper, .map_form_flex .mainAboutMap {
    max-width: calc(50% - 10px);
    width: calc(50% - 10px);
    margin: 0;
}
.map_form_flex .mainAboutMap iframe {height: 100%;}

/* Заголовок формы */
.form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text, #333);
    margin: 0 0 24px 0;
    display: inline-block;
}

/* Группы полей */
.form-group {
    margin-bottom: 15px;
}

/* Метки полей */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text, #333);
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
    margin-left: 4px;
}

.optional {
    color: var(--grey, #888);
    font-weight: normal;
    font-size: 12px;
    margin-left: 6px;
}

/* Поля ввода */
.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-family: inherit;
    color: var(--text, #333);
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary, #57A5FF);
    box-shadow: 0 0 0 3px rgba(87, 165, 255, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Сообщения об ошибках */
.error-message {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Группа чекбокса */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

/* Скрываем стандартный чекбокс */
.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Кастомный чекбокс */
.checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--litegrey, #e8e8e8);
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
}

/* Состояние checked */
.checkbox-input:checked + .checkbox-custom {
    background: #fff;
    border-color: var(--primary, #57A5FF);
    background-image: url(/upload/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* Hover эффект */
.checkbox-label:hover .checkbox-custom {
    border-color: var(--primary, #57A5FF);
}

/* Ошибка для чекбокса */
.checkbox-input.error + .checkbox-custom {
    border-color: #e74c3c;
}

/* Текст чекбокса */
.checkbox-text {
    font-size: 13px;
    color: var(--grey, #666);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--primary, #57A5FF);
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}

/* Сообщение об успехе */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-message svg {
    margin-bottom: 16px;
}

.success-message h3 {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin: 0 0 8px 0;
}

.success-message p {
    font-size: 14px;
    color: var(--grey, #666);
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .form-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 16px;
    }
    
    .form-title {
        font-size: 18px;
    }
    
    .checkbox-text {
        font-size: 12px;
    }
}
.map_form_flex {
    display: flex;
    gap: 20px;
}
.pop_up {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 199;
    display: none;
}
.pop_up.shown {display: flex;}
.close_div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.close_pop {cursor: pointer;}
.inpop {
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.inpop .form-title {
    background: var(--litegrey);
    width: calc(100% + 60px);
    margin: -30px -30px 24px;
    display: block;
    padding: 20px 30px;
}
.close_x {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 26px;
    right: 29px;
}
.close_x:before, .close_x:after {
    content: '';
    width: 2px;
    height: 100%;
    background: var(--text);
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
}
.close_x:before {transform: rotate(45deg);}
.close_x:after {transform: rotate(-45deg);}
.close_x:hover:before, .close_x:hover:after {background: var(--black);}
.quick-order {padding: 0;}
#popup-quick-order {
    padding: 30px 30px 10px;
    border-radius: 12px;
}
#popup-quick-order .fancybox-close-small {
    color: currentColor;
    padding: 7px;
    right: 4px;
    top: 4px;
}
.quick-order__msg {
    margin-bottom: 0;
    height: auto;
}
.service_right_item {
	margin-bottom: 0 !important;
	padding-top: 0 !important;
}
.service_right_item .article_date {
    margin-bottom: 0;
    color: var(--grey);
    font-size: 12px;
    line-height: 1;
}
.service_page_detail .article_date {
    margin-bottom: 15px;
	margin-top: 23px;
    color: var(--grey);
    font-size: 14px;
    line-height: 1;
}
.service_page_detail li p {margin: 0 !important;}
/* Таблица */
.service_page_detail table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: var(--text, #333);
}

/* Заголовки */
.service_page_detail thead tr {
    background: #f8f9fa;
    border-bottom: 2px solid var(--primary, #57A5FF);
}

.service_page_detail th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text, #333);
    font-size: 14px;
}

/* Ячейки */
.service_page_detail td {
    padding: 12px 20px;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: top;
    line-height: 1.5;
}

/* Hover эффект */
.service_page_detail tbody tr:hover {
    background: #f9f9f9;
}

/* Первая колонка (Марка) - жирный шрифт и цвет */
.service_page_detail td:first-child {
    font-weight: 600;
    color: var(--primary, #57A5FF);
}

/* Адаптивность */
@media (max-width: 768px) {
    .service_page_detail th,
    .service_page_detail td {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .service_page_detail th,
    .service_page_detail td {
        padding: 8px 12px;
        font-size: 12px;
    }
}
.service_page_detail blockquote p:last-child, .right_part li p {margin-bottom: 0;}
.search-page > form {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
}
.banner-slider .owl-dots {
    display: flex;
    justify-content: center;
}
.main_page_services  .card__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
}
.main_page_services .card {
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 32px 56px;
    border-radius: 12px;
    flex: 1;
    cursor: pointer;
}
.main_page_services .card:hover {opacity: 0.7;}
.main_page_services .card svg {min-width: 75px;}
.section-title {font-size: 26px;}
.good_tabs {
    display: flex;
    margin-top: 36px;
    gap: 8px;
    align-items: center;
}
.good_tab {
    background: var(--litegrey);
    height: 40px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--text);
    font-size: 16px;
    cursor: pointer;
}
.good_tab.active, .good_tab:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.good_tab_contents {margin-top: 36px;}
.good_tab_content {display: none;}
.good_tab_content.active {display: block;}
.catalog-section-slider .owl-nav {display: none !important;}
.catalog-section-slider.owl-theme .owl-dots .owl-dot span {display: none !important;}
.catalog-section-slider.owl-theme .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.catalog-section-slider.owl-carousel .owl-stage {
    display: flex;
    justify-content: flex-start;
}
.banner_bg_bottom {
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding: 85px 84px;
    display: flex;
    flex-direction: column;
}
.banner_bg_bottom h2 {
    font-weight: 600;
    font-size: 31px;
    line-height: 38px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    max-width: 623px;
}
.banner_bg_bottom p {
    max-width: 623px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0px;
}
.banner_bg_bottom .btn {
    margin-top: 50px;
    width: 236px;
}
.inpop .form-title {line-height: 1.2;}
.count-block__input {border-radius: 0;}
.btn.btn_primary.btn-in-cart {
    background-color: var(--green);
    border-color: var(--green);
}
.product-tab-pane p {
    font-size: 16px;
    line-height: 1.4;
}
.chars-list__name {width: max-content;}
div .alert-success {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 16px !important;
    padding: 15px 20px !important;
    color: var(--text-color) !important;
    margin-bottom: 20px !important;
    font-size: 14px;
}
.chars-list {padding: 0px 26px;}
div .product-props {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-info .btn_transparent {width: 281px;}
.product-tab-pane p, .product-tab-pane ul, .product-tab-pane h2 {
	margin-bottom: 20px;
	margin-top: 0px;
}
.product-tab-pane h2 {font-size: 24px;}    
.product-tab-pane li {
	font-size: 16px;
    line-height: 1.4
	list-style-type: decimal;
}
.product-tab-pane ul li {list-style-type: disc;}
.product-tab-pane ul, .product-tab-pane ol {padding-left: 19px;}
.chars-list__item {border-bottom: none;}
.product-related__slider.owl-carousel .owl-stage {
	display: flex;
    justify-content: flex-start;
}
.product-related__slider.owl-carousel .product-card {height: 100%;}
.element_one_flex {align-items: flex-start;}

/* Контейнер для формы */
.search-form {
    position: relative;
}

/* Блок с результатами */
.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 500px;
    overflow-y: auto;
}

/* Элемент результата */
.search-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.search-item:hover {
    background-color: #f9f9f9;
}

/* Картинка */
.search-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Информация */
.search-item-info {
    flex: 1;
}

/* Название */
.search-item-title {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 16px;
}

/* Цена */
.search-item-price {
    color: var(--primary, #57A5FF);
    font-weight: 700;
    font-size: 18px;
}

/* Загрузка */
.search-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Пусто */
.search-empty {
    text-align: center;
    padding: 20px;
    color: #999;
}

/* окно куки */
.cookie_window {
    background-color: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
	z-index: 1000;
}
.cookie_window .cookie_inner {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.a_more {
    display: flex;
    align-items: center;
    gap: 20px;
}
.a_more a {
    color: var(--primary);
    font-size: 14px;
    line-height: 1;
}
button.hide_cookie {
    font-size: 14px;
    width: 80px;
    background-color: var(--primary);
    height: 37px;
    border: none;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}
button.hide_cookie:hover {background-color: var(--primary) !important;}
@media (max-width: 1300px){
	.cookie_window .cookie_inner {
		height: auto;
  		max-height: none;
	}
}
@media (max-width: 767px){
	.cookie_window .cookie_inner {
		flex-direction: column;
  		align-content: flex-start;
  		justify-content: flex-start;
		padding: 15px;
	}
	.cookie_window .container .a_more {width: 100%;}
}
.cookie_window p {
	margin-bottom: 0;
	font-size: 14px;
}
.cookie_window p a {color: var(--primary);}
.main_company_flex {
	display: flex;
    margin-top: 40px;
    gap: 18px;
    justify-content: space-between;
    align-items: stretch;
}
.main_company_half {
    width: calc(46% - 12px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main_company_four.primary {background: var(--primary);}
.main_company_four.primary, .main_company_four.primary * {color: var(--white);}
.main_company_four.grey {background: #f5f5f5;}
.main_company_four.grey, .main_company_four.grey * {color: var(--text);}
.main_company_half, .main_company_four {
	display: block;
	padding: 32px;
	border-radius: 16px;
	position: relative;
}
.main_company_half_text {
    background: rgba(255, 255, 255, 0.9);
    padding: 34px;
    border-radius: 16px;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #223B71;
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: calc(100% - 64px);
}
.main_company_four {
	width: calc(27% - 12px);
    display: flex;
    padding-bottom: 95px;
    flex-direction: column;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
}
.main_company_four .next_btn_arrow {
	position: absolute;
	bottom: 32px;
	right: 32px;
}
.main_company_four .next_btn_arrow.white rect {fill: var(--white);}
.main_company_four .next_btn_arrow.white path {fill: var(--primary);}
.main_company_four .next_btn_arrow.blue rect {fill: var(--primary);}
.main_company_four .next_btn_arrow.blue path {fill: var(--white);}
.main_company_four:hover .next_btn_arrow {opacity: 0.7;}
.main_company_four h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0px;
	margin-bottom: 36px;
}
.main_company_four ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.main_company_four li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.main_company_four li img {min-width: 36px;}
.main_company_second_flex {
    display: flex;
    align-items: stretch;
    gap: 24px;
}
.main_company_second_left, .main_company_second_right {width: calc(50% - 12px);}
.main_company_second_left {
    padding: 64px;
    border-radius: 16px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main_company_second_left, .main_company_second_left p, .main_company_second_left li, .main_company_second_left div {
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0px;
	color: var(--text);
}
.main_company_second_left h2 {
    color: var(--text);
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: 1px;
}
.main_company_second_left .btn {
    width: 237px;
    height: 48px;
    margin-top: 46px;
}
.video_block {
	cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.main_company_second_right .video_block {height: 100%;}
.video_block video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    object-fit: contain;
    background: #000;
}
.mainAboutMap {position: relative;}
.contacts_outer {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    position: absolute;
    top: 132px;
    right: 132px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.contacts_map_block {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 13px;
}
.contacts_map_block svg {min-width: 16px;}
.contacts_outer_socs {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 13px;
}
.contacts_outer_socs a.email {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
    color: var(--primary);
}
.service_price_item_little {font-size: 18px !important;}

/* Изготовление на заказ */
.section_izgotovlenie h1 {
	font-size: 32px;
    line-height: 1.1;
}
.section_izgotovlenie .main_company_second_left p {
	font-size: 16px;
    line-height: 1.3;
    margin-top: 22px;
}
p.after_title {
	font-size: 16px;
    line-height: 1.3;
}
.section_izgotovlenie .main_company_second_left ul {
    margin-top: 22px;
    display: flex;
    align-items: flex-start;
    gap: 21px;
}
.section_izgotovlenie .main_company_second_left ul li {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.3;
    flex-direction: column;
    width: calc(33.3333% - 14px);
}
.section_izgotovlenie .main_company_second_left ul li svg {
    width: 35px;
    height: 35px;
    min-width: 35px;
	margin-bottom: 8px;
}
.section_izgotovlenie .main_company_second_left button {margin-top: 28px;}
.section_izgotovlenie  .main_company_second_left {padding: 40px;}
.main_company_second_right iframe {
	border: none;
    border-radius: 16px;
    height: 100%;
    object-fit: contain;
}
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 30px;
        }

        /* Блок карточки */
        .material-card {
            background-color: #FFFFFF;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .material-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
        }

        /* Верхняя картинка */
        .card-image {
            width: 100%;
            height: 180px;
            background-color: #F6F6F9; /* #F6F6F9 как запасной фон */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .material-card:hover .card-image img {
            transform: scale(1.02);
        }

        /* Тело карточки */
        .card-content {
            padding: 20px 20px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Заголовок (фирменный синий) */
        .material-title {
			font-size: 18px;
			font-weight: 700;
			color: var(--primary);
			line-height: 1.2;
			margin-bottom: 5px;
		}

        /* Свойства / теги */
        .material-tagline {
            background-color: #F6F6F9;
            padding: 10px 14px;
            border-radius: 16px;
            margin-bottom: 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #1F2A44;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Блок характеристик (синий + желтый) */
        .specs-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }

        .spec-badge {
            background: #F6F6F9;
            border-radius: 40px;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #29488B;
        }

        .spec-badge strong {
            color: #F5C518;
            font-weight: 800;
        }

        .temp-range {
			background: #29488B10;
			border-left: 3px solid #F5C518;
			padding: 8px 5px 8px 12px;
			margin: 10px 0 9px;
			font-weight: 600;
			font-size: 13px;
			color: var(--text);
			line-height: 1.2;
		}

        .temp-range span {
            color: #F5C518;
            font-size: 1.1rem;
        }

        /* Области применения (желтые акценты) */
        .applications {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 12px 0 16px;
        }

        .app-tag {
            background: #F5C51810;
            border: 1px solid #F5C51830;
            border-radius: 40px;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #29488B;
        }

        /* Дополнительное описание (для картона и резиноткани) */
        .extra-description {
            font-size: 0.85rem;
            line-height: 1.45;
            color: #3d3f4b;
            background: #F6F6F9;
            padding: 14px;
            border-radius: 18px;
            margin-top: 8px;
        }

        /* разделитель для красоты */
        .divider-light {
            height: 2px;
            background: #F6F6F9;
            margin: 12px 0 8px;
        }

        .button-touch {
            margin-top: 18px;
            display: inline-block;
            align-self: flex-start;
            background: none;
            border: 1.5px solid #29488B;
            border-radius: 60px;
            padding: 8px 20px;
            font-weight: 600;
            font-size: 0.8rem;
            color: #29488B;
            cursor: default;
            transition: 0.2s;
        }

.return_back {
	    width: 200px;
    margin-bottom: 7px;
    height: 34px;
    padding: 0;
    border: none;
    justify-content: flex-start;
    background: transparent !important;
}
.w100 {width: 100% !important;}
blockquote > p:last-child {margin-bottom: 0;}
.before_after_flex {
    display: flex;
    gap: 20px;
}
.bef_after_block {
    display: flex;
    width: calc(50% - 10px);
    overflow: hidden;
    align-items: stretch;
    background: var(--litegrey);
    padding: 10px 0 0;
    border-radius: 16px;
}
.ba_one {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
.ba_one img {
	width: 100%;
	height: auto;
}
.serts_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.serts_list a {
    display: flex;
    align-items: stretch;
    gap: 19px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #051D36;
}
.serts_list a svg {
    min-width: 45px;
}
.sert_right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 0px;
	margin-bottom: 0 !important;
}
.sert_right .sert_download {
    font-family: Roboto;
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--primary);
}
.right_part img[align="left"] {
	max-width: 61%;
	border-radius: 10px;
}
.pop_up {
	overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
.inpop .form-title {font-size: 18px;}
/* End */
/* /bitrix/templates/eco/css/reset.css?17741563523689 */
/* /bitrix/templates/eco/css/root.css?17762999955904 */
/* /bitrix/templates/eco/css/header.css?17744147202560 */
/* /bitrix/templates/eco/css/banner.css?17741623341622 */
/* /bitrix/templates/eco/css/footer.css?17751531761623 */
/* /bitrix/templates/eco/css/personal.css?177570397412470 */
/* /bitrix/templates/eco/components/bitrix/breadcrumb/breds/style.min.css?1774413258620 */
/* /bitrix/templates/eco/components/bitrix/menu/leftmenu/style.min.css?1776298546490 */
/* /bitrix/templates/eco/template_styles.css?178093341651654 */
