

/* Start:/local/templates/belbaza_custom/css/mobile-product-grid.css?17809519893082*/
/* === Мобильная косметика карточек товара (≤768px) ===
   Сетка делается нативно через col-6 в шаблоне bootstrap_v4 (VARIANT=3).
   Здесь только компактизация контента и фикс горизонтального скролла. */

@media (max-width: 768px) {

  /* Сжимаем gutter ряда */
  .row[data-entity="items-row"] {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
  .row[data-entity="items-row"] > [class*="col-"] {
    padding-left: 4px !important;
    padding-right: 4px !important;
    margin-bottom: 8px !important;
  }

  /* Внутренний контейнер карточки */
  .product-item-container {
    padding: 6px !important;
    margin-bottom: 0 !important;
    height: 100%;
  }

  /* Картинка */
  .product-item-image-wrapper {
    margin-bottom: 6px !important;
  }
  .product-item-image-wrapper img,
  .product-item-image-original {
    max-height: 140px !important;
    object-fit: contain !important;
  }

  /* Заголовок */
  .product-item-title {
    font-size: 13px !important;
    line-height: 1.25 !important;
    margin: 4px 0 !important;
    min-height: auto !important;
  }
  .product-item-title a {
    font-size: 13px !important;
  }

  /* На мобильных принудительно ПОКАЗЫВАЕМ нужные info-блоки (счётчик количества,
     блок свойств и блок кнопок), которые в стандартной теме скрыты до hover. */
  .product-item-info-container.product-item-hidden[data-entity="quantity-block"],
  .product-item-info-container.product-item-hidden[data-entity="props-block"],
  .product-item-info-container.product-item-hidden[data-entity="buttons-block"] {
    display: block !important;
    opacity: 1 !important;
  }

  /* Остальные пустые info-блоки (артикул, рейтинг, наличие) скрываем —
     они дают пустой зазор между картинкой и ценой. */
  .product-item-info-container.product-item-hidden:not([data-entity="quantity-block"]):not([data-entity="props-block"]):not([data-entity="buttons-block"]) {
    display: none !important;
  }

  /* Цена */
  .product-item-price-current {
    font-size: 14px !important;
    font-weight: 600 !important;
  }
  .product-item-info-container.product-item-price-container {
    margin: 4px 0 !important;
    padding: 0 !important;
  }

  /* Кнопка */
  .product-item-button-container {
    padding: 4px 0 0 0 !important;
  }
  .product-item-button-container .btn {
    width: 100% !important;
    font-size: 12px !important;
    padding: 6px 8px !important;
    white-space: normal !important;
  }

  /* Защита от горизонтального скролла */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* End */


/* Start:/local/templates/belbaza_custom/components/bitrix/catalog.section/popular_carousel/style.css?17809519896777*/
/* Управление видимостью desktop/mobile версий */
.popular-desktop-only {
	display: block;
}

.popular-mobile-only {
	display: none;
}

@media (max-width: 767px) {
	.popular-desktop-only {
		display: none;
	}
	
	.popular-mobile-only {
		display: block;
	}
}

/* Секция "Популярное" (без рамки, только контейнер) */
.popular-carousel-section {
	margin-bottom: 24px;
}

/* Заголовок "Популярное" (вне рамки) */
.popular-carousel-title {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

/* Рамка вокруг карусели (БЕЗ заголовка) */
.popular-carousel-frame {
	border: 1px solid #e22b2b;
	border-radius: 8px;
	padding: 8px 18px; /* Минимальные отступы сверху/снизу, нормальные по бокам */
	position: relative; /* для абсолютно позиционированных стрелок Swiper */
	min-height: 320px; /* резервируем место под карусель, чтобы избежать прыжка лейаута */
}

.popular-carousel-container {
	position: relative;
}

.popular-carousel-swiper {
	overflow: hidden;
	padding: 0 50px; /* Отступы для стрелок на desktop */
}

/* Стрелки навигации */
.popular-carousel-prev,
.popular-carousel-next {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.popular-carousel-prev:hover,
.popular-carousel-next:hover {
	background: #f8f9fa;
	border-color: #ccc;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.popular-carousel-prev::after,
.popular-carousel-next::after {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

/* Скрываем стрелки на планшетах и мобильных */
@media (max-width: 1023px) {
	.popular-carousel-prev,
	.popular-carousel-next {
		display: none !important;
	}
	
	.popular-carousel-swiper {
		padding: 0; /* Убираем отступы на мобильных */
	}
}

/* Адаптив для заголовка */
@media (max-width: 767px) {
	.popular-carousel-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}
}

/* Карточки товаров в слайдах */
.popular-carousel-swiper .swiper-slide {
	height: auto;
	display: flex;
}

.popular-carousel-swiper .product-item-small-card {
	width: 100%;
	height: 100%;
}

/* Наследуем стили карточек из bootstrap_v4 */
.popular-carousel-swiper .product-item-small-card .product-item {
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* ========================================
   АДАПТАЦИЯ ПОД МОБИЛЬНЫЙ СТИЛЬ
   ======================================== */

/* Уменьшаем внутренние отступы карточек */
.popular-carousel-swiper .product-item {
	padding: 8px !important;
}

/* Уменьшаем отступы у изображения */
.popular-carousel-swiper .product-item-image-wrapper {
	margin-bottom: 8px !important;
}

/* Уменьшаем отступы у заголовка */
.popular-carousel-swiper .product-item-title {
	margin-bottom: 6px !important;
	font-size: 0.9rem !important;
	line-height: 1.2 !important;
}

/* ВСЕГДА показываем блоки цены и кнопок (как в мобильной версии) */
.popular-carousel-swiper .product-item-hidden {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Уменьшаем отступы у блоков с ценой и кнопками */
.popular-carousel-swiper .product-item-info-container {
	margin-bottom: 6px !important;
}

/* Уменьшаем размер цены */
.popular-carousel-swiper .product-item-price-current {
	font-size: 1rem !important;
}

/* Уменьшаем размер старой цены */
.popular-carousel-swiper .product-item-price-old {
	font-size: 0.85rem !important;
}

/* Уменьшаем размер кнопок */
.popular-carousel-swiper .btn {
	padding: 6px 12px !important;
	font-size: 0.85rem !important;
}

/* Уменьшаем отступы у блока количества */
.popular-carousel-swiper .product-item-amount {
	margin-bottom: 6px !important;
}

/* Компактный вид для поля количества */
.popular-carousel-swiper .product-item-amount-field-container {
	height: 32px !important;
}

.popular-carousel-swiper .product-item-amount-field {
	font-size: 0.9rem !important;
	padding: 4px 8px !important;
}

.popular-carousel-swiper .product-item-amount-field-btn-minus,
.popular-carousel-swiper .product-item-amount-field-btn-plus {
	width: 28px !important;
	height: 28px !important;
	font-size: 1rem !important;
}

/* Скрываем артикул и производителя в карусели */
.popular-carousel-swiper .product-item-info-container[data-entity="props-block"] {
	display: none !important;
}

/* Скрываем блок свойств товара */
.popular-carousel-swiper .product-item-properties {
	display: none !important;
}

/* ========================================
   FOUC FIX: скрываем wrapper до инициализации Swiper
   ======================================== */

/* Скрываем слайдер до инициализации Swiper, чтобы не было FOUC */
.popular-carousel-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.popular-carousel-swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 auto;
    width: calc(25% - 15px); /* desktop default — 4 слайда */
    margin-right: 20px;
}

@media (max-width: 1023px) {
    .popular-carousel-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(33.333% - 10px);
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .popular-carousel-swiper:not(.swiper-initialized) .swiper-slide {
        width: calc(50% - 5px);
        margin-right: 10px;
    }
}

/* Дополнительная страховка: пока Swiper не инициализирован,
   ограничиваем высоту контейнера, чтобы не было «прыжка» по вертикали */
.popular-carousel-swiper:not(.swiper-initialized) {
    visibility: hidden;
}
.popular-carousel-swiper.swiper-initialized {
    visibility: visible;
}

/* End */


/* Start:/local/templates/belbaza_custom/css/home_actions.css?17809519893041*/
/* Стили для блока "Акции недели" */

/* Бейдж скидки */
.bb-actions__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #E22B2B;
    color: #fff;
    font-family: Manrope, system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    padding: 5px 9px;
    border-radius: 12px;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Родительские контейнеры для бейджа */
.bb-actions .product-item-container,
.bb-actions .product-item,
.bb-actions .product-item-image-wrapper {
    overflow: visible !important;
    position: relative;
}
.bb-actions .product-item-image-wrapper {
    z-index: 1;
}

.bb-actions__badge-text {
    display: block;
}

/* Старая цена */
.bb-actions__old-price {
    display: block;
    color: #8a7d72;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 2px;
}

/* Адаптивность бейджа */
@media (max-width: 767px) {
    .bb-actions__badge {
        top: 5px;
        left: 5px;
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 12px;
    }
}

/* Дополнительные стили для карточек в сетке */
.actions-week-grid .product-item {
    position: relative;
    transition: box-shadow 0.3s ease;
}

.actions-week-grid .product-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Убираем стандартные бейджи Битрикса, если они конфликтуют */
.actions-week-grid .product-item-label {
    z-index: 9;
}

/* Заголовок блока */
.actions-week-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    position: relative;
    padding-left: 16px;
}

.actions-week-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 24px;
    background-color: #e22b2b;
    border-radius: 2px;
}

/* Рамка блока */
.actions-week-frame {
    border: 1px solid #e22b2b;
    border-radius: 8px;
    padding: 8px 18px;
    background-color: #fff;
}

/* Сетка товаров */
.actions-week-grid .row {
    margin-left: -10px;
    margin-right: -10px;
}

.actions-week-grid .col-6,
.actions-week-grid .col-md-3 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
    .actions-week-title {
        font-size: 1.5rem;
        padding-left: 12px;
    }
    
    .actions-week-title::before {
        width: 6px;
        height: 20px;
    }
    
    .actions-week-frame {
        padding: 8px 12px;
    }
    
    .actions-week-grid .col-6 {
        margin-bottom: 15px;
    }
}
/* End */


/* Start:/local/templates/belbaza_custom/css/header-footer.css?178095198931215*/
/* Шрифт Onest для текстового логотипа.
   Подключается с Google Fonts с подмножеством латиницы и кириллицы. */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@700&display=swap');

/* belbaza_custom — стили шапки и подвала.
   Подключается из header.php через SetAdditionalCSS.
   Не трогать /www/bitrix/. */
:root {
    --bb-red:         #E22B2B;
    --bb-red-hover:   #C21F1F;
    --bb-cream:       #FBF7F0;
    --bb-cream-80:    #FBF7F0CC;
    --bb-white:       #FFFFFF;
    --bb-brown:       #2A1F1A;
    --bb-text:        #2A1F1A;
    --bb-muted:       #6B5E57;
    --bb-radius-card: 16px;
    --bb-radius-pill: 999px;
    --bb-shadow-soft: 0 6px 20px rgba(42, 31, 26, .08);
}
/* Правила шапки и подвала будут добавляться следующими шагами. */

/* ===== ПОДВАЛ — Шаг 1: перекраска ===== */

/* Основная секция подвала: переопределяем bg-dark/bx-footer-bg */
.bx-footer .bx-footer-section.bx-footer-bg,
.bx-footer .bx-footer-section.bg-dark {
    background-color: var(--bb-brown) !important;
    color: var(--bb-cream);
}

/* Заголовки колонок */
.bx-footer .bx-footer-section .bx-block-title,
.bx-footer .bx-footer-section h4.bx-block-title {
    color: var(--bb-cream) !important;
}

/* Любой текст и иконки в подвале */
.bx-footer .bx-footer-section,
.bx-footer .bx-footer-section .text-white,
.bx-footer .bx-footer-section .text-light,
.bx-footer .bx-footer-section i {
    color: var(--bb-cream-80) !important;
}

/* Ссылки в меню подвала */
.bx-footer .bx-footer-section a {
    color: var(--bb-cream-80);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    background-image: linear-gradient(var(--bb-red), var(--bb-red));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;
    transition: color .15s ease, background-size .25s ease;
}
.bx-footer .bx-footer-section a:hover,
.bx-footer .bx-footer-section a:focus {
    color: var(--bb-cream);
    text-decoration: none;
    background-size: 100% 1px;
}

/* В правой колонке (логотип, телефон, расписание) подчёркивание
   визуально лишнее — отключаем, оставляем только смену цвета */
.bx-footer .bx-footer-section .bx-footer-logo,
.bx-footer .bx-footer-section .bx-footer-logo:hover {
    background-image: none !important;
    padding-bottom: 0;
}

/* В нижней узкой полосе копирайта тоже без подчёркивания */
.bx-footer .bx-footer-section.bg-secondary a {
    background-image: none !important;
    padding-bottom: 0;
}

/* Серая плашка-обёртка вокруг формы рассылки (inline style background:#eaeaeb) */
.bx-footer .bx-footer-section [style*="#eaeaeb"],
.bx-footer .bx-footer-section [style*="eaeaeb"] {
    background: transparent !important;
    padding: 0 !important;
}

/* Форма рассылки: поле ввода */
.bx-footer .bx-footer-section input[type="text"],
.bx-footer .bx-footer-section input[type="email"] {
    background: var(--bb-cream-80);
    color: var(--bb-text);
    border: 1px solid rgba(251, 247, 240, .25);
    border-radius: var(--bb-radius-pill);
    padding: 10px 18px;
    outline: none;
}
.bx-footer .bx-footer-section input[type="text"]::placeholder,
.bx-footer .bx-footer-section input[type="email"]::placeholder {
    color: var(--bb-brown);
    opacity: .8;
}

/* Кнопка «Подписаться» — стилизуем как «В корзину» */
.bx-footer .bx-footer-section button,
.bx-footer .bx-footer-section input[type="submit"],
.bx-footer .bx-footer-section .btn,
.bx-footer .bx-footer-section .btn-primary,
.bx-footer .bx-footer-section .btn-default {
    background-color: var(--bb-red) !important;
    border: none !important;
    color: var(--bb-white) !important;
    border-radius: var(--bb-radius-pill) !important;
    padding: 10px 44px !important;
    min-width: 220px;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: none !important;
    transition: background-color .15s ease;
}
.bx-footer .bx-footer-section button:hover,
.bx-footer .bx-footer-section input[type="submit"]:hover,
.bx-footer .bx-footer-section .btn:hover,
.bx-footer .bx-footer-section .btn-primary:hover,
.bx-footer .bx-footer-section .btn-default:hover {
    background-color: var(--bb-red-hover) !important;
    color: var(--bb-white) !important;
}

/* Иконки соцсетей (если попадут сюда позднее) — сохранить читаемость */
.bx-footer .bx-footer-section .fa {
    color: var(--bb-cream);
}

/* Нижняя тонкая полоса (копирайт + «Наверх») — была bg-secondary */
.bx-footer .bx-footer-section.bg-secondary {
    background-color: #1F1714 !important;  /* чуть темнее основного коричневого */
    color: var(--bb-cream) !important;
}
.bx-footer .bx-footer-section.bg-secondary a,
.bx-footer .bx-footer-section.bg-secondary .text-white {
    color: var(--bb-cream) !important;
}
.bx-footer .bx-footer-section.bg-secondary a:hover {
    color: var(--bb-red) !important;
}



/* Квадрат с конвертом справа от «Подписаться» — красим под цвет
   основной кнопки «Подписаться». */
html body .bx-footer .btn-subscribe::before,
html body.bx-theme-red .bx-footer .btn-subscribe::before,
html body .btn-subscribe::before,
html body.bx-theme-red .btn-subscribe::before {
    background-color: var(--bb-red) !important;
}

html body .bx-footer .btn-subscribe:hover::before,
html body.bx-theme-red .bx-footer .btn-subscribe:hover::before {
    background-color: var(--bb-red-hover) !important;
}
/* ===== /ПОДВАЛ — Шаг 1 ===== */

/* ===== ШАПКА — Шаг 3: меню категорий (bx-top-nav) ===== */

/* Внешняя обёртка строки меню в header.php — перебиваем фон,
   который тема задаёт на этом уровне. Селектор на .row.mb-4.d-none.d-md-block
   слишком широкий, поэтому идём через nav.bx-top-nav-container. */
/* Контейнер меню — белый фон + две сплошные линии #FBF7F0,
   растянутые на всю ширину экрана через ::before/::after с
   отрицательными margin'ами, чтобы выйти за .container. */
.bx-header .bx-top-nav-container,
.bx-header nav.bx-top-nav-container {
    background-color: var(--bb-white) !important;
    background-image: none !important;
    border-top: none !important;
    border-bottom: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative;
}

/* Верхняя и нижняя линии — во всю ширину viewport */
.bx-header .bx-top-nav-container::before,
.bx-header .bx-top-nav-container::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 2px;
    background-color: var(--bb-cream);   /* #FBF7F0 */
    pointer-events: none;
}
.bx-header .bx-top-nav-container::before { top: 0; }
.bx-header .bx-top-nav-container::after  { bottom: 0; }

/* Список первого уровня */
.bx-header .bx-top-nav-container ul.bx-nav-1-lvl {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: transparent !important;
}

/* Пункт первого уровня */
.bx-header .bx-top-nav-container li.bx-nav-1-lvl,
.bx-header .bx-top-nav-container ul.bx-nav-1-lvl > li {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    list-style: none;
}

/* Ссылка первого уровня */
.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl > a {
    display: inline-flex;
    align-items: center;
    color: var(--bb-text) !important;
    background: transparent !important;
    text-transform: none !important;       /* убираем UPPERCASE */
    text-decoration: none !important;
    font-weight: 500;
    font-size: 15px;
    line-height: 36px;
    padding: 0 16px !important;
    min-height: 36px;
    position: relative;
    transition: color .15s ease;
}

/* Текст ссылки и стрелка — наследуют цвет */
.bx-header .bx-top-nav-container .bx-nav-1-lvl-link-text {
    text-transform: none !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: inline-flex;
    align-items: center;
}

.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link > *,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl > a > * {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.bx-header .bx-top-nav-container .bx-nav-arrow,
.bx-header .bx-top-nav-container .bx-nav-arrow::before {
    color: currentColor !important;
    opacity: .7;
    margin-left: 6px;
    transition: opacity .15s ease;
}

/* Подчёркивание на hover — снизу, плавно слева направо */
.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link::after,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl > a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background-color: var(--bb-red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

/* Hover/active — текст красный, стрелка ярче, подчёркивание появляется */
.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link:hover,
.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link:focus,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl:hover > a,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.bx-nav-active > a,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.active > a,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.bx-nav-hover > a {
    color: var(--bb-red) !important;
    background: transparent !important;
}
.bx-header .bx-top-nav-container li.bx-nav-1-lvl:hover > a .bx-nav-arrow,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.bx-nav-hover > a .bx-nav-arrow {
    opacity: 1;
}
.bx-header .bx-top-nav-container a.bx-nav-1-lvl-link:hover::after,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl:hover > a::after,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.bx-nav-active > a::after,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.active > a::after,
.bx-header .bx-top-nav-container li.bx-nav-1-lvl.bx-nav-hover > a::after {
    transform: scaleX(1);
}

/* Контейнер выпадающего подменю «Колбасы» (bx-nav-2-lvl-container) */
.bx-header .bx-top-nav-container .bx-nav-2-lvl-container,
.bx-header .bx-top-nav-container ul.bx-nav-2-lvl,
.bx-header .bx-top-nav-container .bx-nav-drop-block {
    background-color: var(--bb-white) !important;
    border: 1px solid var(--bb-cream-80) !important;
    border-radius: var(--bb-radius-card) !important;
    box-shadow: var(--bb-shadow-soft) !important;
    padding: 8px 0 !important;
    margin-top: 0 !important;
}

/* Пункты второго уровня */
.bx-header .bx-top-nav-container .bx-nav-2-lvl,
.bx-header .bx-top-nav-container ul.bx-nav-2-lvl > li {
    background: transparent !important;
    border: none !important;
    list-style: none;
}
.bx-header .bx-top-nav-container a.bx-nav-2-lvl-link,
.bx-header .bx-top-nav-container .bx-nav-2-lvl > a {
    display: block;
    color: var(--bb-text) !important;
    background: transparent !important;
    padding: 10px 18px !important;
    font-size: 14px;
    text-transform: none !important;
    text-decoration: none !important;
    transition: background-color .12s ease, color .12s ease;
}
.bx-header .bx-top-nav-container a.bx-nav-2-lvl-link:hover,
.bx-header .bx-top-nav-container .bx-nav-2-lvl:hover > a,
.bx-header .bx-top-nav-container .bx-nav-2-lvl.bx-nav-hover > a {
    background-color: var(--bb-cream) !important;
    color: var(--bb-red) !important;
}

/* Внешний row, на котором тема могла повесить красный фон —
   страхуемся (он внутри header.php у нас просто .row.mb-4). */
.bx-header > .bx-header-section .row.mb-4.d-none.d-md-block {
    background-color: transparent !important;
}

/* Внешний row, в который header.php заворачивает компонент меню,
   по умолчанию имеет mb-4 (1.5rem) и заметный mb. Сжимаем. */
.bx-header > .bx-header-section .row.mb-4.d-none.d-md-block {
    margin-bottom: 0 !important;
}
.bx-header > .bx-header-section .row.mb-4.d-none.d-md-block > .col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Внутренний контейнер навигации Bitrix (cont_catalog_menu_*) часто
   имеет padding/margin от темы — гасим. */
.bx-header .bx-top-nav-container > nav,
.bx-header .bx-top-nav-container .bx-top-nav-bx,
.bx-header .bx-top-nav-container > div {
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== /ШАПКА — Шаг 3: меню категорий (bx-top-nav) ===== */

/* ===== ШАПКА — Шаг 4: верхняя инфо-строка (bb-topbar) ===== */

.bx-header .bb-topbar {
    background-color: var(--bb-cream);
    color: var(--bb-text);
    font-size: 13px;
    line-height: 1.2;
}
.bx-header .bb-topbar a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease;
}
.bx-header .bb-topbar a:hover,
.bx-header .bb-topbar a:focus {
    color: var(--bb-red);
    text-decoration: none;
}
.bx-header .bb-topbar__item .bb-topbar__email a:hover,
.bx-header .bb-topbar__item .bb-topbar__email a:focus {
    color: var(--bb-red);
}

.bx-header .bb-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
    padding: 6px 0;
}

.bx-header .bb-topbar__left,
.bx-header .bb-topbar__right {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.bx-header .bb-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.bx-header .bb-topbar__icon {
    flex: 0 0 auto;
    color: currentColor;
    opacity: .85;
}

/* Внутренние теги, приходящие из IncludeFile, наследуют цвет/шрифт */
.bx-header .bb-topbar__item a,
.bx-header .bb-topbar__item .bb-topbar__email a {
    color: inherit;
}

/* Тонкий разделитель между телефоном и e-mail */
.bx-header .bb-topbar__sep {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--bb-text);
    opacity: .2;
}

/* Слот под иконки приложений (пока пуст) */
.bx-header .bb-topbar__apps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    min-height: 14px;
}
.bx-header .bb-topbar__apps:empty {
    display: none;
}

/* На очень узких десктопах (md, ~768–991) можно немного ужать */
@media (max-width: 991.98px) {
    .bx-header .bb-topbar {
        font-size: 12.5px;
    }
    .bx-header .bb-topbar__left,
    .bx-header .bb-topbar__right {
        gap: 10px;
    }
}

/* ===== /ШАПКА — Шаг 4: верхняя инфо-строка (bb-topbar) ===== */

/* ===== ШАПКА — Шаг 5: поиск в центре главной строки ===== */

/* Колонка с поиском занимает всё свободное место между лого и корзиной */
.bx-header .bx-header-search {
    display: flex;
    align-items: center;
    min-width: 0;       /* чтобы flex-дочка могла сжиматься */
    flex: 1 1 0%;
    order: 2;                    /* между .bx-header-logo (order:1)
                                    и .bx-header-personal (order:3) */
}

/* Сам компонент поиска внутри колонки растягивается на всю ширину */
.bx-header .bx-header-search > div,
.bx-header .bx-header-search form,
.bx-header .bx-header-search .bx-input-group,
.bx-header .bx-header-search .input-group,
.bx-header .bx-header-search #title-search-container,
.bx-header .bx-header-search [id^="title-search-"] {
    width: 100%;
    margin: 0;
}

/* Ограничение ширины формы поиска внутри колонки */
.bx-header .bx-header-search > div,
.bx-header .bx-header-search form {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;        /* центрировать форму внутри широкой колонки */
}

/* Поле ввода поиска — на всю ширину родителя.
   Стилизацию rounded-full / лупы сделаем отдельным шагом 2.2,
   сейчас просто гарантируем растяжение и убираем лишние margin. */
.bx-header .bx-header-search input#title-search-input,
.bx-header .bx-header-search input[name="q"] {
    width: 100% !important;
    max-width: 100%;
}


/* На lg+ дать поиску немного боковых отступов от лого/корзины */
@media (min-width: 992px) {
    .bx-header .bx-header-search {
        padding-left: 24px;
        padding-right: 24px;
    }
}

    /* Форма поиска шаблона bootstrap_v4 рендерит .input-group с
       .input-group-append (кнопка). По умолчанию .input-group имеет
       flex-wrap:wrap, и при сжатии submit-кнопка прыгает на новую
       строку. Принуждаем nowrap и единую линию. */
    .bx-header .bx-header-search .input-group,
    .bx-header .bx-header-search .bx-input-group {
        flex-wrap: nowrap !important;
        align-items: stretch;
        width: 100%;
    }
    .bx-header .bx-header-search .input-group > .form-control,
    .bx-header .bx-header-search .input-group input[type="text"],
    .bx-header .bx-header-search .input-group input[type="search"] {
        flex: 1 1 auto;
        min-width: 0;                /* чтобы input мог сжиматься */
    }
    .bx-header .bx-header-search .input-group-append,
    .bx-header .bx-header-search .input-group-btn {
        flex: 0 0 auto;              /* кнопка фиксированной ширины */
        white-space: nowrap;
    }
    .bx-header .bx-header-search .input-group-append .btn,
    .bx-header .bx-header-search .input-group-btn .btn {
        white-space: nowrap;
    }

/* ===== /ШАПКА — Шаг 5: поиск в центре главной строки ===== */

/* ===== ШАПКА — Шаг 2.2: стилизация поиска ===== */

/* Внешняя обёртка формы шаблона bootstrap_v4 — relative для лупы */
.bx-header .bx-header-search form,
.bx-header .bx-header-search .input-group,
.bx-header .bx-header-search .bx-input-group {
    position: relative;
}

/* Само поле ввода: rounded-full, кремовый фон, отступ слева под лупу */
.bx-header .bx-header-search #title-search-input,
.bx-header .bx-header-search input[name="q"],
.bx-header .bx-header-search input[type="text"],
.bx-header .bx-header-search input[type="search"] {
    width: 100% !important;
    height: 40px;
    padding: 7px 17px 7px 43px !important;   /* слева под лупу */
    background-color: var(--bb-white) !important;
    color: var(--bb-text) !important;
    border: 2px solid var(--bb-cream) !important;
    border-radius: var(--bb-radius-pill) !important;
    box-shadow: none !important;
    font-size: 14px;
    line-height: 1.2;
    outline: none !important;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.bx-header .bx-header-search #title-search-input::placeholder,
.bx-header .bx-header-search input[name="q"]::placeholder {
    color: var(--bb-muted);
    opacity: 1;
}
.bx-header .bx-header-search #title-search-input:focus,
.bx-header .bx-header-search input[name="q"]:focus,
.bx-header .bx-header-search input[type="search"]:focus {
    border-color: var(--bb-red) !important;
    box-shadow: 0 0 0 3px rgba(226, 43, 43, .12) !important;
}

/* Иконка-лупа слева — Lucide-style 1.5px, цвет #2A1F1A.
   Кладём через ::before на ближайший relative-родитель формы. */
.bx-header .bx-header-search form::before,
.bx-header .bx-header-search .input-group::before,
.bx-header .bx-header-search .bx-input-group::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 2;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232A1F1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
}

/* Прячем красную submit-кнопку и любые суффикс-обёртки.
   Шаблон bootstrap_v4 использует input-group-append. */
.bx-header .bx-header-search .input-group-append,
.bx-header .bx-header-search .input-group-btn,
.bx-header .bx-header-search button[type="submit"],
.bx-header .bx-header-search input[type="submit"],
.bx-header .bx-header-search form .btn,
.bx-header .bx-header-search form .btn-primary,
.bx-header .bx-header-search form .btn-default {
    display: none !important;
}

/* После скрытия submit-кнопки input должен занимать всю ширину
   .input-group без правого закругления-обрезки от bootstrap. */
.bx-header .bx-header-search .input-group > .form-control,
.bx-header .bx-header-search .input-group input.form-control {
    border-top-right-radius: var(--bb-radius-pill) !important;
    border-bottom-right-radius: var(--bb-radius-pill) !important;
    border-right: 1px solid transparent !important;
}

/* Контейнер с подсказками автокомплита */
.title-search-result {
    background: var(--bb-white) !important;
    border: 1px solid var(--bb-cream-80) !important;
    border-radius: var(--bb-radius-card) !important;
    box-shadow: var(--bb-shadow-soft) !important;
    overflow: hidden;
    margin-top: 6px;
    padding: 6px 0;
    z-index: 1050 !important;
}
.title-search-result .title-search-item,
.title-search-result a {
    color: var(--bb-text) !important;
    padding: 8px 14px;
    border-radius: 10px;
    transition: background-color .12s ease, color .12s ease;
    text-decoration: none !important;
}
.title-search-result a:hover,
.title-search-result .title-search-selected {
    background-color: var(--bb-cream) !important;
    color: var(--bb-red) !important;
}
.title-search-result .title-search-separator {
    color: var(--bb-muted) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: 8px 14px 4px;
    letter-spacing: .04em;
}

/* На очень узких десктопах (md, ~768–991) поле чуть уже */
@media (max-width: 991.98px) {
    .bx-header .bx-header-search #title-search-input,
    .bx-header .bx-header-search input[name="q"] {
        height: 38px;
        padding-left: 40px !important;
        font-size: 13.5px;
    }
    .bx-header .bx-header-search form::before,
    .bx-header .bx-header-search .input-group::before,
    .bx-header .bx-header-search .bx-input-group::before {
        left: 14px;
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
}

/* ===== /ШАПКА — Шаг 2.2: стилизация поиска ===== */

/* ===== ШАПКА — Шаг 6: текстовый логотип «Бел-База» ===== */

/* Десктопная ссылка-логотип теперь flex-контейнер с картинкой и текстом */
.bx-header .bx-logo-block--with-text {
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
}

/* Обёртка картинки внутри ссылки — чтобы IncludeComponent сохранял
   inline-flex поведение и не ломал высоту */
.bx-header .bx-logo-block__img {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

/* Сам текстовый логотип */
.bx-header .bb-logo-text {
    font-family: 'Onest', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--bb-red);
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: color .15s ease;
}

/* Hover на ссылку-логотип — текст слегка темнее */
.bx-header .bx-logo-block--with-text:hover .bb-logo-text,
.bx-header .bx-logo-block--with-text:focus .bb-logo-text {
    color: var(--bb-red-hover);
}

/* На моб ширине текст не показывается — десктопная ссылка
   сама скрыта классом d-none d-md-flex, поэтому правил
   для @media не требуется. */

/* ===== /ШАПКА — Шаг 6: текстовый логотип «Бел-База» ===== */

/* ===== ШАПКА — Шаг 7.1: мобильные иконки лупа+корзина ===== */

/* Контейнер иконок: абсолютно к правому краю .bx-header-section
   (контейнер шапки получает relative ниже, чтобы absolute зацепился
   за него, а не за ближайшую обёртку). Видим только на моб <768px. */
/* Иконки лупа+корзина: position:fixed к правому верхнему углу
   окна на моб <768px. Это работает независимо от позиционирования
   родителей, transform, флекс-обёрток темы.
   Высота шапки на моб ~55px (тема: .bx-header-logo height 55px),
   поэтому top подбираем визуально по центру с бургером слева. */

/* НИКАКИХ правок .bx-header-logo, .row, .bx-header-section
   больше делать не будем — лого остаётся таким, каким его рисует
   тема, бургер и поиск тоже не трогаем. */
/* На десктопе .bb-mobile-actions скрыт классом d-md-none из Bootstrap. */

/* Сама иконка-кнопка/ссылка: 40x40 кликабельная зона, иконка по центру,
   белый цвет с !important чтобы перебить тему bx-theme-red. */
.bx-header .bb-mobile-icon,
.bx-header .bb-mobile-actions .bb-mobile-icon,
body .bx-header .bb-mobile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 999px;
    color: #FFFFFF !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color .15s ease, color .15s ease;
}

/* Hover/active — кремовый кружок-подсветка, иконка красная */
.bx-header .bb-mobile-icon:hover,
.bx-header .bb-mobile-icon:focus,
.bx-header .bb-mobile-icon:active,
body .bx-header .bb-mobile-icon:hover {
    background-color: var(--bb-cream) !important;
    color: var(--bb-red) !important;
    outline: none;
}

/* SVG-иконки нарисованы линиями (stroke), без заливки.
   Тема могла навесить fill — гасим. Цвет наследуется через currentColor. */
.bx-header .bb-mobile-icon svg,
body .bx-header .bb-mobile-icon svg,
body .bx-header .bb-mobile-icon svg * {
    color: inherit !important;
    stroke: currentColor !important;
    fill: none !important;
    display: block;
    flex: 0 0 auto;
}

/* ===== /ШАПКА — Шаг 7.1: мобильные иконки лупа+корзина ===== */

/* ===== ШАПКА — Шаг 7.2: мобильный выезжающий поиск ===== */

.bb-mobile-search input[type="text"],
.bb-mobile-search input[type="search"],
.bb-mobile-search #title-search-input-mobile {
    width: 100% !important;
    height: 40px;
    padding: 8px 16px !important;
    background-color: var(--bb-cream) !important;
    color: var(--bb-text) !important;
    border: 2px solid var(--bb-cream) !important;
    border-radius: var(--bb-radius-pill) !important;
    box-shadow: none !important;
    font-size: 14px;
    outline: none !important;
}

.bb-mobile-search input:focus {
    border-color: var(--bb-red) !important;
    background-color: var(--bb-white) !important;
}

/* Прячем submit-кнопку и input-group-append шаблона bootstrap_v4 в моб-поиске */
.bb-mobile-search .input-group-append,
.bb-mobile-search .input-group-btn,
.bb-mobile-search button[type="submit"],
.bb-mobile-search form .btn {
    display: none !important;
}

.bb-mobile-search .input-group {
    flex-wrap: nowrap !important;
    width: 100%;
}

/* ===== /ШАПКА — Шаг 7.2: мобильный выезжающий поиск ===== */

/* End */


/* Start:/local/templates/belbaza_custom/css/cart.css?178095198947116*/
/* shop.bel-baza.ru — стили страницы /personal/cart/
   Этап 1.1: каркас, сетка, палитра, крошки, sticky-итог, мобильный бар. */

:root {
    --bb-bg: #FBF7F0;
    --bb-surface: #FFFFFF;
    --bb-beige: #EFE7DA;
    --bb-text: #2A1F1A;
    --bb-muted: #7A6F66;
    --bb-accent: #E22B2B;
    --bb-green: #A9B89A;
    --bb-radius: 8px;
    --bb-pill: 999px;
    --bb-shadow: 0 8px 24px rgba(42, 31, 26, 0.06);
    --bb-header-offset: 80px; /* отступ под фиксированный шапочный блок; уточнить по факту */
}

body.bb-cart-page {
    background: var(--bb-bg);
    color: var(--bb-text);
    font-family: 'Manrope', 'Geologica', 'Onest', system-ui, sans-serif;
}

/* Хлебные крошки */
.bb-cart-page .breadcrumb,
.bb-cart-page .bx-breadcrumb {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: var(--bb-muted);
    margin: 16px 0 12px;
}
.bb-cart-page .bx-breadcrumb a,
.bb-cart-page .breadcrumb a {
    color: var(--bb-text);
    text-decoration: none;
}
.bb-cart-page .bx-breadcrumb a:hover { color: var(--bb-accent); }
.bb-cart-page .bx-breadcrumb .bx-breadcrumb-item:not(:last-child)::after,
.bb-cart-page .breadcrumb-separator { color: var(--bb-muted); }

/* H1 */
.bb-cart-page h1 {
    font-family: 'Geologica', 'Manrope', sans-serif;
    font-size: 32px;
    line-height: 1.15;
    color: var(--bb-text);
    margin: 8px 0 24px;
}

/* Сетка корзины */
.bb-cart {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: start;
}
.bb-cart__list {
    background: var(--bb-surface);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 16px;
}
.bb-cart__summary {
    background: var(--bb-surface);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 16px;
}

/* DESKTOP ≥1024px: две колонки, sticky-итог справа */
@media (min-width: 1024px) {
    .bb-cart {
        grid-template-columns: minmax(0, 1fr) 360px;
    }
    
    /* Этап 1.2 — каркас поверх bootstrap_v4, sticky-summary, мобильный бар, sidebar под корзиной. */
    
    /* Скрываем стандартный сайдбар сайта на странице корзины — на всякий случай,
       если HIDE_SIDEBAR где-то ещё прозевали. */
    .bb-cart-page .bx-sidebar-block { /* блоки правого сайдбара сайта */ }
    .bb-cart-page #basket-root { background: transparent; }
    
    /* Основной grid каркас */
    .bb-cart-page .bb-cart {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr;
        align-items: start;
    }
    .bb-cart-page .bb-cart__list {
        background: var(--bb-surface);
        border-radius: var(--bb-radius);
        box-shadow: var(--bb-shadow);
        padding: 16px;
        min-width: 0; /* чтобы длинные названия не растягивали колонку */
    }
    .bb-cart-page .bb-cart__summary {
        background: var(--bb-surface);
        border-radius: var(--bb-radius);
        box-shadow: var(--bb-shadow);
        padding: 16px;
    }
    
    /* DESKTOP ≥1024px: две колонки, sticky-summary */
    @media (min-width: 1024px) {
        .bb-cart-page .bb-cart {
            grid-template-columns: minmax(0, 1fr) 360px;
        }
        .bb-cart-page .bb-cart__summary {
            position: sticky;
            top: calc(var(--bb-header-offset, 80px) + 16px);
            align-self: start;
        }
        /* Мобильный бар на десктопе скрыт */
        .bb-cart-page .bb-cart__mobile-bar { display: none !important; }
    }
    
    /* TABLET 768–1023px: одна колонка, sticky-summary скрыт, видим mobile-bar */
    @media (min-width: 768px) and (max-width: 1023.98px) {
        .bb-cart-page .bb-cart__summary { display: none; }
        .bb-cart-page .bb-cart__mobile-bar { display: flex; }
        .bb-cart-page .bb-cart-personal-menu { margin-bottom: 80px; } /* запас под bottom-bar */
    }
    
    /* MOBILE <768px: одна колонка, fixed-бар снизу */
    @media (max-width: 767.98px) {
        .bb-cart-page .bb-cart__summary { display: none; }
        .bb-cart-page .bb-cart__mobile-bar { display: flex; }
        .bb-cart-page .bb-cart-personal-menu { margin-bottom: 96px; }
    }
    
    /* Стили мобильного бара */
    .bb-cart-page .bb-cart__mobile-bar {
        display: none;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 50;
        background: var(--bb-surface);
        box-shadow: 0 -8px 24px rgba(42, 31, 26, 0.08);
        padding: 12px 16px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .bb-cart-page .bb-cart__mobile-bar-info {
        display: flex;
        flex-direction: column;
    }
    .bb-cart-page .bb-cart__mobile-bar-label {
        font-size: 12px;
        color: var(--bb-muted);
        line-height: 1;
        margin-bottom: 4px;
    }
    .bb-cart-page .bb-cart__total-value {
        font-weight: 700;
        font-size: 18px;
        color: var(--bb-text);
        line-height: 1.1;
    }
    .bb-cart-page .bb-cart__mobile-bar .bb-cart__checkout {
        background: var(--bb-accent);
        color: #fff;
        border-radius: var(--bb-pill);
        padding: 12px 20px;
        font-weight: 600;
        border: 0;
        text-decoration: none;
        white-space: nowrap;
    }
    
    /* Кнопка «Оформить заказ» внутри desktop-summary (если Bitrix добавит свою — оставим её, а свою кнопку в правой колонке навешивать не будем, чтобы не дублировать) */
    .bb-cart-page .bb-cart__summary [data-entity="basket-checkout-button"],
    .bb-cart-page .bb-cart__summary .basket-btn-checkout {
        background: var(--bb-accent) !important;
        color: #fff !important;
        border-radius: var(--bb-pill) !important;
        padding: 14px 24px !important;
        font-weight: 600 !important;
        border: 0 !important;
        width: 100% !important;
    }
    
    /* Под-корзинное меню ЛК */
    .bb-cart-page .bb-cart-personal-menu {
        margin-top: 24px;
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
        .bb-cart-page .bb-cart-personal-menu {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (min-width: 1024px) {
        .bb-cart-page .bb-cart-personal-menu {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }
    }
    .bb-cart-page .bb-cart-personal-menu .bx-sidebar-block {
        background: var(--bb-surface);
        border-radius: var(--bb-radius);
        box-shadow: var(--bb-shadow);
        padding: 16px;
    }
    .bb-cart__summary {
        position: sticky;
        top: calc(var(--bb-header-offset) + 16px);
    }
}

/* TABLET 768–1023px: одна колонка + sticky-бар снизу */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .bb-cart__summary { /* десктопный итог скрываем, показываем бар */
        display: none;
    }
    .bb-cart__mobile-bar { display: flex; }
}

/* MOBILE <768px: одна колонка + fixed-бар снизу */
@media (max-width: 767.98px) {
    .bb-cart__summary { display: none; }
    .bb-cart__mobile-bar { display: flex; }
}

/* Sticky/fixed-бар снизу (для tablet/mobile) */
.bb-cart__mobile-bar {
    display: none; /* по умолчанию скрыт, включается медиа-запросами */
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    background: var(--bb-surface);
    box-shadow: 0 -8px 24px rgba(42, 31, 26, 0.08);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.bb-cart__mobile-bar .bb-cart__total-value {
    font-weight: 700;
    font-size: 18px;
    color: var(--bb-text);
}
.bb-cart__mobile-bar .bb-cart__checkout {
    background: var(--bb-accent);
    color: #fff;
    border-radius: var(--bb-pill);
    padding: 12px 20px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
}

/* Кнопка «Оформить заказ» в десктоп-итоге */
.bb-cart__summary .bb-cart__checkout {
    background: var(--bb-accent);
    color: #fff;
    border-radius: var(--bb-pill);
    padding: 14px 24px;
    font-weight: 600;
    border: 0;
    width: 100%;
    cursor: pointer;
}

/* Меню личного кабинета под списком (этап 1.1 — просто корректные отступы) */
.bb-cart-personal-menu {
    margin-top: 24px;
    background: var(--bb-surface);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow);
    padding: 16px;
}

/* Этап 1.3 — косметика строки товара и блока «Итого». Только стили, логика не трогается. */

/* ============ Правая колонка summary: вертикальный стек ============ */
.bb-cart-page .bb-cart__summary .basket-checkout-container {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}
.bb-cart-page .bb-cart__summary .basket-coupon-section {
    flex: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 0;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-field {
    min-width: 0;
    padding-right: 0;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-field-description {
    font-family: 'Manrope', sans-serif;
    color: var(--bb-muted);
    font-size: 12px;
    margin-bottom: 6px;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-field .form-control {
    border: 1px solid var(--bb-beige);
    border-radius: var(--bb-radius);
    background: var(--bb-bg);
    padding: 10px 36px 10px 12px;
    font-family: 'Manrope', sans-serif;
    color: var(--bb-text);
    height: auto;
    width: 100%;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-coupon-btn {
    border-color: var(--bb-muted);
}

/* Внутренняя строка итогов — становится столбцом */
.bb-cart-page .bb-cart__summary .basket-checkout-section {
    flex: none;
    width: 100%;
}
.bb-cart-page .bb-cart__summary .basket-checkout-section-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block {
    width: 100%;
    padding: 0 !important;
    text-align: left !important;
}

/* Блок Total: label + НДС/вес */
.bb-cart-page .bb-cart__summary .basket-checkout-block-total {
    order: 2;
    margin-top: 4px;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-inner {
    display: block;
    text-align: left;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: var(--bb-muted);
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-description {
    font-family: 'Manrope', sans-serif;
    color: var(--bb-muted);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
    white-space: normal;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-description br {
    display: block;
    content: "";
    margin: 2px 0;
}

/* Блок суммы: крупная цифра */
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-price {
    order: 1;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-price-inner {
    display: block;
    text-align: left;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-total-price-current {
    font-family: 'Geologica', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    color: var(--bb-text);
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-total-price-old {
    color: var(--bb-muted);
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 2px;
}
.bb-cart-page .bb-cart__summary .basket-coupon-block-total-price-difference {
    color: var(--bb-green);
    font-size: 12px;
    margin-top: 4px;
}

/* Кнопка «Оформить заказ» на всю ширину снизу */
.bb-cart-page .bb-cart__summary .basket-checkout-block-btn {
    order: 3;
    margin-top: 20px;
}
.bb-cart-page .bb-cart__summary .basket-btn-checkout {
    display: block;
    width: 100%;
    background: var(--bb-accent);
    color: #fff;
    border: 0;
    border-radius: var(--bb-pill);
    padding: 14px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    box-shadow: none;
    transition: filter 150ms ease;
}
.bb-cart-page .bb-cart__summary .basket-btn-checkout:hover {
    filter: brightness(0.95);
}
.bb-cart-page .bb-cart__summary .basket-btn-checkout.disabled,
.bb-cart-page .bb-cart__summary .basket-btn-checkout:disabled {
    background: var(--bb-muted);
    cursor: not-allowed;
}

/* ============ Строка товара ============ */

/* Картинка 96×96 */
.bb-cart-page .basket-item-block-image {
    width: 96px;
    min-width: 96px;
    max-width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: var(--bb-radius);
    background: var(--bb-beige);
}
.bb-cart-page .basket-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Название: одна строка с эллипсисом + tooltip (native title уже есть в шаблоне через span title) */
.bb-cart-page .basket-item-info-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--bb-text);
    margin: 0 0 6px;
    /* многострочный эллипсис на 2 строки */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
.bb-cart-page .basket-item-info-name-link,
.bb-cart-page .basket-item-info-name-link:hover {
    color: inherit;
    text-decoration: none;
}
/* Native tooltip через title работает у span data-entity="basket-item-name" — ничего дополнительно не нужно */

/* Цена за единицу (PRICE) */
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-current-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--bb-text);
}
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-title {
    font-size: 12px;
    color: var(--bb-muted);
    margin-top: 4px;
}
.bb-cart-page .basket-item-price-old-text {
    color: var(--bb-muted);
    text-decoration: line-through;
    font-size: 13px;
}

/* Контрол количества */
.bb-cart-page .basket-item-block-amount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bb-bg);
    border-radius: var(--bb-pill);
    padding: 4px;
}
.bb-cart-page .basket-item-amount-filed-block {
    background: transparent;
}
.bb-cart-page .basket-item-amount-filed {
    width: 48px;
    text-align: center;
    border: 0;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--bb-text);
    padding: 4px 0;
    outline: none;
}
.bb-cart-page .basket-item-amount-field-description {
    margin-left: 8px;
    font-size: 12px;
    color: var(--bb-muted);
    align-self: center;
}

/* Итог по позиции (SUM) */
.bb-cart-page .basket-items-list-item-price .basket-item-price-current-text {
    font-family: 'Geologica', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--bb-text);
}
.bb-cart-page .basket-items-list-item-price .basket-item-price-difference {
    font-size: 12px;
    color: var(--bb-green);
    margin-top: 4px;
}

/* Кнопка удаления */
.bb-cart-page .basket-item-actions-remove {
    width: 24px;
    height: 24px;
    border-radius: var(--bb-pill);
    display: inline-block;
    position: relative;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 150ms ease, background 150ms ease;
}
.bb-cart-page .basket-item-actions-remove:hover {
    opacity: 1;
    background: rgba(226, 43, 43, 0.08);
}
.bb-cart-page .basket-item-actions-remove::before,
.bb-cart-page .basket-item-actions-remove::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 2px;
    background: var(--bb-accent);
    transform-origin: center;
}
.bb-cart-page .basket-item-actions-remove::before { transform: translate(-50%, -50%) rotate(45deg); }
.bb-cart-page .basket-item-actions-remove::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Строка-разделитель между товарами */
.bb-cart-page .basket-items-list-item-container > td {
    border-top: 1px solid var(--bb-beige);
    padding-top: 16px;
    padding-bottom: 16px;
    vertical-align: middle;
}
.bb-cart-page .basket-items-list-item-container:first-child > td {
    border-top: 0;
}

/* Шапка списка («В корзине 3 товара») */
.bb-cart-page .basket-items-list-header-container {
    border: 0;
    background: transparent;
    padding: 0 0 12px;
}
.bb-cart-page .basket-items-list-header-container .basket-filter,
.bb-cart-page .basket-items-list-header-container .basket-items-count-block {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: var(--bb-muted);
}

/* Скрываем фоновый бордер старого .basket-checkout-container внутри summary
   (он уже сброшен выше, но добавим страховку для .basket-coupon-alert-section) */
.bb-cart-page .bb-cart__summary .basket-coupon-alert-section {
    margin-top: 8px;
}

/* ============ Mobile-bar — наполнение из summary ============ */
/* Само значение [data-entity="bb-cart-mobile-total"] обновляется JS-зеркалом
   (см. cart.js). CSS уже задан в этапе 1.2. */


/* === Картинка товара: жёстко 96×96 === */
.bb-cart-page .basket-item-block-image {
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
    height: 96px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: var(--bb-beige);
    padding: 0 !important;
    margin: 0 !important;
    flex: none !important;
    display: inline-block !important;
    vertical-align: top;
    position: relative;
}
.bb-cart-page .basket-item-block-image .basket-item-image-link {
    display: block !important;
    width: 96px !important;
    height: 96px !important;
    line-height: 0;
}
.bb-cart-page .basket-item-image {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 8px;
}

/* Чтобы td с картинкой не растягивался */
.bb-cart-page .basket-items-list-item-descriptions {
    vertical-align: top !important;
}

/* === Чистка шапки списка («Фильтр / В корзине N товаров») === */
.bb-cart-page .basket-items-list-header-container,
.bb-cart-page .basket-items-list-header {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 0 12px !important;
    margin: 0 0 8px !important;
}
.bb-cart-page .basket-filter,
.bb-cart-page .basket-filter input,
.bb-cart-page .basket-filter .form-control {
    background: var(--bb-bg) !important;
    border: 1px solid var(--bb-beige) !important;
    border-radius: 999px !important;
    padding: 6px 14px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    color: var(--bb-text) !important;
    box-shadow: none !important;
}
.bb-cart-page .basket-items-count-block,
.bb-cart-page .basket-items-count {
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    color: var(--bb-muted) !important;
    background: transparent !important;
}

/* === Порядок в summary: сумма крупно сверху, под ней «Итого: Сумма НДС: …» в одну строку через flex === */
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 8px !important;
    flex-wrap: wrap;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-title {
    margin: 0 !important;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-description {
    margin: 0 !important;
    font-size: 13px !important;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total-description br {
    display: none !important;
}
.bb-cart-page .bb-cart__summary .basket-checkout-block-total {
    margin-top: 8px !important;
}

/* ===== Этап 1.3-final: кнопки ± (заменяет все предыдущие итерации) =====
   Системный CSS bootstrap_v4 рисует:
     - у MINUS только ::after (горизонтальная палочка 10×2)
     - у PLUS  ::after (горизонталь 10×2) + ::before (переопределён в вертикаль 2×10)
   Позиционирование системное: top:50%; left:50%; margin-top:-1px; margin-left:-5px (для горизонтали).
   У плюса ::before: margin-top:-5px; margin-left:-1px (для вертикали 2×10).
   Мы только перекрашиваем палочки и стилизуем сами кнопки. НИЧЕГО другого не трогаем. */

.bb-cart-page .basket-item-block-amount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bb-bg);
    border-radius: var(--bb-pill);
    padding: 4px;
}

.bb-cart-page .basket-item-amount-btn-minus,
.bb-cart-page .basket-item-amount-btn-plus {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(42,31,26,0.08);
    cursor: pointer;
    position: relative;
    display: inline-block;
    flex: none;
    transition: background-color 150ms ease;
}
.bb-cart-page .basket-item-amount-btn-minus:hover,
.bb-cart-page .basket-item-amount-btn-plus:hover {
    background-color: var(--bb-beige);
}

/* Перекраска системных псевдоэлементов в наш цвет.
   Позиции / размеры / margin'ы оставляем системные — они корректные. */
.bb-cart-page .basket-item-amount-btn-minus::after,
.bb-cart-page .basket-item-amount-btn-plus::before,
.bb-cart-page .basket-item-amount-btn-plus::after {
    background-color: var(--bb-text) !important;
}
.bb-cart-page .basket-item-amount-btn-minus:hover::after,
.bb-cart-page .basket-item-amount-btn-plus:hover::before,
.bb-cart-page .basket-item-amount-btn-plus:hover::after {
    background-color: var(--bb-text) !important;
}

/* Инпут количества */
.bb-cart-page .basket-item-amount-filed-block {
    background: transparent;
}
.bb-cart-page .basket-item-amount-filed {
    width: 48px;
    text-align: center;
    border: 0;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--bb-text);
    padding: 4px 0;
    outline: none;
}
.bb-cart-page .basket-item-amount-field-description {
    margin-left: 8px;
    font-size: 12px;
    color: var(--bb-muted);
    align-self: center;
}

/* ===== Пункт #3 v2: отступ счётчика «В корзине N товаров» от правого края ===== */
.bb-cart-page a.basket-items-list-header-filter-item.active,
.bb-cart-page a.basket-items-list-header-filter-item {
    margin-right: 10px !important;
}

/* ===== Пункт #4: отступ названия от картинки и вертикальный центр ===== */

/* Отступ блока с названием/описанием от картинки */
.bb-cart-page .basket-item-block-info {
    padding-left: 16px !important;
}

/* Вертикальное центрирование контента строки относительно картинки.
   У <td> с описанием включаем flex для дочерних блоков (картинка + info). */
.bb-cart-page .basket-items-list-item-descriptions {
    vertical-align: middle !important;
}
.bb-cart-page .basket-items-list-item-descriptions-inner {
    display: flex !important;
    align-items: center !important;
    gap: 0; /* gap имитируем через padding-left у .basket-item-block-info, чтобы не ломать существующие отступы */
}

/* Соседние td (цена, количество, сумма, удаление) тоже центрируем по вертикали */
.bb-cart-page .basket-items-list-item-amount,
.bb-cart-page .basket-items-list-item-price,
.bb-cart-page .basket-items-list-item-remove {
    vertical-align: middle !important;
}

/* ===== Пункт #2: итог по позиции — на одной горизонтали с ценой и количеством ===== */

/* Сбросить внутренние отступы у блока цены/итога, которые могут смещать его по вертикали */
.bb-cart-page .basket-items-list-item-price .basket-item-block-price,
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Текст итога — выровнять по центру по вертикали внутри td */
.bb-cart-page .basket-items-list-item-price {
    vertical-align: middle !important;
    text-align: right;
}

/* На случай, если внутри есть padding-top системного style.css компонента */
.bb-cart-page .basket-items-list-item-price .basket-item-price-current,
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-current {
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== Пункт #2 v2: выровнять цифры цены-за-единицу и итога на одной горизонтали ===== */

/* Сместить двухстрочный блок «цена за единицу» немного вниз, чтобы цифра встала на линию однострочного итога */
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
    transform: translateY(9px);
}

/* Подпись «цена за X кг» — компактнее, чтобы блок был как можно ближе к однострочной высоте */
.bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-title {
    line-height: 1.1 !important;
    margin-top: 2px !important;
}

/* ===== Пункт #1 v2: карточка на всю строку — фон и тень на <tr>, скругление на крайних <td> ===== */

/* Прозрачная общая обёртка списка (если ещё не сброшена) */
.bb-cart-page .bb-cart__list {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Шапка списка без плашки */
.bb-cart-page .basket-items-list-header-container,
.bb-cart-page .basket-items-list-header {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 0 12px !important;
    margin: 0 !important;
}

/* Таблица — раздельные границы и вертикальный зазор между строками */
.bb-cart-page .basket-items-list-wrapper table,
.bb-cart-page table.basket-items-list-table {
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    width: 100%;
}

/* Убираем разделители-линии из этапа 1.3 */
.bb-cart-page .basket-items-list-item-container > td {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

/* Карточка-строка: фон и тень на <tr> */
.bb-cart-page tr.basket-items-list-item-container {
    background: #fff !important;
    box-shadow: var(--bb-shadow) !important;
    border-radius: var(--bb-radius);
}

/* Чтобы тень/фон видно было, у <td> убираем фон, padding по вертикали 16 */
.bb-cart-page .basket-items-list-item-container > td {
    background: transparent !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

/* Скругление углов через крайние ячейки (border-radius на tr не во всех браузерах работает,
   дублируем на первой и последней td — это надёжнее) */
.bb-cart-page .basket-items-list-item-container > td:first-child {
    border-top-left-radius: var(--bb-radius);
    border-bottom-left-radius: var(--bb-radius);
    padding-left: 16px !important;
}
.bb-cart-page .basket-items-list-item-container > td:last-child {
    border-top-right-radius: var(--bb-radius);
    border-bottom-right-radius: var(--bb-radius);
    padding-right: 16px !important;
}

/* Restore-строка (после удаления товара) тоже как карточка */
.bb-cart-page .basket-items-list-item-container .basket-items-list-item-notification {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: var(--bb-radius);
}

/* ===== Пункт #5: бейдж производителя ===== */
.bb-cart-page .basket-item-brand-badge {
    display: inline-block;
    background: var(--bb-beige);
    color: var(--bb-text);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0 0 6px;
    line-height: 1.2;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Этап 1.4: пустая корзина ===== */

/* На странице пустой корзины скрываем sticky-summary и mobile-bar — они не нужны */
.bb-cart-page .bb-cart:has(.bb-cart-empty) .bb-cart__summary,
.bb-cart-page .bb-cart-empty ~ .bb-cart__mobile-bar,
.bb-cart-page [data-entity="bb-cart-empty"] ~ .bb-cart__mobile-bar {
    display: none !important;
}

.bb-cart-empty {
    text-align: center;
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.bb-cart-empty__icon {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: var(--bb-beige);
    color: var(--bb-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bb-cart-empty__icon svg {
    width: 56px;
    height: 56px;
}
.bb-cart-empty__title {
    font-family: 'Geologica', 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: var(--bb-text);
    margin: 8px 0 0;
}
.bb-cart-empty__text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--bb-muted);
    max-width: 480px;
    margin: 0;
}
.bb-cart-empty__cta {
    display: inline-block;
    background: var(--bb-accent);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: var(--bb-pill);
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 8px;
    transition: filter 150ms ease;
}
.bb-cart-empty__cta:hover {
    filter: brightness(0.95);
    color: #fff !important;
}

/* ===== V2: на <1024px summary показывается под списком как обычный блок, mobile-bar скрыт всегда ===== */

/* Скрываем mobile-bar на ВСЕХ ширинах (фактически убираем его из верстки) */
.bb-cart-page .bb-cart__mobile-bar {
    display: none !important;
}

/* На <1024px: summary не sticky, не position-sticky, не скрыт; визуально это просто блок под списком */
@media (max-width: 1023.98px) {
    .bb-cart-page .bb-cart__summary {
        display: block !important;
        position: static !important;
        top: auto !important;
        width: 100% !important;
        margin-top: 12px;
    }
    /* Под список товаров — отступы запас под мобильный бар больше не нужны */
    .bb-cart-page .bb-cart-personal-menu {
        margin-bottom: 0 !important;
    }
}

/* ===== V_proper: мобильный layout строки товара (<1024px) ===== */

@media (max-width: 1023.98px) {
    /* Превращаем <tr> в flex-grid контейнер.
       table-row не поддерживает grid/flex стабильно, поэтому используем display: block
       и расставляем td по координатам через grid. */
    .bb-cart-page table.basket-items-list-table {
        border-spacing: 0;
        display: block;
        width: 100%;
    }
    .bb-cart-page table.basket-items-list-table tbody,
    .bb-cart-page table.basket-items-list-table thead {
        display: block;
        width: 100%;
    }
    .bb-cart-page tr.basket-items-list-item-container {
        display: grid !important;
        grid-template-columns: 96px 1fr;
        grid-template-areas:
            "img   info"
            "ctrl  ctrl";
        gap: 12px;
        padding: 16px;
        background: #fff !important;
        box-shadow: var(--bb-shadow);
        border-radius: var(--bb-radius);
        margin-bottom: 12px;
    }

    /* Сбросить bootstrap-овский display: block у td и наши скругления крайних td */
    .bb-cart-page .basket-items-list-item-container > td {
        display: block !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    /* Картинка + описание - верхний ряд через grid-area */
    .bb-cart-page .basket-items-list-item-descriptions {
        grid-area: info;
    }
    .bb-cart-page .basket-items-list-item-descriptions-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }
    /* В мобильном картинку выносим из inner — она ставится отдельной grid-area через position absolute? Нет — проще: оставить картинку внутри inner, но сделать так, чтобы info-блок встал в одну колонку с картинкой через grid внутри td.
       Альтернатива проще: оставить картинку и info в одном td как сейчас, но grid-area td = img + info. Поскольку картинка и info в одном <td>, мы поставим этот td в grid-area: img / info как два колонки внутри. */

    /* Сначала "сбрасываем" структуру: картинка+info в одном td с display: grid */
    .bb-cart-page .basket-items-list-item-descriptions {
        grid-column: 1 / -1;
    }
    .bb-cart-page .basket-items-list-item-descriptions-inner {
        display: grid !important;
        grid-template-columns: 96px 1fr;
        gap: 12px;
    }
    .bb-cart-page .basket-item-block-image {
        margin: 0 !important;
    }
    .bb-cart-page .basket-item-block-info {
        padding-left: 0 !important;
        min-width: 0;
    }
    .bb-cart-page .basket-item-info-name {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin: 4px 0 0 !important;
    }
    .bb-cart-page .basket-item-brand-badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }

    /* Скрываем колонку "цена за единицу" на мобильном */
    .bb-cart-page .basket-items-list-item-price-for-one {
        display: none !important;
    }

    /* Контрол количества — левая часть нижнего ряда */
    .bb-cart-page .basket-items-list-item-amount {
        grid-column: 1 / 2;
        justify-self: start;
        align-self: center;
    }

    /* Итог по позиции — правая часть нижнего ряда */
    .bb-cart-page .basket-items-list-item-price {
        grid-column: 2 / -1;
        justify-self: end;
        align-self: center;
    }
    .bb-cart-page .basket-items-list-item-price .basket-item-price-current-text {
        font-size: 17px !important;
    }

    /* Кнопка удаления — поверх верхнего правого угла карточки */
    .bb-cart-page .basket-items-list-item-remove {
        position: absolute;
        top: 8px;
        right: 8px;
        grid-column: auto !important;
    }
    .bb-cart-page tr.basket-items-list-item-container {
        position: relative;
    }

    /* Контрол количества на мобильном — компактнее */
    .bb-cart-page .basket-item-block-amount {
        padding: 3px;
    }
    .bb-cart-page .basket-item-amount-btn-minus,
    .bb-cart-page .basket-item-amount-btn-plus {
        width: 26px;
        height: 26px;
    }
    .bb-cart-page .basket-item-amount-filed {
        width: 42px;
        font-size: 14px;
    }

    /* Сбрасываем transform у "цена за единицу" из пункта #2 (теперь её нет) */
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
        transform: none !important;
    }

    /* Шапка списка - на мобильном тоже без плашки, компактно */
    .bb-cart-page .basket-items-list-header-container,
    .bb-cart-page .basket-items-list-header {
        padding: 0 0 8px !important;
    }
}

/* Очень узкий экран — мельче название, плотнее */
@media (max-width: 580px) {
    .bb-cart-page tr.basket-items-list-item-container {
        padding: 12px !important;
    }
    .bb-cart-page .basket-item-info-name {
        font-size: 14px !important;
    }
    .bb-cart-page .basket-items-list-item-price .basket-item-price-current-text {
        font-size: 16px !important;
    }
}

/* ===== V_proper-fix v2: цена за единицу видна на всех мобильных, разные layout для 581-1023 и <=580 ===== */
/* Принудительно показать цену за единицу на всех ширинах (отменяем display: none из V_proper) */
.bb-cart-page .basket-items-list-item-price-for-one {
    display: block !important;
}

/* ====== 581–1023px: верх info, низ в одну строку: цена | ± | итог ====== */
@media (min-width: 581px) and (max-width: 1023.98px) {
    .bb-cart-page tr.basket-items-list-item-container {
        grid-template-areas:
            "info  info  info"
            "price ctrl  sum";
        grid-template-columns: 1fr auto auto;
        column-gap: 16px;
        row-gap: 12px;
    }
    .bb-cart-page .basket-items-list-item-descriptions  { grid-area: info; }
    .bb-cart-page .basket-items-list-item-price-for-one { grid-area: price; align-self: center; justify-self: start; }
    .bb-cart-page .basket-items-list-item-amount        { grid-area: ctrl;  align-self: center; justify-self: center; }
    .bb-cart-page .basket-items-list-item-price         { grid-area: sum;   align-self: center; justify-self: end; }

    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
        transform: none !important;
    }
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-current-text {
        font-size: 14px !important;
    }
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-title {
        font-size: 11px !important;
        color: var(--bb-muted);
        margin-top: 2px !important;
    }
}

/* ====== <=580px: верх info, ниже "цена | ±", под ± — итог справа ====== */
@media (max-width: 580px) {
    .bb-cart-page tr.basket-items-list-item-container {
        grid-template-areas:
            "info  info"
            "price ctrl"
            ".     sum";
        grid-template-columns: 1fr auto;
        column-gap: 12px;
        row-gap: 8px;
    }
    
    /* ===== V_proper-fix v3: фикс конфликта классов basket-items-list-item-price и -for-one ===== */
    
    @media (min-width: 581px) and (max-width: 1023.98px) {
        .bb-cart-page td.basket-items-list-item-price:not(.basket-items-list-item-price-for-one) {
            grid-area: sum !important;
            align-self: center !important;
            justify-self: end !important;
        }
    }
    
    @media (max-width: 580px) {
        .bb-cart-page td.basket-items-list-item-price:not(.basket-items-list-item-price-for-one) {
            grid-area: sum !important;
            align-self: center !important;
            justify-self: end !important;
        }
    }
    .bb-cart-page .basket-items-list-item-descriptions  { grid-area: info; }
    .bb-cart-page .basket-items-list-item-price-for-one { grid-area: price; align-self: center; justify-self: start; }
    .bb-cart-page .basket-items-list-item-amount        { grid-area: ctrl;  align-self: center; justify-self: end; }
    .bb-cart-page .basket-items-list-item-price         { grid-area: sum;   align-self: center; justify-self: end; }

    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
        transform: none !important;
    }
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-current-text {
        font-size: 13px !important;
    }
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-price-title {
        font-size: 11px !important;
        color: var(--bb-muted);
        margin-top: 2px !important;
    }
    .bb-cart-page .basket-items-list-item-price .basket-item-price-current-text {
        font-size: 15px !important;
    }
}

/* ===== V_proper-fix v3: фикс конфликта классов basket-items-list-item-price и -for-one ===== */

@media (min-width: 581px) and (max-width: 1023.98px) {
    .bb-cart-page td.basket-items-list-item-price:not(.basket-items-list-item-price-for-one) {
        grid-area: sum !important;
        align-self: center !important;
        justify-self: end !important;
    }
}

@media (max-width: 580px) {
    .bb-cart-page td.basket-items-list-item-price:not(.basket-items-list-item-price-for-one) {
        grid-area: sum !important;
        align-self: center !important;
        justify-self: end !important;
    }
}

/* ===== V_proper-fix v4: !important для grid-area цены за единицу ===== */

@media (min-width: 581px) and (max-width: 1023.98px) {
    .bb-cart-page td.basket-items-list-item-price-for-one {
        grid-area: price !important;
        justify-self: start !important;
        align-self: center !important;
    }
}

@media (max-width: 580px) {
    .bb-cart-page td.basket-items-list-item-price-for-one {
        grid-area: price !important;
        justify-self: start !important;
        align-self: center !important;
    }
}

/* ===== V_proper-fix v5: на десктопе (≥1024px) вернуть нормальное поведение td и убрать transform ===== */

@media (min-width: 1024px) {
    /* Все td строки товара — стандартные table-cell, vertical-align middle (это уже есть в #4, но дублируем для надёжности) */
    .bb-cart-page tr.basket-items-list-item-container > td {
        display: table-cell !important;
        vertical-align: middle !important;
        grid-area: auto !important;
        justify-self: auto !important;
        align-self: auto !important;
    }

    /* Сбросить transform у внутреннего блока цены за единицу — на десктопе цифра и итог должны быть на одной горизонтали БЕЗ сдвига, потому что vertical-align: middle уже всё центрирует */
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
        transform: none !important;
    }
}

/* ===== V_proper-fix v6: на десктопе вернуть translateY для выравнивания цены и итога ===== */

@media (min-width: 1024px) {
    .bb-cart-page .basket-items-list-item-price-for-one .basket-item-block-price {
        transform: translateY(9px) !important;
    }
}

/* End */


/* Start:/bitrix/components/bitrix/search.title/templates/bootstrap_v4/style.min.css?1768947665708*/
.searche-title {}

.search-title-button {
	background-image: url(/bitrix/components/bitrix/search.title/templates/bootstrap_v4/images/icon-search.svg); background-repeat:no-repeat;background-position:center;min-width:45px;height:calc(1.5em + 0.75rem)}.title-search-result{border:1px solid #ced4da;display:none;overflow:hidden;z-index:205;background-color:#fff;padding:10px;border-radius:3px}.search-title-result-item{border-bottom:1px solid #ddd}.search-title .search-title-result-item:last-child{border-bottom:0}.search-title-result-item-link{font-size:16px;transition:170ms linear all}.search-title-result-item-price{font-size:16px}.search-title-result-item-current-price{font-weight:bold}.search-title-result-item-old-price{font-size:80%;text-decoration:line-through}
/* End */


/* Start:/bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/style.min.css?17689476634065*/
.basket-line-block{position:relative;padding-left:25px;white-space:nowrap;font-size:13px}.basket-line-block-icon-cart,.basket-line-block-icon-profile{position:relative;margin-right:10px}.basket-line-block-icon-cart:after,.basket-line-block-icon-profile:after{position:absolute;top:-1px;left:-25px;display:block;width:20px;height:20px;content:''}.basket-line-block-icon-profile:after{background:no-repeat center url(/bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/images/profile.svg)}.basket-line-block-icon-cart:after{background:no-repeat center url(/bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/images/cart.svg)}@media(min-width:768px){.bx-basket-fixed{position:fixed;z-index:998;overflow:hidden;padding-top:10px;width:200px;border:1px solid #f0f0f0;border-radius:1px;background:#fff;box-shadow:0 7px 10px rgba(0,0,0,0.15)}.bx-basket-fixed.top{top:10px}.bx-basket-fixed.right{right:10px}.bx-basket-fixed.bottom{bottom:10px}.bx-basket-fixed.left{left:10px}.bx-basket-fixed.bx-max-height{top:10px;bottom:10px}}@media(max-width:767px){.bx-basket-fixed{position:fixed;right:0;bottom:0;left:0;z-index:998;overflow:hidden;padding-top:10px;border:1px solid #f0f0f0;border-radius:1px;background:#fff;box-shadow:0 7px 10px rgba(0,0,0,0.15)}.bx-basket-fixed.vcenter{bottom:10px;top:auto !important}.bx-basket-item-list{display:none}}.bx-basket-fixed .basket-line-block{margin-left:10px}.bx-basket-item-list{position:relative;overflow:hidden;padding-bottom:20px;border-top:1px solid #f7f7f7}.bx-opener .bx-basket-item-list{padding-bottom:75px}.bx-max-height .bx-basket-item-list{position:absolute;right:0;bottom:0;left:0}.bx-closed .bx-basket-item-list{overflow:hidden;height:20px}.bx-basket-item-list-action{position:absolute;right:0;bottom:0;left:0;z-index:120;padding:3px 0;height:20px;background:#f7f7f7;color:#4f4f4f;vertical-align:middle;text-align:center;font-size:12px;line-height:14px;cursor:pointer}.bx-basket-item-list-button-container{position:absolute;right:0;bottom:20px;left:0;padding:10px 0;border-top:1px solid #f7f7f7;background:#fff;text-align:center}.bx-basket-item-list-container{overflow-y:auto;max-height:100%}.bx-basket-item-list-item{position:relative;margin-bottom:15px;padding-top:15px;padding-right:10px;padding-left:10px;border-bottom:1px solid #f7f7f7}.bx-basket-item-list-container .bx-basket-item-list-item:last-child{margin-bottom:0;border-bottom:0}.bx-basket-item-list-item-status{margin:0 10px 20px;padding:3px;border-radius:3px;background:#ebebeb;text-align:center;white-space:normal;font-weight:bold;font-size:12px;line-height:16px}.bx-basket-item-list-item-img{position:relative;padding-bottom:5px;text-align:center}.bx-basket-item-list-item-img img{max-width:90px;height:auto;border:1px solid #e6e6e6}.bx-basket-item-list-item-name{padding-bottom:5px}.bx-basket-item-list-item-name a{font-size:13px;line-height:16px}.bx-basket-item-list-item-remove{position:absolute;top:-7px;right:10px;width:20px;height:20px;opacity:.5;cursor:pointer;transition:250ms linear all}.bx-basket-item-list-item-remove:after,.bx-basket-item-list-item-remove:before{position:absolute;top:50%;left:50%;display:block;width:10px;height:2px;border-radius:1px;background-color:#333;content:'';transform:translate(-50%,-50%)}.bx-basket-item-list-item-remove:after{-webkit-transform:translate(-50%,-50%) rotate(45deg);-moz-transform:translate(-50%,-50%) rotate(45deg);-ms-transform:translate(-50%,-50%) rotate(45deg);-o-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}.bx-basket-item-list-item-remove:before{-webkit-transform:translate(-50%,-50%) rotate(135deg);-moz-transform:translate(-50%,-50%) rotate(135deg);-ms-transform:translate(-50%,-50%) rotate(135deg);-o-transform:translate(-50%,-50%) rotate(135deg);transform:translate(-50%,-50%) rotate(135deg)}.bx-basket-item-list-item-remove:hover{opacity:.7}.bx-basket-item-list-item-price-block{padding-bottom:5px;font-size:12px}.bx-basket-item-list-item-price{display:inline-block;margin-right:5px}.bx-basket-item-list-item-price-old{display:inline-block;margin-right:5px;color:#b0b0b0;text-decoration:line-through}.bx_cart_login_top .basket-line{line-height:1.44em}
/* End */


/* Start:/bitrix/components/bitrix/menu/templates/bootstrap_v4/style.min.css?176894763410230*/
.bx-top-nav-container{position:relative;padding:0 10px;border-radius:2px;background:var(--theme-color-primary);color:#fff}.bx-nav-list-1-lvl{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;padding:0;list-style:none;-ms-flex-wrap:wrap;flex-wrap:wrap}.bx-nav-1-lvl{position:relative}.bx-nav-1-lvl-link{display:block;padding-top:6px;padding-bottom:2px;border-bottom:0;border-radius:1px;text-decoration:none;transition:250ms linear all}.bx-nav-1-lvl-link:hover{text-decoration:none}.bx-nav-1-lvl.bx-hover>.bx-nav-1-lvl-link,.bx-nav-1-lvl.bx-active>.bx-nav-1-lvl-link,.bx-nav-1-lvl:hover>.bx-nav-1-lvl-link{border-bottom:0;background:var(--theme-color-second)}.bx-nav-1-lvl-link-text{display:flex;padding:10px 14px 14px;color:#fff;text-decoration:none;text-transform:uppercase;font:14px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600);transition:250ms linear all;align-items:center}.bx-nav-angle-bottom{position:relative;display:block;margin-left:10px;width:10px;height:10px}.bx-nav-angle-bottom:after,.bx-nav-angle-bottom:before{position:absolute;top:50%;left:50%;width:7px;height:2px;background-color:#fff;content:'';transition:250ms linear all}.bx-nav-angle-bottom:after{margin-left:-2px;transform:translate(-50%,-50%) rotate(45deg)}.bx-nav-angle-bottom:before{margin-left:2px;transform:translate(-50%,-50%) rotate(-45deg)}.bx-nav-1-lvl.bx-nav-parent:hover .bx-nav-angle-bottom:after,.bx-nav-1-lvl.bx-nav-parent:hover .bx-nav-angle-bottom:before{background-color:var(--theme-color-primary)}.bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,.bx-nav-1-lvl.bx-nav-parent:hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text{background-color:transparent;color:var(--theme-color-primary)}.bx-nav-1-lvl.bx-nav-parent.hover>.bx-nav-1-lvl-link,.bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link{z-index:250;box-shadow:0 6px 13px 0 rgba(0,0,0,.13)}.bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,.bx-nav-1-lvl.bx-nav-parent.hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text{background:#fff}.bx-nav-angle-top{position:relative;display:block;margin-left:10px;width:10px;height:10px}.bx-nav-angle-top:after,.bx-nav-angle-top:before{position:absolute;top:50%;left:50%;width:7px;height:2px;background-color:#fff;content:'';transition:250ms linear all}.bx-nav-angle-top:after{margin-left:-2px;transform:translate(-50%,-50%) rotate(-45deg)}.bx-nav-angle-top:before{margin-left:2px;transform:translate(-50%,-50%) rotate(45deg)}.bx-nav-parent-arrow{display:none}.bx-nav-2-lvl-container,.bx-nav-2-lvl-container-advanced{z-index:999;display:none;padding:0;min-width:100%;border-top:0;box-shadow:0 6px 13px 0 rgba(0,0,0,.13);color:#000;opacity:0}.bx-nav-2-lvl-container>ul,.bx-nav-2-lvl-container>div,.bx-nav-2-lvl-container-advanced>ul,.bx-nav-2-lvl-container-advanced>div{flex:1}.bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container-advanced,.bx-nav-1-lvl.hover .bx-nav-2-lvl-container-advanced,.bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container,.bx-nav-1-lvl.hover .bx-nav-2-lvl-container{position:absolute;top:calc(100% - 5px);z-index:999;display:flex;background:#fff;opacity:1;align-items:stretch}.bx-nav-list-2-lvl{margin:0;padding:5px 0 12px}.bx-nav-2-lvl{display:block;padding:0;min-width:180px}.bx-nav-2-lvl-link{display:block;padding:5px 15px 5px;border-bottom:none !important;text-decoration:none !important}.bx-nav-2-lvl-link-text{color:var(--theme-color-primary);text-decoration:none;font-weight:var(--ui-font-weight-bold);font-size:13px;line-height:16px}.bx-nav-2-lvl>.bx-nav-list-2-lvl.bx-active .bx-nav-list-2-lvl-text,.bx-nav-2-lvl>.bx-nav-list-2-lvl:hover .bx-nav-list-2-lvl-text{background:var(--theme-color-light);color:var(--theme-color-primary)}.bx-nav-3-lvl-container-advanced:before,.bx-nav-3-lvl-container:before{position:absolute;top:-5px;right:0;left:0;display:block;height:5px;background:#fff;content:" "}.bx-nav-list-3-lvl{margin:0;padding:0 0 14px 0}.bx-nav-3-lvl{display:block;box-sizing:border-box;margin:0;padding:0;min-width:180px}.bx-nav-3-lvl-link{display:block;padding:3px 15px 3px 20px;border-bottom:0;color:#555;text-decoration:none;font-size:13px;line-height:14px}.bx-nav-3-lvl-link.bx-active,.bx-nav-3-lvl-link:hover{background:#f0f0f0;color:var(--theme-color-primary);text-decoration:none}.bx-nav-list-4-col{position:static}.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced{top:100%;right:0;left:0}.bx-nav-list-4-col .bx-nav-2-lvl-container,.bx-nav-list-4-col .bx-nav-2-lvl-container-advanced{right:0;left:0}.bx-nav-catinfo{position:relative;z-index:120;padding:15px 15px 5px;min-width:200px;border-left:1px solid #ecefef;background:#f7fafb}.bx-nav-catinfo img{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:100%;max-height:100%;width:auto;height:auto;border:1px solid #e7e9ea}.bx-nav-catinfo p{padding:20px 5px 0;font-size:13px}.bx-menu-button-mobile{position:absolute;top:8px;left:5px;z-index:10;width:40px;height:40px}.bx-aside-nav-control{position:absolute;top:0;left:0;z-index:1750;width:40px;height:40px;color:#fff;text-align:center;font-size:28px;line-height:40px;cursor:pointer;transition:left .15s linear}.bx-nav-bars{position:absolute;top:50%;left:50%;z-index:2100;display:block;box-sizing:border-box;width:30px;height:25px;border-top:5px solid #fff;border-bottom:5px solid #fff;vertical-align:middle;transform:translate(-50%,-50%)}.bx-nav-bars:after{position:absolute;top:50%;display:block;background:#fff;width:100%;height:5px;content:'';transform:translateY(-50%)}.bx-wrapper,.bx-aside-nav{transition:transform .15s linear}.bx-opened .bx-footer,.bx-opened .workarea{overflow:hidden}.bx-aside-nav{position:fixed;top:50px;bottom:0;left:0;z-index:1600;display:none;width:100%;background:#4c5c65;-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%)}.bx-aside-nav.bx-opened{overflow-y:scroll;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.bx-aside-nav ul{margin:0;padding:0;list-style:none}.bx-aside-nav a{display:block;overflow:hidden;padding-left:15px;max-width:100%;height:48px;border-bottom:1px solid #3d4b53 !important;color:#fff;vertical-align:middle;-ms-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;font-size:16px;line-height:48px}.bx-aside-nav .bx-nav-list-1-lvl{z-index:1700;flex-direction:column}.bx-aside-nav .bx-nav-1-lvl-link{padding:0;display:flex;align-items:center}.bx-aside-nav .bx-nav-1-lvl-link-text{padding:0 0 0 15px}.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.hover>.bx-nav-1-lvl-link,.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link{box-shadow:none !important}.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,.bx-aside-nav .bx-nav-1-lvl.bx-nav-parent:hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text{background:transparent;color:#fff}.bx-aside-nav .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container-advanced,.bx-aside-nav .bx-nav-1-lvl.hover .bx-nav-2-lvl-container-advanced,.bx-aside-nav .bx-nav-1-lvl.bx-hover .bx-nav-2-lvl-container,.bx-aside-nav .bx-nav-1-lvl.hover .bx-nav-2-lvl-container{position:relative;box-shadow:none;top:auto}.bx-aside-nav .bx-nav-1-lvl.bx-opened .bx-nav-2-lvl-container-advanced,.bx-aside-nav .bx-nav-1-lvl.bx-opened .bx-nav-2-lvl-container{display:block;opacity:1}.bx-nav-1-lvl.bx-opened,.bx-aside-nav .bx-nav-1-lvl:hover>a,.bx-aside-nav .bx-nav-1-lvl.bx-hover>a{background:#44535c}.bx-aside-nav .bx-nav-2-lvl-link-text,.bx-aside-nav .bx-nav-3-lvl-link-text,.bx-aside-nav .bx-nav-4-lvl-link-text{color:#fff;font-weight:500;font-size:14px}.bx-aside-nav .bx-nav-list-2-lvl{background:#44535c}.bx-aside-nav .bx-nav-2-lvl-link{padding:0 0 0 30px}.bx-aside-nav .bx-nav-2-lvl-link:hover{background-color:#3b4851}.bx-aside-nav .bx-nav-3-lvl-link{padding:0 0 0 45px}.bx-aside-nav .bx-nav-3-lvl-link:hover{background-color:#3b4851}.bx-aside-nav .bx-nav-4-lvl-link{padding:0 0 0 60px}.bx-aside-nav .bx-nav-4-lvl-link:hover{background-color:#3b4851}.bx-aside-nav .bx-nav-parent{position:relative}.bx-aside-nav .bx-nav-parent-arrow{position:absolute;top:0;right:0;z-index:200;margin-top:6px;width:46px;height:34px;border-left:1px solid #5a6971;text-align:center}.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-parent-arrow i{transition:all .15s linear}.bx-aside-nav .bx-nav-parent .bx-nav-2-lvl-container-advanced,.bx-aside-nav .bx-nav-parent .bx-nav-2-lvl-container,.bx-aside-nav .bx-nav-parent>ul{overflow:hidden;height:0}.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-2-lvl-container-advanced,.bx-aside-nav .bx-nav-parent.bx-opened .bx-nav-2-lvl-container,.bx-aside-nav .bx-nav-parent.bx-opened>ul{height:auto}.bx-aside-nav .bx-nav-catinfo{display:none}.bx-aside-nav .bx-nav-angle-top,.bx-aside-nav .bx-nav-angle-bottom{position:absolute;transform:translate(-50%,-50%);left:50%;top:50%;margin:0}@media(min-width:1200px){.bx-nav-1-lvl>a{font-size:15px}.bx-nav-1-lvl>a span{padding:12px 14px 15px}}@media(min-width:992px) and (max-width:1199px){.bx-nav-1-lvl>a{font-size:13px}.bx-nav-1-lvl>a span{padding:9px 11px 12px}}@media(min-width:768px) and (max-width:991px){.bx-nav-1-lvl>a{font-size:11px}.bx-nav-1-lvl>a span{padding:5px 6px 9px}}@media(min-width:768px){.bx-aside-nav-control,.bx-aside-nav{display:none}.bx-top-nav-container{display:block}}@media(max-width:767px){.bx-aside-nav-control{display:flex;align-items:center;justify-content:center}.bx-aside-nav{display:block}.bx-top-nav-container{display:none}.bx-aside-nav .bx-nav-parent-arrow{display:block}.bx-aside-nav .bx-nav-1-lvl-link-text .bx-nav-angle-bottom{display:none}}.bx-white{--theme-color-primary:#f5f5f5;--theme-color-second:#dfdfdf}.bx-white .bx-nav-1-lvl-link-text,.bx-white .bx-nav-2-lvl-link-text,.bx-white .bx-nav-3-lvl-link.bx-active,.bx-white .bx-nav-3-lvl-link:hover,.bx-white .bx-nav-3-lvl-link.bx-active,.bx-white .bx-nav-3-lvl-link:hover,.bx-white .bx-nav-1-lvl.bx-nav-parent.bx-hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text,.bx-white .bx-nav-1-lvl.bx-nav-parent:hover>.bx-nav-1-lvl-link .bx-nav-1-lvl-link-text{color:#333}
/* End */


/* Start:/bitrix/components/bitrix/breadcrumb/templates/universal/style.min.css?1768947634620*/
.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/components/bitrix/eshop.socnet.links/templates/big_squares/style.css?176894763732137*/
.bx-socialfooter { margin: 0; }

.bx-socialfooter-flex {
	display: flex;
	margin: 0;
	padding: 0;
	height: 52px;
	list-style: none;
	align-items: stretch;
}

.bx-socialfooter-item {
	position: relative;
	padding: 0;
	flex: 1;
}

.bx-socialfooter-item.fb { background: #3b5998; }

.bx-socialfooter-item.vk { background: #366baa; }

.bx-socialfooter-item.tw { background: #3cf; }

.bx-socialfooter-item.gp { background: #da4b42; }

.bx-socialfooter-item.in { background: #3f5d87; }

.bx-socialfooter-item.fb:hover { background-color: #1b4e7d; }

.bx-socialfooter-item.vk:hover { background-color: #2b5688; }

.bx-socialfooter-item.tw:hover { background-color: #1ca2cc; }

.bx-socialfooter-item.gp:hover { background-color: #ae4229; }

.bx-socialfooter-item.in:hover { background-color: #284e6d; }

.bx-socialfooter-item:hover { border: none !important; }

.bx-socialfooter-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	background-size: contain !important;
}

.bx-socialfooter-item.fb .bx-socialfooter-icon { background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22217%22%20height%3D%2244%22%20viewBox%3D%220%200%20217%2044%22%3E%0A%20%20%3Cg%20fill%3D%22%23FFFFFF%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M112.020508%2021.5966797C110.236328%2021.5966797%20108.950195%2022.1816406%20107.646484%2022.777832L107.646484%2036.2636718C108.895508%2036.3828124%20109.611328%2036.3828124%20110.796875%2036.3828124%20115.079102%2036.3828124%20115.666016%2034.4218749%20115.666016%2031.6835936L115.666016%2025.2421874C115.666016%2023.2207031%20114.995117%2021.5966797%20112.020508%2021.5966797zM83.5825195%2020.8608398C80.6118164%2020.8608398%2079.9331054%2022.4921875%2079.9331054%2024.5117187L79.9331054%2025.6464843%2087.227539%2025.6464843%2087.227539%2024.5117187C87.2275391%2022.4921875%2086.5498047%2020.8608398%2083.5825195%2020.8608398zM28.4926758%2034.8984375C28.4926758%2036.4960937%2029.246582%2037.3261719%2030.9106446%2037.3261719%2032.6958008%2037.3261719%2033.7524415%2036.7441407%2035.0551758%2036.1464844L35.0551758%2032.9472656%2031.1518555%2032.9472656C29.3046875%2032.9472656%2028.4926758%2033.2910156%2028.4926758%2034.8984375zM139.683594%2021.5966797C136.708008%2021.5966797%20135.676758%2023.2207031%20135.676758%2025.2421875L135.676758%2032.6210937C135.676758%2034.6484375%20136.708008%2036.2773437%20139.683594%2036.2773437%20142.651367%2036.2773437%20143.69043%2034.6484375%20143.69043%2032.6210937L143.69043%2025.2421875C143.69043%2023.2207031%20142.651367%2021.5966797%20139.683594%2021.5966797zM13.9091797%2043.171875L5.1616211%2043.171875%205.1616211%2021.9975586.7900391%2021.9975586.7900391%2014.7011719%205.1616211%2014.7011719%205.1616211%2010.3203125C5.1616211%204.3676758%207.6289063.828125%2014.640625.828125L20.4785156.828125%2020.4785156%208.1259766%2016.8295898%208.1259766C14.0996093%208.1259766%2013.9199218%209.1455078%2013.9199218%2011.0488282L13.9091796%2014.701172%2020.5195312%2014.701172%2019.7460937%2021.9975587%2013.9091796%2021.9975587%2013.9091796%2043.171875%2013.9091797%2043.171875zM43.8061523%2043.2265625L36.515625%2043.2265625%2036.199707%2041.3828125C32.8706054%2043.2265625%2029.899414%2043.5253906%2027.9394531%2043.5253906%2022.5927734%2043.5253906%2019.7460937%2039.953125%2019.7460937%2035.0136718%2019.7460937%2029.1855468%2023.0668945%2027.1054687%2029.0083007%2027.1054687L35.0551757%2027.1054687%2035.0551757%2025.8457031C35.0551757%2022.871582%2034.7143554%2021.9975586%2030.1396484%2021.9975586L22.659668%2021.9975586%2023.3911133%2014.7011719%2031.5673828%2014.7011719C41.6054687%2014.7011719%2043.8061523%2017.8720703%2043.8061523%2025.9042969L43.8061523%2043.2265625%2043.8061523%2043.2265625zM68.5991211%2022.5327148C64.0620117%2021.755371%2062.7592773%2021.5844726%2060.5761719%2021.5844726%2056.6547852%2021.5844726%2055.4697266%2022.449707%2055.4697266%2025.7792968L55.4697266%2032.0781249C55.4697266%2035.408203%2056.6547852%2036.2773437%2060.5761719%2036.2773437%2062.7592774%2036.2773437%2064.0620117%2036.1035156%2068.5991211%2035.3222656L68.5991211%2042.4394531C64.625%2043.3300781%2062.0361328%2043.5644531%2059.8476563%2043.5644531%2050.4555665%2043.5644531%2046.722168%2038.625%2046.722168%2031.4902343L46.722168%2026.3789062C46.722168%2019.2377929%2050.4555664%2014.290039%2059.8476563%2014.290039%2062.0361329%2014.290039%2064.6250001%2014.5253906%2068.5991211%2015.4199218L68.5991211%2022.5327148%2068.5991211%2022.5327148zM95.9750977%2031.4902344L79.9331055%2031.4902344%2079.9331055%2032.078125C79.9331055%2035.4082031%2081.1191407%2036.2773438%2085.0395508%2036.2773438%2088.5639649%2036.2773438%2090.7148438%2036.1035157%2095.2436524%2035.3222657L95.2436524%2042.4394532C90.8759766%2043.3300782%2088.6000977%2043.5644532%2084.3144532%2043.5644532%2074.9218751%2043.5644532%2071.1865235%2038.6250001%2071.1865235%2031.4902344L71.1865235%2025.6464844C71.1865235%2019.4038086%2073.9580079%2014.2900391%2083.5825196%2014.2900391%2093.2070313%2014.2900391%2095.9750977%2019.3442383%2095.9750977%2025.6464844L95.9750977%2031.4902344%2095.9750977%2031.4902344zM124.412109%2031.625C124.412109%2038.5214844%20122.441406%2043.5507812%20110.500977%2043.5507812%20106.189453%2043.5507812%20103.660156%2043.171875%2098.9013672%2042.4394531L98.9013672%203.019043%20107.646484%201.5595703%20107.646484%2015.3486328C109.536133%2014.6464844%20111.982422%2014.290039%20114.208984%2014.290039%20122.955078%2014.290039%20124.412109%2018.2109374%20124.412109%2024.5117187L124.412109%2031.625zM152.445312%2031.7753906C152.445312%2037.7246094%20149.989258%2043.4941406%20139.712891%2043.4941406%20129.431641%2043.4941406%20126.929687%2037.7246094%20126.929687%2031.7753906L126.929687%2026.03125C126.929687%2020.0791016%20129.431641%2014.3085938%20139.712891%2014.3085938%20149.989258%2014.3085938%20152.445312%2020.0791016%20152.445312%2026.03125L152.445312%2031.7753906zM180.458984%2031.7753906C180.458984%2037.7246094%20178%2043.4941406%20167.725586%2043.4941406%20157.444336%2043.4941406%20154.942383%2037.7246094%20154.942383%2031.7753906L154.942383%2026.03125C154.942383%2020.0791016%20157.444336%2014.3085938%20167.725586%2014.3085938%20178%2014.3085938%20180.458984%2020.0791016%20180.458984%2026.03125L180.458984%2031.7753906zM209.208008%2043.171875L199.728516%2043.171875%20191.711914%2029.7890625%20191.711914%2043.171875%20182.963867%2043.171875%20182.963867%203.019043%20191.711914%201.5595703%20191.711914%2027.4082031%20199.728516%2014.7011719%20209.208008%2014.7011719%20200.456055%2028.5683594%20209.208008%2043.171875zM167.696289%2021.5966797C164.725586%2021.5966797%20163.694336%2023.2207031%20163.694336%2025.2421875L163.694336%2032.6210937C163.694336%2034.6484375%20164.725586%2036.2773437%20167.696289%2036.2773437%20170.663086%2036.2773437%20171.712891%2034.6484375%20171.712891%2032.6210937L171.712891%2025.2421875C171.712891%2023.2207031%20170.663086%2021.5966797%20167.696289%2021.5966797zM214.201172%2038.1777344C215.673828%2038.1777344%20216.847656%2039.3789063%20216.847656%2040.8789063%20216.847656%2042.4023438%20215.673828%2043.5898438%20214.19043%2043.5898438%20212.714844%2043.5898438%20211.517578%2042.4023438%20211.517578%2040.8789063%20211.517578%2039.3789063%20212.714844%2038.1777344%20214.19043%2038.1777344L214.201172%2038.1777344zM214.19043%2038.5976562C213.003906%2038.5976562%20212.032227%2039.6191406%20212.032227%2040.8789062%20212.032227%2042.1621093%20213.003906%2043.1699218%20214.201172%2043.1699218%20215.399414%2043.1816406%20216.356445%2042.1621093%20216.356445%2040.8906249%20216.356445%2039.6191405%20215.399414%2038.5976561%20214.201172%2038.5976561L214.19043%2038.5976561%20214.19043%2038.5976562zM213.686523%2042.4511719L213.206055%2042.4511719%20213.206055%2039.4375C213.458008%2039.4023438%20213.698242%2039.3671875%20214.057617%2039.3671875%20214.513672%2039.3671875%20214.811523%2039.4628906%20214.99414%2039.59375%20215.170898%2039.7265625%20215.266601%2039.9296875%20215.266601%2040.2167969%20215.266601%2040.6152344%20215.004883%2040.8535157%20214.68164%2040.9511719L214.68164%2040.9746094C214.944336%2041.0234375%20215.124023%2041.2617188%20215.18457%2041.7050782%20215.254883%2042.1738282%20215.327148%2042.3535157%20215.375%2042.451172L214.87207%2042.451172C214.800781%2042.3535158%20214.728515%2042.0781251%20214.667969%2041.6816408%20214.597656%2041.2988283%20214.404297%2041.154297%20214.019531%2041.154297L213.686523%2041.154297%20213.686523%2042.4511719%20213.686523%2042.4511719zM213.686523%2040.7832031L214.03418%2040.7832031C214.427734%2040.7832031%20214.762695%2040.6386719%20214.762695%2040.265625%20214.762695%2040.0019531%20214.572265%2039.7382812%20214.03418%2039.7382812%20213.876953%2039.7382812%20213.768555%2039.75%20213.686523%2039.7617187L213.686523%2040.7832031z%22/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E%0A'); }

.bx-socialfooter-item.vk .bx-socialfooter-icon { background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2017.1.0%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2045%2026%22%20enable-background%3D%22new%200%200%2045%2026%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23ffffff%22%20d%3D%22M22%2C25.9h2.7c0%2C0%2C0.8-0.1%2C1.2-0.5c0.4-0.4%2C0.4-1.2%2C0.4-1.2s-0.1-3.7%2C1.6-4.2%0A%09c1.7-0.5%2C3.8%2C3.5%2C6%2C5.1c1.7%2C1.2%2C3%2C0.9%2C3%2C0.9l6-0.1c0%2C0%2C3.1-0.2%2C1.7-2.7c-0.1-0.2-0.9-1.9-4.5-5.2c-3.8-3.5-3.3-3%2C1.3-9.1%0A%09c2.8-3.7%2C3.9-6%2C3.5-7c-0.3-0.9-2.4-0.7-2.4-0.7l-6.8%2C0c0%2C0-0.5-0.1-0.9%2C0.2c-0.4%2C0.2-0.6%2C0.7-0.6%2C0.7S33.3%2C5%2C31.8%2C7.5%0A%09c-3%2C5.2-4.2%2C5.5-4.7%2C5.1c-1.1-0.8-0.9-3-0.9-4.6c0-5%2C0.8-7.1-1.5-7.7C24.1%2C0.1%2C23.5%2C0%2C21.6%2C0c-2.4%2C0-4.5%2C0-5.6%2C0.6%0A%09c-0.8%2C0.4-1.4%2C1.2-1%2C1.3c0.4%2C0.1%2C1.5%2C0.3%2C2%2C1c0.7%2C1%2C0.7%2C3.1%2C0.7%2C3.1s0.4%2C5.9-0.9%2C6.6c-0.9%2C0.5-2.2-0.5-4.8-5.2%0A%09C10.5%2C5%2C9.5%2C2.3%2C9.5%2C2.3S9.3%2C1.8%2C8.9%2C1.6c-0.4-0.3-1-0.4-1-0.4l-6.4%2C0c0%2C0-1%2C0-1.3%2C0.5c-0.3%2C0.4%2C0%2C1.2%2C0%2C1.2s5%2C11.9%2C10.7%2C17.9%0A%09C16.1%2C26.3%2C22%2C25.9%2C22%2C25.9L22%2C25.9z%22/%3E%0A%3C/svg%3E%0A'); }

.bx-socialfooter-item.tw .bx-socialfooter-icon { background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0D%0A%3Csvg%0D%0A%20%20%20xmlns%3Adc%3D%22http%3A//purl.org/dc/elements/1.1/%22%0D%0A%20%20%20xmlns%3Acc%3D%22http%3A//creativecommons.org/ns%23%22%0D%0A%20%20%20xmlns%3Ardf%3D%22http%3A//www.w3.org/1999/02/22-rdf-syntax-ns%23%22%0D%0A%20%20%20xmlns%3Asvg%3D%22http%3A//www.w3.org/2000/svg%22%0D%0A%20%20%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%0D%0A%20%20%20xmlns%3Asodipodi%3D%22http%3A//sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%22%0D%0A%20%20%20xmlns%3Ainkscape%3D%22http%3A//www.inkscape.org/namespaces/inkscape%22%0D%0A%20%20%20version%3D%221.1%22%0D%0A%20%20%20id%3D%22Layer_1%22%0D%0A%20%20%20x%3D%220px%22%0D%0A%20%20%20y%3D%220px%22%0D%0A%20%20%20width%3D%22803%22%0D%0A%20%20%20height%3D%22149%22%0D%0A%20%20%20viewBox%3D%220%200%20803%20149%22%0D%0A%20%20%20enable-background%3D%22new%200%200%20792%20612%22%0D%0A%20%20%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%0D%0A%20%20%20d%3D%22m%20501.78933%2C91.543692%20c%20-0.11695%2C0.02052%20-0.23801%2C0.01231%20-0.35701%2C0.03283%20l%200.61759%2C-0.100539%20c%20-0.0964%2C0.01436%20-0.16414%2C0.05335%20-0.26058%2C0.06771%20z%22%0D%0A%20%20%20id%3D%22path7%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%2087.907873%2C120.60762%20c%200%2C4.02976%20-1.444476%2C7.48502%20-4.335481%2C10.35961%20-2.891004%2C2.87869%20-6.354465%2C4.31701%20-10.40064%2C4.31701%20H%2044.040111%20c%20-12.136474%2C0%20-22.508388%2C-4.28829%20-31.121899%2C-12.87307%20C%204.3026488%2C113.82433%20-3.067e-6%2C103.4914%20-3.067e-6%2C91.39391%20V%2032.558172%20c%200%2C-4.146714%201.434217267%2C-7.628641%204.302651867%2C-10.453987%202.8684346%2C-2.821243%206.3729312%2C-4.234942%2010.5093862%2C-4.234942%204.015398%2C0%207.466547%2C1.440372%2010.330878%2C4.319066%202.872539%2C2.87459%204.312911%2C6.325739%204.312911%2C10.359604%20v%2021.303974%20h%2041.475348%20c%203.765077%2C0%206.990527%2C1.333679%209.682506%2C4.005139%202.689927%2C2.667357%204.029761%2C5.866134%204.029761%2C9.604537%200%2C3.730196%20-1.339834%2C6.93718%20-4.019502%2C9.606588%20-2.679668%2C2.665305%20-5.898962%2C4.001036%20-9.647625%2C4.001036%20H%2029.455824%20v%2010.31036%20c%200%2C4.044123%201.411648%2C7.478858%204.249305%2C10.310363%202.833554%2C2.82534%206.274444%2C4.23904%2010.322671%2C4.23904%20h%2029.137797%20c%204.044123%2C0%207.515791%2C1.44243%2010.406795%2C4.31907%202.891005%2C2.87869%204.335481%2C6.33189%204.335481%2C10.3596%20z%22%0D%0A%20%20%20id%3D%22path9%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20429.08949%2C120.60762%20c%200%2C4.02976%20-1.44447%2C7.48502%20-4.33342%2C10.35961%20-2.88896%2C2.87869%20-6.35447%2C4.31701%20-10.39859%2C4.31701%20h%20-13.23215%20c%20-12.13647%2C0%20-22.50838%2C-4.28829%20-31.12189%2C-12.87307%20-8.61352%2C-8.58479%20-12.91617%2C-18.91977%20-12.91617%2C-31.01726%20V%2032.558172%20c%200%2C-4.146714%201.43217%2C-7.628641%204.30265%2C-10.453987%202.86844%2C-2.821243%206.37088%2C-4.234942%2010.50939%2C-4.234942%204.01335%2C0%207.46655%2C1.440372%2010.32883%2C4.319066%202.87254%2C2.87459%204.31291%2C6.325739%204.31291%2C10.359604%20v%2021.303974%20h%2025.57585%20c%203.76507%2C0%206.99052%2C1.33573%209.68045%2C4.005139%202.69198%2C2.667357%204.02976%2C5.866134%204.02976%2C9.604537%200%2C3.730196%20-1.33778%2C6.935128%20-4.01745%2C9.604536%20-2.67967%2C2.665306%20-5.89896%2C4.001036%20-9.64557%2C4.001036%20H%20386.539%20v%2010.312412%20c%200%2C4.044123%201.41164%2C7.478858%204.2493%2C10.310363%202.83355%2C2.82534%206.27445%2C4.23904%2010.32062%2C4.23904%20h%2013.24035%20c%204.04207%2C0%207.51579%2C1.44243%2010.40474%2C4.31907%202.89101%2C2.87869%204.33548%2C6.33189%204.33548%2C10.3596%20z%22%0D%0A%20%20%20id%3D%22path11%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20352.07264%2C120.60762%20c%200%2C4.02976%20-1.44447%2C7.48502%20-4.33343%2C10.35961%20-2.88895%2C2.87869%20-6.35446%2C4.31701%20-10.39859%2C4.31701%20h%20-13.23214%20c%20-12.13647%2C0%20-22.50839%2C-4.28829%20-31.11985%2C-12.87307%20-8.61351%2C-8.58684%20-12.91616%2C-18.91977%20-12.91616%2C-31.01726%20V%2032.558172%20c%200%2C-4.146714%201.43422%2C-7.628641%204.30265%2C-10.453987%202.86844%2C-2.821243%206.37088%2C-4.234942%2010.50939%2C-4.234942%204.01335%2C0%207.46655%2C1.440372%2010.32883%2C4.319066%202.87253%2C2.87459%204.31291%2C6.325739%204.31291%2C10.359604%20v%2021.303974%20h%2025.57585%20c%203.76507%2C0%206.99052%2C1.33573%209.68045%2C4.005139%202.69198%2C2.667357%204.02976%2C5.866134%204.02976%2C9.604537%200%2C3.730196%20-1.33778%2C6.935128%20-4.01745%2C9.604536%20-2.67967%2C2.665306%20-5.89896%2C4.001036%20-9.64557%2C4.001036%20H%20309.5283%20v%2010.312412%20c%200%2C4.044123%201.41165%2C7.478858%204.2493%2C10.310363%202.83356%2C2.82534%206.27445%2C4.23904%2010.32062%2C4.23904%20h%2013.24035%20c%204.04207%2C0%207.51579%2C1.44243%2010.40475%2C4.31907%202.88279%2C2.87869%204.32932%2C6.33189%204.32932%2C10.3596%20z%22%0D%0A%20%20%20id%3D%22path13%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20229.95078%2C94.219256%20c%200%2C11.317804%20-4.0236%2C20.992094%20-12.08107%2C29.022894%20-8.05542%2C8.02875%20-17.75639%2C12.04209%20-29.10497%2C12.04209%20-10.38217%2C0%20-19.51684%2C-3.49834%20-27.41017%2C-10.50323%20-7.78253%2C7.00489%20-16.86795%2C10.50323%20-27.24602%2C10.50323%20-11.34653%2C0%20-21.05366%2C-4.01334%20-29.11113%2C-12.04209%20C%2096.944058%2C115.21341%2092.9184%2C105.53706%2092.9184%2C94.219256%20V%2065.536962%20c%200%2C-3.88203%201.348042%2C-7.138257%204.054383%2C-9.778941%202.69403%2C-2.642735%205.939997%2C-3.964102%209.717387%2C-3.964102%203.78559%2C0%207.02541%2C1.321367%209.72149%2C3.964102%202.70019%2C2.642736%204.05233%2C5.905118%204.05233%2C9.787148%20v%2028.692553%20c%200%2C3.783544%201.32547%2C6.986428%203.97026%2C9.631208%202.65094%2C2.64274%205.87024%2C3.95795%209.65378%2C3.95795%203.67685%2C0%206.83869%2C-1.31521%209.48758%2C-3.95795%202.64889%2C-2.64478%203.97026%2C-5.849716%203.97026%2C-9.631208%20V%2065.705211%20c%200%2C-3.773284%201.3583%2C-7.031563%204.06054%2C-9.785096%202.71249%2C-2.747378%206.01797%2C-4.126196%209.91436%2C-4.126196%203.78559%2C0%207.03361%2C1.348041%209.74406%2C4.048227%202.71044%2C2.69403%204.06259%2C5.931791%204.06259%2C9.703023%20v%2028.692553%20c%200%2C3.783544%201.32547%2C6.986428%203.97436%2C9.631208%202.64479%2C2.64274%205.81279%2C3.95795%209.48553%2C3.95795%203.7856%2C0%207.00489%2C-1.31521%209.64763%2C-3.95795%202.65094%2C-2.64478%203.97436%2C-5.849716%203.97436%2C-9.631208%20V%2065.545169%20c%200%2C-3.771232%201.35214%2C-7.008993%204.05438%2C-9.703023%202.69813%2C-2.698134%205.94205%2C-4.048227%209.71739%2C-4.048227%203.78354%2C0%207.02746%2C1.348041%209.72354%2C4.042071%202.70018%2C2.694031%204.05028%2C5.927688%204.05028%2C9.700972%20v%2028.682294%20z%22%0D%0A%20%20%20id%3D%22path15%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20269.73544%2C29.340929%20c%200%2C4.025657%20-1.44038%2C7.48091%20-4.33138%2C10.357552%20-2.88895%2C2.876642%20-6.35241%2C4.319066%20-10.39038%2C4.319066%20-4.04823%2C0%20-7.50964%2C-1.442424%20-10.40064%2C-4.319066%20-2.88075%2C-2.87459%20-4.32522%2C-6.331895%20-4.32522%2C-10.357552%200%2C-4.031812%201.44447%2C-7.482962%204.32522%2C-10.359604%202.891%2C-2.880745%206.35446%2C-4.317014%2010.40064%2C-4.317014%204.04002%2C0%207.50348%2C1.436269%2010.39038%2C4.317014%202.891%2C2.876642%204.33138%2C6.329843%204.33138%2C10.359604%20z%22%0D%0A%20%20%20id%3D%22path17%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20269.73544%2C120.59121%20c%200%2C4.03591%20-1.44038%2C7.49322%20-4.33138%2C10.37397%20-2.88895%2C2.88074%20-6.35241%2C4.31701%20-10.39038%2C4.31701%20-4.04823%2C0%20-7.50964%2C-1.43627%20-10.40064%2C-4.31701%20-2.88075%2C-2.8787%20-4.32522%2C-6.33806%20-4.32522%2C-10.37397%20V%2066.489003%20c%200%2C-4.035916%201.44447%2C-7.493221%204.32522%2C-10.371914%202.891%2C-2.880746%206.35446%2C-4.321118%2010.40064%2C-4.321118%204.04002%2C0%207.50348%2C1.440372%2010.39038%2C4.321118%202.891%2C2.876642%204.33138%2C6.335998%204.33138%2C10.371914%20v%2054.102207%20z%22%0D%0A%20%20%20id%3D%22path19%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20604.2261%2C67.463615%20c%200%2C3.732247%20-1.34189%2C6.937179%20-4.02771%2C9.60864%20-2.68172%2C2.665305%20-5.89896%2C4.001035%20-9.64968%2C4.001035%20h%20-20.10982%20c%20-3.75687%2C0%20-6.94744%2C1.309057%20-9.57376%2C3.931274%20-2.63247%2C2.616062%20-3.94153%2C5.796372%20-3.94153%2C9.542982%20V%20121.652%20c%200%2C3.7384%20-1.33573%2C6.95154%20-4.0154%2C9.62095%20-2.67967%2C2.67966%20-5.89075%2C4.00924%20-9.63942%2C4.00924%20-3.74661%2C0%20-6.96385%2C-1.32958%20-9.63941%2C-4.00514%20-2.67967%2C-2.67146%20-4.01745%2C-5.87434%20-4.01745%2C-9.6189%20V%2094.568064%20c%200%2C-11.221365%203.99077%2C-20.813591%2011.97848%2C-28.774625%207.98771%2C-7.958983%2017.61071%2C-11.943604%2028.86696%2C-11.943604%20h%2020.09545%20c%203.75277%2C0%206.96796%2C1.335731%209.64763%2C4.007191%202.68172%2C2.669409%204.02566%2C5.868185%204.02566%2C9.606589%20z%22%0D%0A%20%20%20id%3D%22path21%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20d%3D%22m%20475.18963%2C135.28219%20c%20-11.58864%2C0%20-22.51044%2C-4.40319%20-31.12806%2C-13.20957%20-8.6094%2C-8.81049%20-11.91898%2C-18.40682%20-11.91898%2C-30.820285%200%2C0%20-0.83919%2C-39.476883%2043.80621%2C-39.476883%2034.93212%2C0%2045.56666%2C24.537632%2045.56666%2C36.651536%200%2C9.629158%20-4.40524%2C13.047482%20-14.4304%2C13.047482%20h%20-44.64745%20c%200%2C0%20-1.61683%2C10.21597%2018.72279%2C10.21597%20h%2025.47942%20c%206.5145%2C0%2011.79382%2C5.27932%2011.79382%2C11.79588%200%2C6.5145%20-5.27932%2C11.79382%20-11.79382%2C11.79382%20H%20475.18963%20z%20M%20462.73512%2C82.669601%20h%2029.31426%20c%200%2C-9.63121%20-14.58019%2C-9.63121%20-14.58019%2C-9.63121%200%2C0%20-14.73407%2C-0.0021%20-14.73407%2C9.63121%20z%22%0D%0A%20%20%20id%3D%22path23%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%3Cpath%0D%0A%20%20%20style%3D%22fill%3A%23ffffff%22%0D%0A%20%20%20inkscape%3Aconnector-curvature%3D%220%22%0D%0A%20%20%20id%3D%22path25%22%0D%0A%20%20%20d%3D%22m%20802.97701%2C68.72548%20c%20-7.60401%2C1.298797%20-18.63251%2C-0.0513%20-24.47607%2C-2.482694%2012.14263%2C-1.005388%2020.36424%2C-6.524765%2023.53224%2C-14.017987%20-4.37652%2C2.694031%20-17.96978%2C5.628124%20-25.4671%2C2.831502%20-0.37343%2C-1.762507%20-0.77969%2C-3.44089%20-1.19211%2C-4.959232%20-5.70814%2C-21.012617%20-25.29064%2C-37.946229%20-45.79441%2C-35.89852%201.65376%2C-0.670943%203.33009%2C-1.294694%205.02489%2C-1.863046%202.24468%2C-0.808414%2015.49734%2C-2.9710253%2013.4127%2C-7.6430035%20C%20746.25259%2C0.572459%20730.06379%2C7.7907371%20727.0189%2C8.7407266%20731.0425%2C7.232644%20737.69858%2C4.6309451%20738.40646%2C3.1740001e-6%20732.24486%2C0.84535013%20726.19407%2C3.7630282%20721.52209%2C8.0041257%20723.21278%2C6.1882712%20724.49106%2C3.974365%20724.7619%2C1.5860546%20708.31867%2C12.103648%20698.71414%2C33.290669%20690.94597%2C53.858043%20684.84593%2C47.934458%20679.42504%2C43.270688%20674.57661%2C40.675144%20660.96693%2C33.378897%20644.68785%2C25.75436%20619.14278%2C16.258569%20c%20-0.78585%2C8.459625%204.17749%2C19.717923%2018.47042%2C27.192678%20-3.09414%2C-0.41857%20-8.75714%2C0.519109%20-13.27934%2C1.594259%201.84048%2C9.703023%207.86665%2C17.686628%2024.19088%2C21.544036%20-7.45834%2C0.490384%20-11.31985%2C2.199544%20-14.80999%2C5.851771%203.39575%2C6.746361%2011.69534%2C14.676618%2026.59971%2C13.045427%20-16.58686%2C7.158776%20-6.76483%2C20.40938%206.732%2C18.43144%20-23.01109%2C23.80513%20-59.3015%2C22.03852%20-80.14177%2C2.14619%2054.40177%2C74.20998%20172.67238%2C43.88213%20190.28924%2C-27.59483%2013.21778%2C0.106694%2020.96953%2C-4.575543%2025.78308%2C-9.74406%20z%22%0D%0A%20%20%20clip-path%3D%22none%22%20/%3E%0D%0A%3C/svg%3E'); }

.bx-socialfooter-item.gp .bx-socialfooter-icon { background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22408%22%20height%3D%22259%22%20viewBox%3D%220%200%20408%20259%22%3E%0A%20%20%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M129.6%2C103.9%20L129.6%2C155.2%20C129.6%2C155.2%20179.3%2C155.1%20199.6%2C155.1%20C188.6%2C188.3%20171.6%2C206.4%20129.6%2C206.4%20C87.1%2C206.4%2054%2C172%2054%2C129.5%20C54%2C87%2087.2%2C52.6%20129.6%2C52.6%20C152.1%2C52.6%20166.6%2C60.5%20179.9%2C71.5%20C190.6%2C60.8%20189.7%2C59.3%20216.8%2C33.7%20C193.8%2C12.8%20163.2%2C0%20129.7%2C0%20C58.2%2C0%200.2%2C58%200.2%2C129.5%20C0.2%2C201%2058.2%2C259%20129.7%2C259%20C236.6%2C259%20262.7%2C165.9%20254%2C103.9%20C228.7%2C103.9%20129.6%2C103.9%20129.6%2C103.9%20Z%20M363%2C106.4%20L363%2C61.5%20L331%2C61.5%20L331%2C106.4%20L284.9%2C106.4%20L284.9%2C138.4%20L331%2C138.4%20L331%2C184.5%20L363%2C184.5%20L363%2C138.4%20L407.9%2C138.4%20L407.9%2C106.4%20L363%2C106.4%20Z%22/%3E%0A%3C/svg%3E%0A'); }

.bx-socialfooter-item.in .bx-socialfooter-icon { background: no-repeat center url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%222500%22%20height%3D%22706%22%20viewBox%3D%220.5%200.5%20998.999%20282.085%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M57.741.5c-9.136%200-20.98%209.688-27.967%2016.137C14.413%2030.272.5%2055.344.5%2075.468c0%2028.595%2024.319%2039.389%2030.47%2039.389%202.028%200%203.757-1.046%203.757-3.798%200-2.157-1.368-3.952-2.729-5.796-5.632-8.61-7.441-16.827-7.441-27.91%200-23.107%2010.657-44.287%2019.497-53.979%201.63-1.754%205.313-5.543%206.415-5.543%201.094%200%201.365.891%201.365%203.645l-1.027%20151.241c0%2023.643-6.822%2033.035-6.822%2038.602%200%202.446%201.059%203.081%203.081%203.081%209.574%200%2019.115-11.669%2021.818-15.925%208.382-14.478%2010.438-25.78%2010.438-58.38V13.007c0-3.44-.965-4.927-4.233-7.048C70.31%202.924%2064.834.5%2057.741.5zm273.743.422c-4.503%200-6.428%202.354-6.641%209.638l-.999%2030.16-26.377-.914c-1.6-.041-2.323.465-3.023%201.871-2.24%204.2-3.419%207.491-3.419%2012.971%200%204.462%202.023%204.938%203.827%204.938l27.444.788-.084%2057.621c0%2012.221-7.712%2028.075-21.396%2041.261%200%200%201.177-3.981%201.11-8.158%200-11.823-7.609-22.537-17.753-30.119l-24.759-18.626c5.19-6.004%2013.983-17.912%2013.983-27.967%200-7.796-4.902-11.071-14.04-11.071-12.897%200-27.854%2011.812-27.854%2029.331%200%206.386%202.841%2012.134%207.16%2016.53-5.963%2011.314-14.4%2026.2-20.665%2036.801-4.732%208.117-12.737%2020.553-17.473%2020.553-3.492%200-5.106-5.494-5.106-26.602%200-17.537%201.246-36.604%201.871-54.906%200-4.195-.688-8.065-6.134-11.859-5.01-3.21-11.197-7.693-17.57-7.693-14.168%200-23.82%2013.037-30.441%2025.785-6.852%2013.212-10.557%2024.346-15.784%2040.5l.577-55.595c.178-3.964-.823-5.503-3.995-6.852-4.115-1.745-10.172-3.757-15.545-3.757-4.49%200-5.036%201.936-5.036%206.654l-.604%2066.709-.069%2025.729c0%2023.197%202.905%2027.065%2016.67%2027.065%207.621%200%2010.062-.895%2010.213-7.23.209-4.19%202.213-14.341%204.924-24.521%207.929-30.048%2017.324-53.814%2033.523-71.928%201.689-1.758%202.995-1.129%202.729%201.364%200%200-2.561%2040.665-2.561%2057.298%200%2029.582%204.552%2045.018%2019.271%2045.018%2014.446%200%2028.634-18.561%2036.379-31.091l24.845-41.556c16.099%2013.718%2027.333%2024.354%2027.333%2037.293%200%208.042-5.074%2015.91-12.803%2015.91-9.659%200-15.83-10.186-22.354-10.186-5.415%200-12.365%2010.454-12.365%2016.39%200%205.604%2012.229%2013.532%2034.171%2013.532%2032.391%200%2049.767-22.229%2060.195-46.845%201.996%2029.216%2013.637%2046.282%2031.793%2046.282%2011.909%200%2025.673-15.046%2031.934-33.425%200%200%20.618%204.771%205.373%2014.546%206.545%2012.765%2016.495%2018.626%2028.854%2018.626%2015.372%200%2028.52-9.319%2036.547-24.956%201.217%2011.849%2011.166%2024.898%2027.165%2024.898%2010.043%200%2019.199-7.695%2025.209-20.37%200%200%207.785%2020.934%2030.302%2020.934%2012.647%200%2027.623-11.716%2031.202-20.229l.394%2012.38-33.409%2030.809c-9.701%209.417-20.02%2022.947-20.02%2037.927%200%2019.052%2017.988%2030.007%2033.818%2030.007%2016.455%200%2027.373-10.425%2033.354-19.16%207.527-11.303%2010.706-32.606%2010.706-53.43l-.746-31.313c22.517-24.751%2040.14-58.962%2047.985-83.168l17.092-.45c3.311-.223%203.146%201.081%202.688%203.011-3.004%2012.694-5.627%2027.07-5.627%2041.387%200%2023.653%205.448%2033.946%2013.279%2042.358%206.809%207.048%2013.58%209.425%2020.707%209.425%2013.938%200%2022.688-11.51%2025.463-18.766%206.545%2012.765%2016.187%2018.71%2028.543%2018.71%2015.373%200%2028.521-9.319%2036.549-24.956%201.217%2011.849%2011.164%2024.898%2027.164%2024.898%2011.953%200%2018.886-6.897%2024.338-19.892.11%204.18.271%208.636.394%2012.814.144%202.162%201.872%203.53%203.419%204.094%205.081%201.923%209.541%202.885%2013.547%202.885%2010.448%200%2012.717-2.146%2012.717-8.976%200-11.265.33-29.064%203.531-43.355%203.398-14.228%208.526-30.335%2015.602-41.542.637-1.158%202.198-.854%202.266.549%201.016%2023.979%202.62%2064.571%208.919%2075.079%203.108%205.012%207.915%208.665%2015.108%208.665%203.373%200%207.508-1.438%208.566-2.335%201.072-.836%201.612-1.765%201.547-3.488%200-30.654%209.56-60.331%2019.133-80.284.263-.592%201.009-.638.984.141l-.534%2022.087c0%2036.276%202.615%2059.194%2020.735%2070.212a23.744%2023.744%200%200%200%2011.662%203.023c9.271%200%2017.678-5.178%2021.833-13.505%203.385-6.471%206.556-18.926%206.556-25.981%200-2.731.032-7.176-4.445-7.176-2.455%200-3.93%201.81-4.517%204.544-1.427%205.926-2.598%2011.008-4.812%2016.867-2.116%205.593-5.274%208.85-9.018%208.85-4.398%200-6.63-3.461-7.906-5.6-5.612-8.56-6.062-28.224-6.062-44.637l1.351-42.245c0-3.495-1.459-7.678-6.852-10.762-3.62-2.084-12.776-6.007-18.386-6.007-5.202%200-7.72%202.946-9.595%207.271-3.521%207.768-15.287%2038.237-18.442%2063.009-.113.653-.927.791-.984-.042-1.64-17.518-2.481-38.625-2.463-52.865%200-4.305-1.053-10.459-10.185-14.447-4.438-1.841-8.109-2.968-12.592-2.968-5.562%200-6.758%202.722-8.75%206.329-6.301%2011.642-10.658%2026.824-17.189%2045.974l.099-43.82c0-2.049-1.256-4.735-4.854-5.458-8.921-2.05-13.054-2.981-16.571-2.981-2.561%200-3.968%202.041-3.968%204.248l-.479%2074.714c-1.726%209.146-8.719%2030.977-18.64%2030.977-8.143%200-11.943-8.25-11.943-42.736l1.478-56.047c0-3.54-2.324-5.027-5.711-6.526-4.843-1.924-8.696-2.688-13.618-2.688-6.178%200-8.298%202.957-7.048%2010.06-6.791-9.188-13.58-14.266-25.574-14.266-24.08%200-42.231%2028.965-42.231%2071.057-.236%2011.803%202.616%2023.534%202.616%2023.534-2.179%209.796-7.301%2017.781-14.377%2017.781-8.927%200-14.616-12.621-14.616-34.494%200-21.938%208.356-46.681%208.356-53.387%200-7.797-5.109-12.73-14.152-12.73-4.53%200-21.335%203.812-29.95%205.063%200%200%20.972-4.103.9-7.329%200-7.688-3.607-12.506-12.562-12.506-10.943%200-18.978%207.814-18.978%2021.145%200%205.981%203.445%2011.515%208.005%2014.488-5.919%2024.688-15.543%2043.048-29.725%2063.559l1.195-83.056c0-2.7-.719-4.377-6.008-6.43-2.796-1.208-7.353-2.603-13.097-2.603-8.325%200-7.774%205.945-7.329%2010.396-3.809-6.754-12.148-14.771-25.013-14.771-35.058%200-45.821%2053.46-40.543%2091.426%200%204.629-4.52%2021.06-14.729%2021.06-8.143%200-11.943-8.25-11.943-42.736l1.492-56.047c0-3.541-2.34-5.028-5.727-6.526-4.843-1.924-8.682-2.688-13.604-2.688-6.179%200-8.299%202.957-7.049%2010.059-6.791-9.188-13.594-14.266-25.589-14.266-24.08%200-42.471%2026.49-42.471%2068.58%200%2016.067-13.834%2040.585-23.535%2040.585-5.389%200-11.127-9.893-11.127-35.169.027-17.229%202.377-75.881%202.377-75.881l33.861-.549c1.616-.015%202.552-1.781%203.151-2.869%201.555-3.155%202.307-5.256%202.307-9.031%200-3.406-.682-4.65-5.05-4.896l-33.749-2.026%201.436-31.44c.101-1.985-1.097-3.279-3.264-4.248C344.57%203.394%20336.558.923%20331.484.922zm102.482%2082.38c9.028%200%2018.189%208.234%2018.189%2037.447%200%2036.782-13.4%2053.895-23.704%2053.895-9.66%200-16.993-13.635-16.993-40.417%200-27.071%207.161-50.925%2022.508-50.925zm325.131%200c9.028%200%2018.189%208.234%2018.189%2037.447%200%2036.782-13.4%2053.895-23.704%2053.895-9.66%200-16.994-13.635-16.994-40.417.001-27.071%207.162-50.925%2022.509-50.925zm-206.217.169c11.782%200%2016.994%2012.144%2016.994%2035.688%200%2035.497-10.552%2055.708-23.367%2055.708-8.181%200-17.588-13.433-17.092-39.854%200-16.893%205.508-51.542%2023.465-51.542zm19.947%20118.746v13.982c0%2046.396-12.363%2054.315-22.297%2054.315-3.764%200-12.984-2.843-12.984-14.321%200-16.045%2016.775-34.298%2021.988-39.938l13.293-14.038z%22/%3E%3C/svg%3E'); }

@media (max-width: 580px) {

	.bx-socialfooter-icon {
		top: 3px;
		right: 3px;
		bottom: 3px;
		left: 3px;
	}
}

/* End */


/* Start:/bitrix/components/bitrix/sender.subscribe/templates/.default/style.min.css?17689476684471*/
.bx-subscribe{margin:10px 0}.bx-subscribe div.bx-block-title{font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600);color:#343434;text-transform:uppercase;font-size:12px;margin-bottom:9px}.bx-subscribe-desc{color:#aaa;font-size:12px;position:relative;margin-top:-5px;margin-bottom:3px}.bx-subscribe .bx-input-group .bx-form-control{position:relative;margin-bottom:15px;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#f8fafc;border:1px solid #d5dadc;border-radius:2px;outline:0;box-shadow:none !important;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bx-ios .bx-subscribe .bx-input-group .bx-form-control{background-image:-webkit-linear-gradient(#f8fafc 0,#f8fafc 100%);background-image:linear-gradient(#f8fafc 0,#f8fafc 100%)}.btn-subscribe{cursor:pointer;text-align:center;background:#70bb18;border:0;color:#fff;font-size:13px;position:relative;text-transform:uppercase;border-radius:2px;line-height:30px;height:40px;padding:5px 60px 5px 20px;vertical-align:middle;outline:0;-webkit-transition:width 5s linear;-moz-transition:width 5s linear;-ms-transition:width 5s linear;-o-transition:width 5s linear;transition:width 5s linear}.btn-subscribe:hover{background:#7ec629}.btn-subscribe:before{content:" ";position:absolute;top:0;bottom:0;right:0;width:40px;background-color:#5b9f0b;	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAKCAYAAACE2W/HAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MkYyNDcxQTFERjZGMTFFNDk5NTY5MzQ3QzQxRkMzMEIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MkYyNDcxQTJERjZGMTFFNDk5NTY5MzQ3QzQxRkMzMEIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyRjI0NzE5RkRGNkYxMUU0OTk1NjkzNDdDNDFGQzMwQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyRjI0NzFBMERGNkYxMUU0OTk1NjkzNDdDNDFGQzMwQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Plv+rHwAAADiSURBVHjajNK9asJQFMDxG42KUqFx9kEcRO1UcBCHjh3q3NXHcBEcdHQQPxY7+AaS0a1v0UEhSlu/rv+jhxIlBQ/84OTmnHuSmzjW2qExpoK9ekDcXMcRAVw1d2hckjxqwQxTJJXEDj+ooa5rK+neoocMnvGB7s3EVxQwwhdeDBMDvEPylr3EBB6yGOhaGzE0cJ5o4enOTSzQgY8D8nhDX2ty0hPTCxt6LDmsMtb6fk+hpr9a10THJ4pw8BtVII0ydRNxb/vPplLrSGNKT/Pb3BdVpOU7jklKSNzZKD+JfxJgAAV0YSAU8mZTAAAAAElFTkSuQmCC"); background-position:50%;background-repeat:no-repeat;border-radius:0 2px 2px 0}.btn-subscribe span{display:block}.btn-subscribe.send{padding:5px 40px;-webkit-animation-name:MeilSend;animation-name:MeilSend;-webkit-animation-duration:.5s;animation-duration:.5s;outline:0;color:#fff}.btn-subscribe:hover,.btn-subscribe:active{color:#fff}.btn-subscribe.send:before{width:0;background-position:100px 50%;-webkit-animation-name:MeilSendButton;animation-name:MeilSendButton;-webkit-animation-duration:.5s;animation-duration:.5s}@keyframes MeilSend{0{padding:5px 60px 5px 20px}100%{padding:5px 40px}}@-webkit-keyframes MeilSend{0{padding:5px 60px 5px 20px}100%{padding:5px 40px}}@keyframes MeilSendSpan{0{color:transparent}100%{color:#fff}}@-webkit-keyframes MeilSendSpan{0{color:transparent}100%{color:#fff}}@keyframes MeilSendButton{0{width:40px;background-position:50%}100%{width:0;background-position:100px 50%}}@-webkit-keyframes MeilSendButton{0{width:40px;background-position:50%}100%{width:0;background-position:100px 50%}}.bx_subscribe_response_container{padding:40px;color:#35414e}.bx_subscribe_checkbox_container{line-height:16px;font-size:13px;margin-bottom:3px;vertical-align:middle;color:#aaa}.bx-sender-subscribe-agreement .main-user-consent-request a{font:11px/10px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400)}
/* End */


/* Start:/local/templates/belbaza_custom/template_styles.min.css?17809519898454*/
.bx-yellow,.bx-theme-yellow{--primary:#f9a91d;--theme-color-primary:#f9a91d;--theme-color-second:#faba4a;--theme-color-light:#fff;--theme-b-link:#f9a91d;--theme-b-link-hover:#faba4a;--theme-b-tx-primary:#fff;--theme-b-bg-primary:#f9a91d;--theme-b-bd-primary:#f9a91d;--theme-b-sd-primary:rgba(249,169,29,0.5);--theme-b-tx-primary-hover:#fff;--theme-b-bg-primary-hover:#faba4a;--theme-b-bd-primary-hover:#daa53e;--theme-b-tx-primary-active:#fff;--theme-b-bg-primary-active:#faba4a;--theme-b-bd-primary-active:#daa53e;--theme-b-tx-primary-disabled:#fff;--theme-b-bg-primary-disabled:#daa53e;--theme-b-bd-primary-disabled:#b7853b}.bx-blue,.bx-theme-blue{--primary:#0083d1;--theme-color-primary:#0083d1;--theme-color-second:#5ca6e4;--theme-color-light:#f0f6f8;--theme-b-link:#44b1c9;--theme-b-link-hover:#5cc3d1;--theme-b-tx-primary:#fff;--theme-b-bg-primary:#0083d1;--theme-b-bd-primary:#0083d1;--theme-b-sd-primary:rgba(0,131,209,0.5);--theme-b-tx-primary-hover:#fff;--theme-b-bg-primary-hover:#5ca6e4;--theme-b-bd-primary-hover:#5599d2;--theme-b-tx-primary-active:#fff;--theme-b-bg-primary-active:#5ca6e4;--theme-b-bd-primary-active:#5599d2;--theme-b-tx-primary-disabled:#fff;--theme-b-bg-primary-disabled:#5599d2;--theme-b-bd-primary-disabled:#4d8bbf}.bx-red,.bx-theme-red{--primary:#e22b2b;--theme-color-primary:#e22b2b;--theme-color-second:#e95c5c;--theme-color-light:#f0f0f0;--theme-b-link:#e22b2b;--theme-b-link-hover:#e95c5c;--theme-b-tx-primary:#fff;--theme-b-bg-primary:#e22b2b;--theme-b-bd-primary:#e22b2b;--theme-b-sd-primary:rgba(226,43,43,0.5);--theme-b-tx-primary-hover:#fff;--theme-b-bg-primary-hover:#e95c5c;--theme-b-bd-primary-hover:#d05454;--theme-b-tx-primary-active:#fff;--theme-b-bg-primary-active:#e95c5c;--theme-b-bd-primary-active:#d05454;--theme-b-tx-primary-disabled:#fff;--theme-b-bg-primary-disabled:#d05454;--theme-b-bd-primary-disabled:#c04e4e}.bx-green,.bx-theme-green{--primary:#63aa28;--theme-color-primary:#63aa28;--theme-color-second:#5b9f0b;--theme-color-light:#a8d95b;--theme-b-link:#44b1c9;--theme-b-link-hover:#5cc3d1;--theme-b-tx-primary:#fff;--theme-b-bg-primary:#63aa28;--theme-b-bd-primary:#63aa28;--theme-b-sd-primary:rgba(99,170,40,0.5);--theme-b-tx-primary-hover:#fff;--theme-b-bg-primary-hover:#5b9f0b;--theme-b-bd-primary-hover:#56940b;--theme-b-tx-primary-active:#fff;--theme-b-bg-primary-active:#5b9f0b;--theme-b-bd-primary-active:#56940b;--theme-b-tx-primary-disabled:#fff;--theme-b-bg-primary-disabled:#56940b;--theme-b-bd-primary-disabled:#497c09}body{background-attachment:fixed;background-size:cover;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}#pagetitle{margin-bottom:35px}h1,h2,h3,h4,h5{font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400)}.bx-content-section,.bx-header-section{padding-bottom:2px;background-color:rgba(255,255,255,.95)}.bx-header-logo{order:1}.bx-header-personal{order:3}.bx-header-contact{order:2}.bx-logo-block{display:block;height:50px;border-bottom:0}.bx-logo-block img{max-height:50px;width:auto}@media(max-width:767px){.bx-logo-block img{max-width:100%;max-height:45px;width:auto;height:auto}.bx-header-logo{padding:5px 50px;height:55px;background-color:var(--theme-color-primary)}.bx-logo-block{height:auto}body.bx-theme-green .bx-store-logo{background:#33b111}}.bx-header-phone-block{display:flex;align-items:center}.bx-header-phone-number{color:#000;white-space:nowrap;font:21px/28px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600);transition:250ms linear all}.bx-header-phone-icon{display:block;margin-right:10px;width:26px;height:26px;	background: no-repeat center url(/local/templates/belbaza_custom/images/phone.svg);}@media(max-width:991px){.bx-header-phone-number{font:15px/18px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600)}}.bx-header-worktime{color:#000;font:16px/22px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600);transition:250ms linear all}.bx-worktime-title{color:#adadad;font:12px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400)}.bx-worktime-schedule{color:#000;font:12px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400)}@media(max-width:991px){.bx-header-worktime{font:15px/18px var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-regular,400)}}.sidebar-block-title{color:#343434;text-transform:uppercase;font-size:14px;font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600)}.bx-footer-bg{background-color:#1f496a}.bx-footer-logo{border-bottom:none !important;text-decoration:none !important}.bx-footer-logo img{max-width:100%;height:auto}.bx-inclinkspersonal-item.bx-theme-blue:hover{background:#0083d1}.bx-theme-blue.bx-inclinkspersonal-selected{background:#3398d7}.bx-inclinkspersonal-item.bx-theme-black:hover{background:#303030}.bx-theme-black.bx-inclinkspersonal-selected{background:#484848}.bx-inclinkspersonal-item.bx-theme-green:hover{background:#44b1c9}.bx-theme-green.bx-inclinkspersonal-selected{background:#5cc3d1}.bx-inclinkspersonal-item.bx-theme-red:hover{background:#e63c3c}.bx-theme-red.bx-inclinkspersonal-selected{background:#e95c5c}.bx-inclinkspersonal-item.bx-theme-yellow:hover{background:#f4a52e}.bx-theme-yellow.bx-inclinkspersonal-selected{background:#fbb859}.btn-primary,.list-group-item.active{border-color:var(--theme-b-bd-primary);background-color:var(--theme-b-bg-primary);color:var(--theme-b-tx-primary)}.btn-primary:hover{border-color:var(--theme-b-bd-primary-hover);background-color:var(--theme-b-bg-primary-hover);color:var(--theme-b-tx-primary-hover)}.btn-primary:focus,.btn-primary.focus{box-shadow:0 0 0 .2rem var(--theme-b-sd-primary)}.btn-primary.disabled,.btn-primary:disabled{border-color:var(--theme-b-bg-primary);background-color:var(--theme-b-bg-primary);color:var(--theme-b-tx-primary)}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{border-color:var(--theme-b-bd-primary-active);background-color:var(--theme-b-bg-primary-active);color:var(--theme-b-tx-primary-active)}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem var(--theme-b-sd-primary)}.form-control:focus{border-color:var(--theme-color-primary);box-shadow:0 0 0 .2rem var(--theme-b-sd-primary)}a,.btn-link{color:var(--theme-b-link)}a:hover,.btn-link:hover{color:var(--theme-b-link-hover)}.g-font-size-15{font-size:15px}.g-font-size-17{font-size:17px}.g-font-size-20{font-size:20px}.text-primary{color:var(--primary) !important}.bg-primary{background:var(--primary) !important}.border-primary{border-color:var(--primary) !important}.sidebar h2,.sidebar h3,.sidebar h4,.sidebar h5{text-transform:uppercase;font-size:14px;font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600)}.sidebar li{font-size:12px;font-family:var(--ui-font-family-secondary,var(--ui-font-family-open-sans));font-weight:var(--ui-font-weight-semi-bold,600)}.sidebar-icon{width:27px;height:27px;margin-right:5px;border-radius:50%;background-color:var(--theme-color-primary);background-repeat:no-repeat;background-position:center;}

.sidebar-icon-label {
	background-image:  url(/local/templates/belbaza_custom/images/label.svg); background-size:19px auto;}

.sidebar-icon-delivery {
	background-image: url(/local/templates/belbaza_custom/images/delivery.svg); background-size:17px auto;}

.sidebar-icon-sale {
	background-image: url(/local/templates/belbaza_custom/images/sale.svg); background-size:auto 17px;}

.sidebar-icon-self {
	background-image: url(/local/templates/belbaza_custom/images/self.svg); background-size:auto 17px;}

.sidebar-icon-phone {
	background-image: url(/local/templates/belbaza_custom/images/phone_white.svg); background-size:auto 21px}

/* === Force badge above any image layers (production fix for tall photos) === */
.bb-actions__badge,
.bb-actions__badge--global,
.bb-actions__badge--detail {
    z-index: 9999 !important;
    position: absolute !important;
    pointer-events: none !important;
}
.bb-actions [data-entity="item"] .product-item-image-wrapper,
.product-item-container .product-item-image-wrapper {
    position: relative !important;
}
/* End */
/* /local/templates/belbaza_custom/css/mobile-product-grid.css?17809519893082 */
/* /local/templates/belbaza_custom/components/bitrix/catalog.section/popular_carousel/style.css?17809519896777 */
/* /local/templates/belbaza_custom/css/home_actions.css?17809519893041 */
/* /local/templates/belbaza_custom/css/header-footer.css?178095198931215 */
/* /local/templates/belbaza_custom/css/cart.css?178095198947116 */
/* /bitrix/components/bitrix/search.title/templates/bootstrap_v4/style.min.css?1768947665708 */
/* /bitrix/components/bitrix/sale.basket.basket.line/templates/bootstrap_v4/style.min.css?17689476634065 */
/* /bitrix/components/bitrix/menu/templates/bootstrap_v4/style.min.css?176894763410230 */
/* /bitrix/components/bitrix/breadcrumb/templates/universal/style.min.css?1768947634620 */
/* /bitrix/components/bitrix/eshop.socnet.links/templates/big_squares/style.css?176894763732137 */
/* /bitrix/components/bitrix/sender.subscribe/templates/.default/style.min.css?17689476684471 */
/* /local/templates/belbaza_custom/template_styles.min.css?17809519898454 */
