.tax-product_brand .brand-description{overflow:hidden;zoom:1}.tax-product_brand .brand-description img.brand-thumbnail{width:25%;float:right}.tax-product_brand .brand-description .text{width:72%;float:left}.widget_brand_description img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0 0 1em}ul.brand-thumbnails{margin-left:0;margin-bottom:0;clear:both;list-style:none}ul.brand-thumbnails:before{clear:both;content:"";display:table}ul.brand-thumbnails:after{clear:both;content:"";display:table}ul.brand-thumbnails li{float:left;margin:0 3.8% 1em 0;padding:0;position:relative;width:22.05%}ul.brand-thumbnails.fluid-columns li{width:auto}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:both}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:0}ul.brand-thumbnails.columns-1 li{width:100%;margin-right:0}ul.brand-thumbnails.columns-2 li{width:48%}ul.brand-thumbnails.columns-3 li{width:30.75%}ul.brand-thumbnails.columns-5 li{width:16.95%}ul.brand-thumbnails.columns-6 li{width:13.5%}.brand-thumbnails li img{box-sizing:border-box;width:100%;max-width:none;height:auto;margin:0}@media screen and (max-width:768px){ul.brand-thumbnails:not(.fluid-columns) li{width:48%!important}ul.brand-thumbnails:not(.fluid-columns) li.first{clear:none}ul.brand-thumbnails:not(.fluid-columns) li.last{margin-right:3.8%}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(odd){clear:both}ul.brand-thumbnails:not(.fluid-columns) li:nth-of-type(even){margin-right:0}}.brand-thumbnails-description li{text-align:center}.brand-thumbnails-description li .term-thumbnail img{display:inline}.brand-thumbnails-description li .term-description{margin-top:1em;text-align:left}#brands_a_z h3:target{text-decoration:underline}ul.brands_index{list-style:none outside;overflow:hidden;zoom:1}ul.brands_index li{float:left;margin:0 2px 2px 0}ul.brands_index li a,ul.brands_index li span{border:1px solid #ccc;padding:6px;line-height:1em;float:left;text-decoration:none}ul.brands_index li span{border-color:#eee;color:#ddd}ul.brands_index li a:hover{border-width:2px;padding:5px;text-decoration:none}ul.brands_index li a.active{border-width:2px;padding:5px}div#brands_a_z a.top{border:1px solid #ccc;padding:4px;line-height:1em;float:right;text-decoration:none;font-size:.8em}/**
 * Цветовые переменные для конструктора блоков
 * Эти переменные можно динамически изменять через интерфейс конструктора
 */

:root {
    /* Основные цвета бренда */
    --color-primary: #4A90E2;           /* Основной цвет (синий) */
    --color-secondary: #1a237e;         /* Вторичный цвет (темно-синий) */
    --color-accent: #FFD700;            /* Акцентный цвет (золотой) */
    
    /* Дополнительные цвета */
    --color-success: #4caf50;           /* Успех/положительный (зеленый) */
    --color-danger: #dc3545;            /* Опасность/отрицательный (красный) */
    --color-info: #17a2b8;              /* Информация (голубой) */
    
    /* Цвета текста */
    --color-text-dark: #333333;         /* Основной темный текст */
    --color-text-light: #666666;        /* Вторичный текст */
    --color-text-white: #ffffff;        /* Белый текст */
    
    /* Цвета фона */
    --color-background: #ffffff;         /* Основной фон */
    --color-background-alt: #f8f9fa;    /* Альтернативный фон */
    --color-background-dark: #1a237e;   /* Темный фон */
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, #FFC700 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(74, 144, 226, 0.8) 100%);
    
    /* Тени */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 6px 20px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 15px rgba(74, 144, 226, 0.3);
    --shadow-accent: 0 4px 15px rgba(255, 215, 0, 0.4);
    
    /* Радиусы скругления */
    --radius-small: 4px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50px;
    
    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    /* Размеры контейнеров */
    --container-width: 1200px;
    --container-wide: 1400px;
    
    /* Отступы секций */
    --section-padding: 100px;
    --section-padding-tablet: 80px;
    --section-padding-mobile: 60px;
    --section-padding-small: 40px;
}

/* Класс для применения цветовой темы к блокам */
.constructor-block {
    color: var(--color-text-dark);
}

/* Вспомогательные классы */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-success { color: var(--color-success); }
.text-white { color: var(--color-text-white); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-light { background-color: var(--color-background-alt); }

.gradient-primary { background: var(--gradient-primary); }
.gradient-accent { background: var(--gradient-accent); }/*============= ALIGNES ===============*/

.footer-of__links {
	display:flex;
	flex-direction:row;
	align-items:center;
	gap:24px;
	flex-wrap:wrap;
	margin-top:24px;
}

.footer-of__link {
	font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #fff;
	opacity:.7;
}

.footer-of__link:hover {
	        color: #BA1735;
}

@media(max-width:600px) {
	.footer-of__links {
		flex-direction:column;
		margin-top:16px;
		gap:4px;
		align-items:flex-start;
	}
	
	.footer-of__link {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 10px;
		line-height: 130%;
		color: #fff;
	}
}

.phone-section__outer{
	display:flex;
gap:3px;
}

.delivery-hero__unique-container {
	    padding-left: 10px !important;
padding-right: 10px !important;
    max-width: 1440px !important;
}

.delivery-bread__unique {
		    padding-left: 10px !important;
padding-right: 10px !important;
    max-width: 1440px !important;
}

@media(max-width:480px) {
	.delivery-hero__unique-container {
		        padding-left: 16px !important;
        padding-right: 16px !important;
	}

.delivery-bread__unique {
		        padding-left: 16px !important;
        padding-right: 16px !important;
}

}

.woocommerce-shop h1.page-title {
	display:none;
}

#billing_country_field {
	display:none;
}

.alignwide {
  width: 100%;
}
.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}
@media only screen and (min-width: 1921px) {
  .alignfull {
    max-width: unset;
  }
}

:root {
  --bg-primary-main: #fff;
  --bg-primary-second: #fafafa;
  --bg-primary-third: #f3f4f4;
  --bg-primary-stroke: #d5d5d5;
  --bg-alt-main: #e8f7f9;
  --bg-alt-stroke: #e51a4b;
  --text-primary-head: #1f1f1f;
  --text-primary-main: #4f4f4f;
  --text-primary-second: #6a6a6a;
  --text-alt-head: #fff;
  --text-alt-main: #eee;
  --text-alt-second: #fff;
  --colors-main: #e51a4b;
  --colors-second: #17aec1;
  --hover-main: #17aec1;
  --hover-second: #fff;
}


:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Pobeda", sans-serif;
  --third-family: "Roboto Condensed", sans-serif;
  --font3: "Rubik", sans-serif;
  --font4: "Public Sans", sans-serif;
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  box-sizing: inherit;
  color: var(--card);
}
body {
  background-color: var(--head);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}
.seo-text:has(.text-holder)::-webkit-scrollbar  {
  width: 3px;
	background: var(--main-text);
  border: 1px solid var(--head);
}
.seo-text:has(.text-holder)::-webkit-scrollbar-thumb {
  background-color: var(--primary);
	border-radius: 100px;
}
a {
  text-decoration: none;
  color: var(--card);
  transition: all 0.3s ease-in;
}
a:hover {
  color: var(--primary);
}
ul li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
  list-style-type: none;
}
ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 130%;
}
p {
  font-size: 18px;
  line-height: 130%;
}

.article-single__text h2,
.article-single__text h3,
.article-single__text h4,
.article-single__text h5,
.article-single__text-columns h2{
	    font-family: var(--second-family);
}

/* Typography classes based on provided specifications */

/* H1 Title */
h1,
.h1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 110%;
}

/* H2 Title */
h2,
.h2 {
  font-weight: bold;
  font-size: 44px;
  line-height: 110%;
}

/* H3 Title */
h3,
.h3 {
  font-weight: bold;
  font-size: 32px;
  line-height: 120%;
}

/* H4 Title */
h4,
.h4 {
  font-weight: bold;
  font-size: 24px;
  line-height: 120%;
}

/* H5 Title */
h5,
.h5 {
  font-weight: bold;
  font-size: 20px;
  line-height: 120%;
}

/* H6 Title */
h6,
.h6 {
  font-weight: bold;
  font-size: 16px;
  line-height: 120%;
}

/* Button */
.button,
.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 100%;
}

/* Menu */
.menu {
  font-weight: 500; /* Medium */
  font-size: 16px;
  line-height: 120%;
}

/* Numbers */
.numbers {
  font-weight: bold;
  font-size: 54px;
  line-height: 100%;
}

/* Body text classes */

.p1 {
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
}

.p2 {
  font-size: 16px;
  line-height: 135%;
  font-weight: 400;
}

.p3 {
  font-size: 14px;
  line-height: 140%;
  font-weight: 400;
}

.p4 {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
}

/* Utility classes for font weights */
.bold {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}



h1.page-title {
font-family: var(--second-family);
font-weight: 700;
font-size: 45px;
line-height: 115%;
color: #1e1e1e;
  text-transform: uppercase;
  margin-bottom: 40px;
}
main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.breadcrumbs {
  padding: 20px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text);
	display: flex;
	gap: 5px;
	flex-wrap:wrap;
	  padding: 20px 0 30px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1e1e1e;
  opacity: 1;
  display: flex;
  gap: 5px;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--main-text);
  transition: 0.3s;
	  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  transition: opacity 0.3s ease;
}
.breadcrumbs span:hover {
  opacity: 1;
}
.breadcrumbs a {
	  color: inherit;
  text-decoration: none;
}
.breadcrumbs .current-item {
  color: #1e1e1e;
	font-weight:600;
 opacity: 1;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #1e1e1e;
}
.breadcrumbs .current-item span {
 color: #1e1e1e;
		font-weight:600;
opacity: 1;
}

@media(max-width:480px) {
	.breadcrumbs {
		padding-top: 30px;
        padding-bottom: 24px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 12px;
        color: #1e1e1e;
        /* flex-wrap: wrap; */
        overflow: scroll;
        flex-wrap: nowrap;
        /* width: 100vw; */
        /* padding-right: 30px; */
        /* margin-left: calc(-100vw / 2 + 100% / 2); */
        margin-right: calc(-100vw / 2 + 100% / 2);
        max-width: 1920px;
	}
	.breadcrumbs span {
	  font-family: inherit;
	  font-size: inherit;
	  line-height: inherit;
	  color: #1e1e1e;
	  transition: 0.3s;
				text-wrap:nowrap;
	}
}

.container {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  height: fit-content;
  background-color: var(--primary);
  border-radius: 10px;
  outline: none;
  padding: 13px 35px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  min-width: 220px;
  color: var(--head);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.btn:hover {
  background-color: var(--hover);
  color: var(--head);
}
#main {
  min-height: 83vh;
}


/*============ HEADER =================*/
.site-header {
  border-radius: 0 0 20px 20px;
  z-index: 1000;
  background: #1f2022;
  position: sticky;
  top: 0;
}

.header-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styles */
.header-logo {
  flex-shrink: 0;
  width: 112px;
  height: 80px;
}

.header-logo .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  height: 100%;
  width: 100%;
}

.header-logo img,
.header-logo svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin: 0;
}

.company-subtitle {
  font-size: 12px;
  color: #ccc;
  line-height: 1;
  margin-top: 2px;
}

/* Navigation Styles */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

.nav-menu a:hover {
  color: #BA1735;
}

/* Header Contacts */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone-icon-mobile {
  display: none; /* Скрываем мобильную иконку телефона на десктопе */
}

.phone-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--colors-main);
}

.phone-number {
  font-weight: 600;
}

.order-call {
  font-size: 12px;
  color: #ccc;
  margin-top: 2px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.order-call:hover {
  color: white;
}

.order-call[data-modal] {
  cursor: pointer;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.cart-icon:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

.cart-icon:hover {
  color: #17aec1;
}

.cart-icon svg {
  color: white;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e51a4b;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  min-width: 20px;
  animation: cartBounce 0.3s ease-out;
}

.cart-count.show {
  display: flex !important;
}

@keyframes cartBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Cart Wrapper & Dropdown */
.cart-wrapper {
  position: relative;
  z-index: 1000;
}

.cart-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 20px);
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  max-height: calc(100vh - 120px);
  display: none;
  flex-direction: column;
  pointer-events: none;
}

.cart-dropdown.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: flex !important;
  pointer-events: auto !important;
}

.cart-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e5e5;
}

.cart-dropdown__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.cart-dropdown__close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cart-dropdown__close:hover {
  color: #333;
}

.cart-dropdown__content {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  padding: 0;
}

.cart-dropdown__content .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
}

.cart-dropdown__content .woocommerce-mini-cart-item {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.cart-dropdown__content .woocommerce-mini-cart-item img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
  border-radius: 4px;
}

.cart-dropdown__content .woocommerce-mini-cart-item a {
  font-size: 13px;
  line-height: 1.4;
}

.cart-dropdown__content .woocommerce-mini-cart-item .quantity {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.cart-dropdown__content .woocommerce-mini-cart-item .remove {
  font-size: 18px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin-left: auto;
}

.cart-dropdown__content .woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

.cart-dropdown__content .woocommerce-mini-cart__total {
  padding: 10px 12px;
  margin: 0;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.cart-dropdown__content .woocommerce-mini-cart__buttons {
  padding: 10px 12px;
  margin: 0;
  display: flex;
  gap: 8px;
}

.cart-dropdown__content .woocommerce-mini-cart__buttons .button {
  flex: 1;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
}

/* Скрываем кнопку "Просмотр корзины" если она все еще появляется */
.cart-dropdown__content .woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout),
.cart-dropdown__content .woocommerce-mini-cart__buttons a[href*="cart"]:not(.checkout) {
  display: none !important;
}

.cart-dropdown__content .woocommerce-mini-cart__empty-message {
  padding: 30px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cart-dropdown {
    width: calc(100vw - 20px);
    right: -10px;
  }
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  
  .burger {
    display: flex !important;
  }
  
  .header-contacts {
    gap: 15px;
  }
  
  .phone-section {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    min-height: 60px;
  }
  
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
  }
  
  .header-contacts {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
  }
  
  .phone-section {
    display: none; /* Скрываем секцию с телефоном на мобилке */
  }
  
  .phone-icon-mobile {
    display: flex !important; /* Показываем иконку телефона на мобилке */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
	  opacity: 0;
	  width:0px;
	  height:0px;
  }
  
  .phone-icon-mobile:hover {
    color: #17aec1;
  }
  
  .phone-icon-mobile svg {
    color: white;
  }
  
  .cart-icon {
    width: 40px;
    height: 40px;
  }
  
  .burger {
    order: -1; /* Бургер слева */
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-wrapper {
    padding: 12px 0;
    min-height: 60px;
  }
  
  .company-name {
    font-size: 20px;
  }
  
  .company-subtitle {
    font-size: 10px;
  }
  
  .phone-link {
    font-size: 14px;
  }
  
  .order-call {
    font-size: 11px;
  }
}
#header .header-menu .nav-menu-element.has-childs {
  position: relative;
  margin-right: 10px;
}
#header .nav-menu-element.has-childs>a::before {
  content: "";
  width: 7px;
  height: 1px;
  position: absolute;
  left: unset;
  right: -13px;
  top: 12px;
  transform: rotate(218deg);
  transition: all 0.5s ease;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background: var(--main-text);
}
#header .nav-menu-element.has-childs>a:after {
  content: "";
  width: 7px;
  height: 1px;
  position: absolute;
  left: unset;
  right: -17px;
  top: 12px;
  transform: rotate(138deg);
  transition: all 0.5s ease;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background: var(--main-text);
}
#header .nav-menu-element.has-childs:hover>a::before {
  transform: rotate(137deg);
  background: var(--primary);
}
#header .nav-menu-element.has-childs:hover>a::after {
  transform: rotate(223deg);
  background: var(--primary);
}
#header .header-menu .sub-menu {
  position: absolute;
  top: 100%;
  width: max-content;
  height: max-content;
  min-width: 371px;
  padding: 10px 25px;
  left: 50%;
  right: 0;
  opacity: 0;
  transform: translate(-15%, 16px);
  transition: all 0.2s ease;
  transition-delay: 0.15s;
  visibility: hidden;
  z-index: -100;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
  background: var(--bg-dark);
}
#header .header-menu>.nav-menu-element.has-childs:hover .sub-menu {
  opacity: 1;
  left: 0%;
  transform: translate(-6%, 45px);
  visibility: visible;
  z-index: 100;
}
#header .header-menu .sub-menu .nav-menu-element a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--card);
  position: relative;
  padding: 10px 0px 10px 17px;
  padding-left: 17px;
}
#header .header-menu .sub-menu .nav-menu-element a:first-child {
  padding-top: unset;
}
#header .header-menu .sub-menu .nav-menu-element a:last-child {
  padding-bottom: unset;
}
#header .header-menu .sub-menu .nav-menu-element a:hover {
  color: var(--primary);
}
#header .header-menu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
  transition: 0.3s;
  background: var(--card);
}
#header .header-menu .sub-menu .nav-menu-element a:hover:before {
  background: var(--primary);
}





/*================ MOBILE MNU Start =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 30px;
  width: 30px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
#header .burger.open_menu span {
  background-color: white;
  pointer-events: none;
  width: 24px;
  height: 2px;
  transition: all 0.3s ease-in;
}
#header .burger.open_menu.clicked {
  background-color: white;
}
#header .burger.open_menu.clicked span {
  background-color: black;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: black;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  width: 30px;
  height: 30px;
}
#header #mobile-mnu #close-mnu svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: var(--head-2);
}
#header #mobile-mnu .logo-holder {
  display: flex;
  margin-bottom: 20px;
}
#header #mobile-mnu .logo-holder .text-wrap {
  gap: 10px;
}
#header #mobile-mnu .logo-holder .title {
  font-size: 14px;
}
#header #mobile-mnu .logo-holder .subtitle {
  font-size: 12px;
}
#header #mobile-mnu .logo-holder img {
  width: 50px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
  color: white;
  position: relative;
}
#header #mobile-mnu .menuTop li a:hover {
  color: #BA1735;
}
#header #mobile-mnu .menuTop li.active a {
  color: #BA1735;
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url(//friax.ru/wp-content/themes/theme/assets/images/map.svg);
  background-position: center center;
  background-repeat: no-repeat;
}


#payment > div.woocommerce-additional-fields {
  display: none;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--head-2);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--head-2);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}
#header #mobile-mnu .site-name-holder {
  order: unset;
  width: max-content;
  max-width: unset;
}
#header #mobile-mnu .site-name,
#header #mobile-mnu a,
#header #mobile-mnu .site-subtitle {
  color: var(--head-2);
}
#header #mobile-mnu .soc-holder {
  margin-top: 10px;
}
#header #mobile-mnu .soc {
  width: 35px;
  height: 35px;
}
#header #mobile-mnu .sub-menu {
  display: none;
}
#header #mobile-mnu .sub-menu .nav-menu-element a {
  padding-left: 10px;
  position: relative;
}
#header #mobile-mnu .sub-menu .nav-menu-element a:before {
  content: "";
  width: 5px;
  height: 1px;
  top: 10px;
  left: 0;
  position: absolute;
  background: var(--card);
}
#header #mobile-mnu .phones-holder {
  margin: 10px 0px;
}

#header #mobile-mnu .phones-holder .phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 450;
  color: white;
  margin-bottom: 10px;
}

#header #mobile-mnu .phones-holder .phone svg {
  flex-shrink: 0;
}

#header #mobile-mnu .phones-holder .order-call {
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
  margin-left: 30px;
}

#header #mobile-mnu .phones-holder .order-call:hover {
  color: #BA1735;
}

#header #mobile-mnu .cart-holder {
  margin: 15px 0px;
  display: flex;
  justify-content: center;
}

#header #mobile-mnu .cart-holder .cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: color 0.3s ease;
}

#header #mobile-mnu .cart-holder .cart-icon:hover {
  color: var(--primary);
}

#header #mobile-mnu .cart-holder .cart-icon svg {
  color: var(--head-2);
}

#header #mobile-mnu .cart-holder .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e51a4b;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  min-width: 20px;
  animation: cartBounce 0.3s ease-out;
}
/*================ MOBILE MNU End =============*/






/*============ FOOTER Start ===============*/
.site-footer {
  background: #2e3034;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
flex-wrap:wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
	max-width:300px;
}

.footer-logo {
  width: 112px;
  height: 80px;
  flex-shrink: 0;
  margin-bottom: 5px;
}

.footer-logo img,
.footer-logo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-company-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}

.footer-company-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  opacity: 0.7;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  opacity: 0.7;
  max-width: 600px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phone {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: right;
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-phone:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-hours {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  opacity: 0.7;
}

.footer-medium {
	display:flex;
flex-direction:column;
max-width:600px;
	width:100%;

	ul {
		display:grid;
		grid-template-columns:1fr 1fr 1fr;
		width:100%;
		height:auto;
		gap:3px 50px;
	}

	li,
	a {
		font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
color: #fff;
		transition:all .3s;
	}

	a:hover {
		color:#BA1735;
	}
}

.footer-right__mobile,
.footer-left__mobile {
	display:none;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
	  align-items:flex-start;
  }
  
  .footer-right {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-phone {
    font-size: 16px;
    text-align: left;
  }
  
  .footer-info-text {
    max-width: 100%;
    font-size: 14px;
  }
  
  .footer-hours {
    font-size: 12px;
  }

	.footer-medium {
		ul{
			grid-template-columns:1fr;
gap:8px;
		}
	}
}

@media (max-width: 480px) {
  .site-footer {
    padding: 32px 0;
  }
	
	.footer-left,
	.footer-right {
		display:none;
	}
	
	.footer-content{
		gap:16px;
	}
	
	.footer-right__mobile,
	.footer-left__mobile {
	display:flex;
}
  
  .footer-logo {
    width: 80px;
    height: 60px;
  }
  
  .footer-company-name {
    font-size: 14px;
  }
  
  .footer-company-subtitle {
    font-size: 12px;
  }
  
  .footer-phone {
    font-size: 14px;
  }
  
  .footer-info-text,
  .footer-hours,
  .footer-copyright {
    font-size: 12px;
  }
  
  .footer-logo {
    margin-bottom: 0;
  }
	
.footer-medium li,
	.footer-medium a {
		font-family: var(--font-family);
font-weight: 400;
font-size: 10px;
color: #fff;
	}
	
	.footer-right__mobile {
		display:flex;
		flex-direction:column;
		gap:4px;
		
		.footer-contacts{
			gap:4px;
		}
		
		.footer-copyright,
		.footer-info-text {
			font-family: var(--font-family);
font-weight: 400;
font-size: 10px;
line-height: 130%;
color: #fff;
			opacity:.7;
		}
	}
	
	.footer-left__mobile{
		display:flex;
		flex-direction:row;
		width:100%;
		justify-content:space-between;
		gap:10px;
		align-items:center;
		max-width:100%;
		
		.footer-phone,
		.footer-hours{
			font-family: var(--font-family);
			font-weight: 400;
			font-size: 10px;
			line-height: 130%;
			text-align: right;
			color: #fff;
			opacity:.8;
			text-decoration:unset;
		}
		
		.footer-left__mobile-actions{
			display:flex;
			flex-direction:column;
			align-items:flex-end;
		}
	}
}
/*============ FOOTER End ===============*/

/*============ 404 ERROR PAGE Start ===============*/
.error-page {
  padding: 80px 0;
  min-height: calc(100vh - 400px);
}

.error-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}

.error-right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.error-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  text-transform: uppercase;
}

.error-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #1f2022;
  max-width: 500px;
}

.error-page .btn {
  max-width: 220px;
}

.error-img {
  flex: 0 0 auto;
  max-width: 500px;
}

.error-img img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .error-page {
    padding: 50px 0;
  }
  
  .error-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .error-title {
    font-size: 45px;
  }
  
  .error-subtitle {
    font-size: 16px;
  }
  
  .error-img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .error-page {
    padding: 40px 0;
  }
  
  .error-title {
    font-size: 36px;
  }
  
  .error-subtitle {
    font-size: 14px;
  }
}
/*============ 404 ERROR PAGE End ===============*/






/* ============== MODAL Start ============= */
.theme-modal {
	display: none;
  position: relative;
}
.theme-modal .title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 115%;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  margin-bottom: 40px;
}
#modal-success.theme-modal.fancybox__content .title {
  font-size: 45px;
  text-align: center;
  margin-bottom: 0;
}
.theme-modal .subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  margin-top: 20px;
}
.modal-success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.theme-modal .btn {
  width: 100%;
  background: #fff !important;
  color: #1f2022 !important;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  border-radius: 10px;
  padding: 18px 20px;
  transition: 0.3s;
}
.theme-modal .btn:hover {
  background: #f5f5f5 !important;
}
.fancybox__content>.f-button.is-close-btn {
  top: 25px !important;
  right: 25px !important;
  --f-button-width: 24px !important;
  --f-button-height: 24px !important;
  --f-button-border-radius: unset !important;
  --f-button-color:unset !important;
  --f-button-hover-color: unset !important;
  --f-button-bg: transparent !important;
  --f-button-hover-bg: transparent !important;
  --f-button-active-bg: transparent !important;
  --f-button-svg-width: 100% !important;
  --f-button-svg-height: 100% !important;
}
.f-button svg {
  stroke: transparent !important;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg {
  width: 24px;
  height: 24px;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  fill: #BA1735;
  transition: 0.3s;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  fill: #8B1128;
  stroke: transparent !important;
}
.theme-modal.fancybox__content {
  width: 480px;
  display: flex;
  flex-direction: column;
  padding: 55px 30px;
  background: #2B2B2B;
  border-radius: 20px;
  overflow: auto;
  border-radius: 0;
}
#modal-success.theme-modal.fancybox__content {
  width: 460px;
  padding: 50px;
  text-align: center;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
button {
  border: unset;
}
button, input {
  outline: none;
}
.theme-modal .form input {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 18px 20px;
  background: #fff;
  transition: 0.3s;
  outline: none;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1f2022;
}
.theme-modal .form textarea {
  height: 122px;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s;
  resize: none;
  color: #1f2022;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.theme-modal .form input:hover,
.theme-modal .form textarea:hover {
  background: #f5f5f5;
}
.theme-modal .form input:focus,
.theme-modal .form textarea:focus {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}
.theme-modal .form input.error,
.theme-modal .form textarea.error {
  border-color: #BA1735 !important;
  background: #fff;
}
.theme-modal .form input::placeholder,
.theme-modal .form textarea::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(31, 32, 34, 0.5);
}
.form .btn {
  width: 100%;
  margin-top: 20px;
  max-width: 100%
}
.form .privacy-policy {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--main-text);
  text-align: center;
  margin-top: 10px;
}
.form .privacy-policy a {
  text-decoration: underline;
  color: var(--card);
}
.form .privacy-policy a:hover {
  color: var(--primary);
}

/* Обертка для поля с подсказкой */
.theme-modal .form-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.theme-modal .form-field-wrapper input {
  margin-bottom: 0;
}
.theme-modal .form-required-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #BA1735;
  padding-left: 5px;
}

/* Чекбокс в модальном окне */
.theme-modal .privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 15px;
}
.theme-modal .privacy-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  margin: 0;
  padding: 0;
}
.theme-modal .privacy-checkbox input[type="checkbox"]:checked {
  background: #BA1735;
  border-color: #BA1735;
}
.theme-modal .privacy-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.theme-modal .privacy-checkbox .checkbox-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
.theme-modal .privacy-checkbox .checkbox-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: 0.3s;
}
.theme-modal .privacy-checkbox .checkbox-text a:hover {
  color: #fff;
} 
.theme-modal #file {
  display: none;
}
.theme-modal .file span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--card);
  cursor: pointer;
  transition: 0.3s;
}
.theme-modal .file span:hover {
  color: var(--primary);
}
.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.7) !important;
}

/* Адаптивные стили для модального окна */
@media (max-width: 768px) {
  .theme-modal.fancybox__content {
    width: 90%;
    max-width: 400px;
    padding: 40px 30px;
  }
  
  .theme-modal .title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  #modal-success.theme-modal.fancybox__content .title {
    font-size: 32px;
  }
  
  .theme-modal .subtitle {
    font-size: 16px;
  }
  
  .fancybox__content>.f-button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
    --f-button-width: 20px !important;
    --f-button-height: 20px !important;
  }
  
  .theme-modal.fancybox__content .f-button.is-close-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .theme-modal.fancybox__content {
    width: calc(100% - 30px);
    padding: 30px 20px;
  }
  
  .theme-modal .title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  #modal-success.theme-modal.fancybox__content .title {
    font-size: 28px;
  }
  
  .theme-modal .subtitle {
    font-size: 15px;
  }
  
  .theme-modal .form input,
  .theme-modal .form textarea {
    padding: 15px 18px;
    font-size: 13px;
  }
  
  .theme-modal .privacy-checkbox .checkbox-text {
    font-size: 13px;
  }
  
  .modal-success-icon svg {
    width: 35px;
    height: 35px;
  }
}
/* ============== MODAL End ============= */


.btn {
  cursor: pointer;
  font-size: 16px;
  background-color: #fff !important;
  color: #1f2022 !important;
  text-decoration: none !important;
  display: block;
  max-width: 220px;
  min-height: 46px;
  border-radius: 15px;
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #1f2022;
  transition-duration: 0.7s;
}
.btn:hover {
  background: #1e1e1e !important;
  color: #fff !important;
  border: 1px solid #fff;
}

/* ============== TEXT BLOCK STYLES ============= */
.text-block {
  width: 100%;
  margin: 0 auto;
  padding: 70px 35px;
  border-radius: 20px;
  background: #1f2022;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.text-block .text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block .big-text {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 45px;
  line-height: 105%;
  color: #fff;
  margin: 0;
}

.text-block .small-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 130%;
}

/* Responsive styles for text-block */
@media (max-width: 768px) {
  .text-block {
    flex-direction: column;
    gap: 40px;
    padding: 50px 25px;
  }
  
  .text-block .big-text {
    font-size: 36px;
  }
  
  .text-block .small-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .text-block {
    padding: 40px 20px;
    gap: 30px;
  }
  
  .text-block .big-text {
    font-size: 28px;
  }
  
  .text-block .small-text {
    font-size: 14px;
  }
}

/* ============== ABOUT BLOCK STYLES ============= */
.about-block {
  width: 100%;
  padding: 40px 0;
}

.about-block__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  margin: 0 0 35px 0;
  text-transform: uppercase;
}

.about-block__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about-block__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-block__image {
  width: 100%;
  max-width: 650px;
  height: 356px;
  border-radius: 20px;
  overflow: hidden;
}

.about-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-block__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1f2022;
  margin: 0;
}

/* Responsive styles for about-block */
@media (max-width: 1024px) {
  .about-block {
    padding: 60px 0;
  }
  
  .about-block__title {
    font-size: 55px;
    margin-bottom: 50px;
  }
  
  .about-block__image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-block {
    padding: 50px 0;
  }
  
  .about-block__title {
    font-size: 45px;
    margin-bottom: 40px;
  }
  
  .about-block__content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-block__image {
    max-width: 100%;
    height: 280px;
  }
  
  .about-block__text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-block {
    padding: 40px 0;
  }
  
  .about-block__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about-block__content {
    gap: 40px;
  }
  
  .about-block__item {
    gap: 20px;
  }
  
  .about-block__image {
    height: 220px;
  }
  
  .about-block__text {
    font-size: 14px;
  }
}

/* ======= WOOCOMMERCE CATEGORY BANNER START ======== */

.wc-category__banner-v1 {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  overflow: hidden;
  border-radius: clamp(0.9375rem, 0.8482rem + 0.4464vw, 1.25rem);
  width: 100%;
  padding-left: 12px;
  padding-right: 9px;
  padding-top: clamp(1.25rem, -0.1786rem + 7.1429vw, 6.25rem);
  padding-bottom: clamp(0.75rem, -1.1071rem + 9.2857vw, 7.25rem);
  background-color: #1f2022;
  gap: 10px;

  .wc-category__banner-v1__photo {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
  }

  .wc-category__banner-v1__text {
    display: flex;
    flex-direction: column;
    max-width: 743px;
    gap: 8px;
    position: relative;
    z-index: 2;
    margin: auto;
  }

  .wc-category__banner-v1__title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(1.125rem, 0.2857rem + 4.1964vw, 4.0625rem);
    line-height: 115%;
    text-align: center;
    color: #fff;
    text-wrap: balance;
  }

  .wc-category__banner-v1__sub {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
    text-align: center;
    color: #fff;
    text-wrap: balance;
  }
}

@media (max-width: 500px) {
  .wc-category__banner-v1 {
	  padding:20px 12px;
	  padding-bottom:12px;
	  
	  .wc-category__banner-v1__title {
		font-family: var(--second-family);
font-weight: 700;
font-size: 22px;
line-height: 105%;
color: #fff;
	  }
	  
    .wc-category__banner-v1__photo {
      position: relative;
    }
    .wc-category__banner-v1__photo {
      aspect-ratio: 17/21;
		height:218px;
      overflow: hidden;
      border-radius: 15px;
    }
	  .wc-category__banner-v1__sub{
		  font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #fff;
		  opacity:.8;
		  text-wrap:unset;
	  }
    .wc-category__banner-v1__text {
      width: 100%;
      * {
        text-align: left;
      }
    }
  }
}

/* ======= WOOCOMMERCE CATEGORY BANNER END ======== */

/* ======= WOOCOMMERCE SIDEBAR START ======== */

.wc-catalog__sidebar {
  display: flex;
  flex-direction: column;
  max-width: 324px;
  width: 100%;
  position: relative;
}

.products-list__category {
  margin-top: clamp(1.1875rem, -0.0804rem + 6.3393vw, 5.625rem);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.products-list__category-holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
}

.products-holder__loop {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wc-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  height: auto;
  gap: clamp(0.4375rem, 0.2768rem + 0.8036vw, 1rem);
}

@media (max-width: 750px) {
  .wc-products {
    grid-template-columns: 1fr 1fr;
  }
}

.products-list__outer-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(1.0625rem, 0.7232rem + 1.6964vw, 2.25rem);
}

.productt-list__outer-holder__filters {
  display: flex;
  flex-direction: row;
  padding-top: 25px;
  align-self: flex-end;
  gap: 10px 22px;
  flex-wrap: wrap;

  .filter-link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #1e1e1e;
    opacity: 0.8;
    transition: all 0.3s;
  }

  .filter-link:hover {
    color: #801e1e;
  }

  .filter-link.active {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #801e1e;
    pointer-events: none;
  }
}

/* ======= WOOCOMMERCE SIDEBAR END ======== */

/* ======= WOOCOMMERCE CONTENT PRODUCT START ======== */

.wc-product__card {
  border: 1px solid #c0c0c0;
  border-radius: clamp(0.375rem, 0.125rem + 1.25vw, 1.25rem);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-self: stretch;
}

.wc-product__card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: stretch;
  padding-top: clamp(0.4375rem, 0.2054rem + 1.1607vw, 1.25rem);
  padding-bottom: clamp(0.375rem, 0.1964rem + 0.8929vw, 1rem);
  padding-left: clamp(0.375rem, 0.1607rem + 1.0714vw, 1.125rem);
  padding-right: clamp(0.25rem, 0rem + 1.25vw, 1.125rem);
  gap: clamp(0.5625rem, 0.4196rem + 0.7143vw, 1.0625rem);
  justify-content: space-between;
}

.wc-product__card-photo {
  display: flex;
  flex-direction: column;
  padding-left: clamp(0.25rem, 0rem + 1.25vw, 1.125rem);
  padding-right: clamp(0.25rem, 0rem + 1.25vw, 1.125rem);
  height: auto;
  width: auto;

  img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: contain;
	aspect-ratio: 1/1;
  }
}

.wc-product__card-holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(0.5625rem, 0.4554rem + 0.5357vw, 0.9375rem);
  height:100%;
  justify-content:space-between;
}

.wc-product__card-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(0.4375rem, 0.2768rem + 0.8036vw, 1rem);
  line-height: 150%;
  color: #1e1e1e;
  max-width: 80%;
  transition: all 0.3s;
}

.wc-product__card-actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px 15px;
  flex-wrap: wrap;
  position: relative;
}

.wc-product__card-price__holder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  bdi {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card:has(del) {
  del {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
    text-decoration: line-through;
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
      text-decoration: line-through;
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card:has(ins) {
  ins {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card .regular-price,
.wc-product__card .regular-price * {
  all: initial;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
  text-decoration: line-through;
  line-height: 150%;
  color: #1e1e1e;
}

.wc-product__card .sale-price,
.wc-product__card .sale-price * {
  all: initial;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.5714rem + 0.8929vw, 1.375rem);
  line-height: 150%;
  color: #1e1e1e;
}

.wc-product__card-btn {
  width: clamp(1.375rem, 0.8929rem + 2.4107vw, 3.0625rem);
  height: clamp(1.375rem, 0.8929rem + 2.4107vw, 3.0625rem);
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 50px;
  background: #801e1e;
  border: 1px solid #801e1e;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.wc-product__card-btn__text {
  position: absolute;
  left: 25px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.wc-product__card-btn svg {
  width: auto;
  height: clamp(0.625rem, 0.375rem + 1.25vw, 1.5rem);
  transition: right 0.4s ease;
  /* margin: auto; */
  position: absolute;
  /* left: 0; */
  right: clamp(0.3125rem, 0.2054rem + 0.5357vw, 0.6875rem);
}

.wc-product__card:hover .wc-product__card-name {
  color: #801e1e;
}

@media (max-width: 750px) {
  .wc-product__card-name {
    max-width: 100%;
  }
  .wc-product__card-btn svg {
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
  }
}

@media(max-width:500px) {
	.wc-product__card-container{
		padding:12px;
	}
	.wc-product__card-photo{
		height:110px;
		padding-left:unset;
		padding-right:unset;
	}
	.wc-product__card-name {
		font-family: var(--font-family);
font-weight: 600;
font-size: 13px;
line-height: 150%;
color: #1e1e1e;
		        overflow-wrap: anywhere;
	}
	.wc-product__card-holder{
		gap:8px;
	}
}

@media (hover: hover) and (pointer: fine) {
  .wc-product__card-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .wc-product__card-btn:hover {
    width: 140px;
    padding-left: 18px;
    justify-content: flex-start;
  }
  .wc-product__card-btn:hover .wc-product__card-btn__text {
    opacity: 1;
  }
}
/* ======= WOOCOMMERCE CONTENT PRODUCT END ======== */

@media (max-width: 1100px) {
  .wc-catalog__sidebar {
    position: fixed !important;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    transform: translateX(-1100px);
    transition: all 1s !important;
    z-index: 10000;
    overflow-y: auto;
    background: #1f2022;

    .filters-widget,
    .filters-form,
    .filters-form__inner {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: auto;
      align-self: stretch;
    }

    .wc-catalog__sidebar-header {
      margin-top: 40px;
      margin-left: 16px;
      margin-right: 16px;
      margin-bottom: 22px;
      width: auto;
      align-items: flex-end;
    }

    .wc-catalog__sidebar-clear {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 10px;
      line-height: 130%;
      text-decoration: underline;
      text-decoration-skip-ink: none;
      text-align: right;
      color: #ba1735;
    }

    .wc-catalog__sidebar-header__title {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 22px;
      line-height: 115%;
      color: #fff;
    }

    .accordeon-block {
      padding-top: 16px !important;
      margin-top: 12px !important;
    }

    .categories-filter__holder {
      padding-top: 0px !important;
      margin-top: 0px !important;
    }

    .filters-form__inner {
      padding-top: 0px !important;
    }

    .accordeon-block-header-title {
      font-size: 16px !important;
    }

    .toggle-track {
      width: 35px !important;
      height: 20px !important;
    }

    .toggle-thumb {
      width: 17px !important;
      height: 17px !important;
      top: 1px !important;
    }

    .toggle-wrapper input:checked + .toggle-track .toggle-thumb {
      transform: translateX(13px) !important;
    }

    .toggle-label {
      font-size: 16px !important;
    }

    .in-stock-toggle {
      margin-top: 10px !important;
      padding-top: 12px !important;
      border-top: 1px solid #c0c0c0 !important;
    }

    .inputs-price__pseudo {
      input {
        height: 25px !important;
        font-size: 10px !important;
      }
    }

    .inputs.checkboxes.list .group input {
      width: 12px !important;
      height: 12px !important;
    }

    .inputs.checkboxes.list .group input::before {
      width: 12px !important;
      height: 12px !important;
    }

    .inputs.checkboxes.list .group-label {
      font-size: 8px !important;
    }

    .noUi-target {
      width: 98% !important;
      margin-bottom: 20px !important;
    }

    .filter-widget__btn {
      height: 40px !important;
      padding: unset !important;
    }

    .main-category-link,
    .subcategory-item {
      font-size: 12px !important;
    }

    .wc-catalog__sidebar-close {
      display: flex !important;
    }
  }

  .wc-catalog__sidebar.active {
    transform: translateX(0px);
  }

  .productt-list__outer-holder__filters {
    display: none;
  }
}

@media(max-width:500px) {
		  .filters-form__inner{
		  padding-bottom:15px !important;
	  }
}

/* Мобильный фильтр */
.product-list__outer-holder__filters-mobile {
  display: none;
  position: relative;
}

.mobile-open-filter__action {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  line-height: 130%;
  text-align: right;
  color: #686868;
}

@media (max-width: 1100px) {
  .product-list__outer-holder__filters-mobile {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }

  .mobile-filter-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    max-width: 100px;
    width: 100%;
  }

  .mobile-filter-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    line-height: 130%;
    color: #1f2022;
  }

  .mobile-filter-arrow {
    width: 14px;
    height: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .mobile-filter-arrow svg {
    width: 14px;
    height: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: flex;
  }

  .mobile-filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    overflow: hidden;
  }

  .mobile-filter-dropdown.active {
    display: block;
  }

  .mobile-filter-option {
    display: block;
    padding: 5px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
  }

  .mobile-filter-option:last-child {
    border-bottom: none;
  }

  .mobile-filter-option:hover {
    background-color: #f8f8f8;
  }

  .mobile-filter-option.active {
    background-color: #f0f0f0;
    color: #000;
    font-weight: 500;
  }
}

.navigation.pagination {
  height: fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: clamp(1.125rem, 0.5536rem + 2.8571vw, 3.125rem);
  max-width: 434px;
  width: 100%;
  justify-content: center;
  z-index: 3;
  position: relative;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.navigation.pagination .page-numbers {
  position: relative;
  display: inline-block;
  padding: 1px 8px;
  margin: 0 6px;
  text-align: center;
  text-decoration: none;
}

.navigation.pagination .page-numbers::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: #801e1e;
}

.navigation.pagination .page-numbers:hover::after {
  opacity: 1;
}

.navigation.pagination .page-numbers.disabled {
  opacity: 0;
  pointer-events: none;
}

.navigation.pagination .nav-links .page-numbers {
  display: flex;
  align-items: center;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.navigation.pagination .page-numbers.current {
  pointer-events: none;
}

.navigation.pagination .page-numbers.current::after {
  opacity: 1;
}

.wc-catalog__sidebar-close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}

.added_to_cart.wc-forward {
  display: none;
}

/* swiper-thumbs start */

.swiper-thumbs__holder,
.swiper-thumbs__holder .swiper {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.swiper-thumbs__holder .thumbs .swiper-wrapper {
  height: auto !important;
  flex-direction: row;
}

.swiper-thumbs__holder {
  overflow: visible !important;
  height: fit-content;
  flex-shrink: 0 !important;
}

.swiper-thumbs__holder {
  max-width: 610px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.swiper-thumbs__holder .holder {
  width: 100%;
  height: 580px;
  /* max-height: 50vw; */
  overflow: hidden;
}

.swiper-thumbs__holder .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-self: stretch;
}

.swiper-thumbs__holder .holder .swiper-slide {
  padding-bottom: 5px;
}

.swiper-thumbs__holder .holder-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-self: stretch;
  border: 1px solid #d9d9d9;
  background: #fff;
  border-radius: 20px;
  padding-bottom: 1px;
}

.swiper-thumbs__holder .holder-photo img {
  width: 100%;
  height: 80%;
  max-width: 100%;
  max-height: 100%;
  margin: auto auto;
  object-fit: contain;
  display: flex;
}

.swiper-thumbs__holder .thumbs .swiper {
  max-width: 100%;
  width: 100%;
  margin: unset;
  max-height: 461px;
  padding-bottom: 1px;
}

.swiper-thumbs__holder .thumbs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 130px;
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide {
  width: calc(100% / 5 - 14px);
  height: 100%;
  display: flex;
  margin-right: 18px;
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
  margin-right: unset !important;
  /* padding-bottom: 5px !important; */
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide > * {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  /* border: 1px solid var(--stroke); */
  background: #fff;
}

/* .swiper-thumbs__holder .thumbs .swiper .swiper-slide.swiper-slide-thumb-active>* {
  border-color: var(--primary) !important;
} */

.swiper-thumbs__holder .thumbs .swiper .swiper-slide > * > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  aspect-ratio: 1/1;
}

.swiper-thumbs__holder .swiper-slide {
  cursor: pointer;
}

.swiper-thumbs__arrows {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: var(--twenty);
}

.swiper-thumbs__arrows > * {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

.swiper-button-prev-thumbs,
.swiper-button-next-thumbs {
  display: flex;
  cursor: pointer;
}

.swiper-thumbs__holder {
  svg path {
    stroke: var(--text-secondary-main-text-secondary);
  }
  svg {
    display: flex;
    margin: auto;
  }
  .swiper-button-disabled {
    pointer-events: none;
    svg path {
      stroke: var(--text-secondary-main-text-secondary);
    }
  }
}

.single-product__swiper-holder__pagination {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  gap: 3px;
  display: none;

  .swiper-pagination-bullet {
    border-radius: 100%;
    background-color: #d9d9d9;
    width: 4px;
    height: 4px;
    margin: unset !important;
    opacity: 1 !important;
  }

  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1e1e1e;
  }
}

@media (max-width: 1000px) {
  .single-product__content-holder {
    flex-direction: column !important;
  }

  .swiper-thumbs__holder .arrow-unique {
    width: fit-content;
    height: auto;
    align-self: stretch;
  }

  .swiper-thumbs__holder .thumbs .swiper-wrapper {
    flex-direction: row;
  }

  .single-product__swiper-holder .swiper-button-prev-thumbs svg {
    transform: rotate(-90deg);
  }

  .single-product__swiper-holder .swiper-button-next-thumbs svg {
    transform: rotate(-90deg);
  }

  .swiper-thumbs__holder {
    position: relative !important;
    top: unset !important;
    flex-direction: column;
    max-width: 100%;
  }

  .swiper-thumbs__holder .holder {
    max-height: 100vw !important;
    height: 100% !important;
  }

  .swiper-thumbs__holder .thumbs {
    flex-direction: row;
    max-width: unset;
    width: 100%;
    gap: 10px;
  }

  .swiper-thumbs__holder .thumbs .swiper {
    max-width: unset;
    width: 100%;
    padding: 3px;
    margin: -3px;
  }

  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    margin-bottom: unset;
    margin-right: 10px;
    width: calc(96.5% / 5);
    height: 110px;
  }

  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
    margin-right: 0px;
  }

  .swiper-thumbs__arrows {
    flex-direction: column !important;
  }

  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
    padding-bottom: 0px;
    /* padding-right: 5px; */
  }
}

@media (max-width: 650px) {
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    margin-bottom: unset;
    margin-right: 10px;
    width: calc(95% / 4);
    height: 110px;
  }
}

@media (max-width: 600px) {
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    margin-bottom: unset;
    margin-right: 10px;
    width: calc(95% / 4);
    height: 110px;
  }
}

@media (max-width: 550px) {
  .swiper-thumbs__holder .thumbs {
    display: none !important;
  }

  .single-product__swiper-holder__pagination {
    display: flex;
  }

  .swiper-thumbs__holder .thumbs .swiper {
    padding: 5px;
  }

  .swiper-thumbs__holder {
    gap: 5px;
  }

  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    margin-bottom: unset;
    margin-right: 10px;
    width: calc(96% / 3);
    height: 110px;
  }
}

@media (max-width: 420px) {
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    width: calc(94% / 3);
    height: calc(94% / 3);
  }
}

@media (max-width: 380px) {
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    width: calc(94% / 3);
    height: calc(94% / 3);
  }
}

@media (max-width: 350px) {
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    width: calc(94% / 3);
    height: calc(94% / 3);
  }
}

/* swiper-thumbs end */

.wc-single__product-summary {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
}

.wc-single__product-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  background: #f2f2f2;
}

.wc-single__product-content__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-self: stretch;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 15px;
  padding-right: 15px;
}

.wc-single__product-stock__badge {
  border: 1px solid rgba(2, 181, 19, 0.8);
  border-radius: 15px;
  padding: 6px 10px;
  width: fit-content;
  background: rgba(2, 181, 19, 0.8);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 6px;
}

.wc-single__product-stock__badge.stock-instock {
  background: rgba(2, 181, 19, 0.8);
  border: 1px solid rgba(2, 181, 19, 0.8);
}

.wc-single__product-stock__badge.stock-outofstock {
  background: rgba(186, 23, 53, 0.8);
  border: 1px solid rgba(186, 23, 53, 0.8);
}

.wc-single__product-stock__badge.stock-snyat {
  background: #ff8a00;
  border: 1px solid #ff8a00;
}

.wc-single__product-title__holder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-single__product-title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(1.375rem, 0.9643rem + 2.0536vw, 2.8125rem);
  line-height: 150%;
  color: #1e1e1e;
}

.wc-single__product-short__desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.625rem, 0.4821rem + 0.7143vw, 1.125rem);
  color: #1e1e1e;
}

.wc-single__product-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(0.625rem, 0.2679rem + 1.7857vw, 1.875rem);
}

.wc-single__product-addons__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
  line-height: 150%;
  color: #801e1e;
}

.wc-single__product-addons__items {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1071rem + 0.7143vw, 0.75rem);
}

.wc-single__product-addons__item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #1e1e1e;
  width: 100%;

  * {
    cursor: pointer;
  }
}

.wc-single__product-addons__item label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.5rem, 0.3571rem + 0.7143vw, 1rem);
  line-height: 130%;
  color: #1e1e1e;
  opacity: 0.8;
  width: 100%;
}

.wc-single__product-addons__item input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: clamp(0.75rem, 0.6429rem + 0.5357vw, 1.125rem);
  height: clamp(0.75rem, 0.6429rem + 0.5357vw, 1.125rem);
  border: 1.09px solid #c0c0c0;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  outline: none;
  margin: 0;
  flex-shrink: 0;
}

.wc-single__product-addons__item input:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: clamp(0.625rem, 0.5536rem + 0.3571vw, 0.875rem);
  line-height: 1;
}

.wc-single__product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(1.25rem, 1.0714rem + 0.8929vw, 1.875rem);
}

.wc-single__product-content {
  .wc-single__product-price__holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    bdi {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
      line-height: 150%;
      color: #1e1e1e;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
        font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
        line-height: 150%;
        color: #1e1e1e;
      }
    }
  }

  .wc-single__product-price__holder:has(del) {
    del {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
      line-height: 150%;
      color: #1e1e1e;
      text-decoration: line-through;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
        font-size: clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
        line-height: 150%;
        color: #1e1e1e;
        text-decoration: line-through;
      }
    }
  }

  .wc-single__product-price__holder:has(ins) {
    ins {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
      line-height: 150%;
      color: #1e1e1e;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
        font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
        line-height: 150%;
        color: #1e1e1e;
      }
    }
  }

  .wc-single__product-price__holder .regular-price,
  .wc-single__product-price__holder .regular-price * {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(1rem, 0.7143rem + 1.4286vw, 2rem);
    line-height: 150%;
    color: #1e1e1e;
    text-decoration: line-through;
  }

  .wc-single__product-price__holder .sale-price,
  .wc-single__product-price__holder .sale-price * {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
    line-height: 150%;
    color: #1e1e1e;
  }
}

.wc-single__product-actions__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.wc-single__product-stock__badge-mobile {
  display: none;
}

@media (max-width: 1000px) {
  .wc-single__product-summary {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .wc-single__product-content {
    background: unset;
    border-radius: unset;
    border: unset;
  }
  .wc-single__product-title {
    line-height: 105%;
  }
  .wc-single__product-content__container {
    padding: unset;
  }
  .wc-single__product-stock__badge {
    display: none;
  }
  .wc-single__product-stock__badge-mobile {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    pointer-events: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(0.375rem, 0.0272rem + 1.7391vw, 0.625rem);
    line-height: 130%;
    color: #fff;
  }
}

.wc-single__product-btn,
.wc-single__product-zakaz {
  border: 1px solid #801e1e;
  border-radius: clamp(0.625rem, 0.5357rem + 0.4464vw, 0.9375rem);
  padding: clamp(0.5rem, 0.3571rem + 0.7143vw, 1rem) 18px;
  width: 227px;
  height: clamp(2.5rem, 2.25rem + 1.25vw, 3.375rem);
  background: #1e1e1e;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.625rem, 0.5179rem + 0.5357vw, 1rem);
  line-height: 137%;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  place-content: center;
}

.wc-single__product-btn:hover,
.wc-single__product-zakaz:hover {
  background: #2b2b2b;
}

.wc-single__product-oneclick {
  border: 1px solid #1e1e1e;
  border-radius: clamp(0.625rem, 0.5357rem + 0.4464vw, 0.9375rem);
  padding: clamp(0.5rem, 0.3571rem + 0.7143vw, 1rem) 18px;
  width: 220px;
  height: clamp(2.5rem, 2.25rem + 1.25vw, 3.375rem);
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.625rem, 0.5179rem + 0.5357vw, 1rem);
  line-height: 137%;
  text-align: center;
  color: #1e1e1e;
  cursor: pointer;
  transition: all 0.3s;
  place-content: center;
}

.wc-single__product-oneclick:hover {
  color: #801e1e;
}

@media (max-width: 550px) {
  .wc-single__product-actions__buttons {
    flex-direction: column;
    width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 6px 15px;
    background: #f2f2f2;
  }
  .wc-single__product-actions__buttons > * {
    width: 100%;
  }
}

.wc-single__product-additional {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 40px;
  border-radius: 20px;
  background: #1f2022;
  padding-top: 23px;
  padding-left: 38px;
  padding-bottom: 32px;
  padding-right: 37px;
  gap: 54px;
}

.wc-single__product-additional__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 586px;
}

.wc-single__product-additional__info-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: fit-content;
  gap: 55px;
  position: relative;
}

.wc-single__product-additional__info-header::after {
  content: "";
  background: #c0c0c0;
  width: 100%;
  height: 1px;
  display: flex;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.wc-single__product-additional__info-header__item {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  color: #fff;
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}

.wc-single__product-additional__info-header__item.active {
  display: block;
}

.wc-single__product-additional__info-header__item::after {
  content: "";
  background: #c0c0c0;
  width: 100%;
  height: 1px;
  display: flex;
  bottom: 0px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
}

.wc-single__product-additional__info-header__item.active {
  font-weight: 700;
  color: #ba1735;
}

.wc-single__product-additional__info-header__item.active::after {
  background: #ba1735;
}

.wc-single__product-additional__info-content__item {
  display: none;
}

.wc-single__product-additional__info-content__item.active {
  display: block;
  flex-direction: column;
}

.wc-single__product-additional__info-content__item-desc {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #fff;

  strong {
    font-weight: 600;
  }
}

.single-product__attributes {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.wc-product__card-attr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff50;
}

.wc-product__card-attr__name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
}

.wc-product__card-attr__value {
  font-family: var(--font3);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  text-align: right;
  color: #fff;

  svg {
    display: flex;
    flex-shrink: 0;
  }
}

.show-more-attributes {
  all: initial;
  display: flex;
  cursor: pointer;
  margin-top: clamp(0.375rem, 0.3036rem + 0.3571vw, 0.625rem);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.6429rem + 0.5357vw, 1.125rem);
  line-height: 130%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.wc-single__product-project__gal {
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  .wc-single__product-project__gal-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 150%;
    color: #fff;
  }

  .swiper {
    max-height: 363px;
    height: 100%;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    border-radius: 20px;
  }

  .wc-single__product-project__gal-swiper__pagination {
    display: flex;
    flex-direction: row;
    width: fit-content !important;
    margin-left: auto;
    margin-right: auto;
    gap: 5px;
    margin-top: 10px;

    .swiper-pagination-bullet {
      margin: unset !important;
      width: 8px !important;
      height: 8px !important;
      border-radius: 100%;
      background: #d6d6d6 !important;
      opacity: 1;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #313131 !important;
    }
  }
}

.wc-single__product-additional__info.mobile-only {
  display: none;
}

@media (max-width: 1000px) {
  .wc-single__product-additional {
    flex-direction: column;
  }
  .wc-single__product-additional__info {
    max-width: 100%;
  }
  .swiper-slide img {
    aspect-ratio: 2/1;
  }
}

.wc-single__product {
  .mobile-accordion-content {
    display: none;
  }
}

@media (max-width: 550px) {
  .wc-single__product-additional__info.desktop-only {
    display: none;
  }
  .wc-single__product {
    .mobile-accordion-content.active {
      display: block;
    }
    .mobile-accordion-item {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 12px;
      padding-right: 12px;
      border-top: 0.5px solid #686868;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .mobile-accordion-header {
      display: flex;
      flex-direction: row;
      width: 100%;
      align-items: center;
      gap: 10px;
      justify-content: space-between;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 16px;
      line-height: 150%;
      color: #fff;

      svg {
        display: flex;
        transition: all 0.3s;
      }
    }
    .mobile-accordion-content {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: clamp(0.5rem, 0.1522rem + 1.7391vw, 0.75rem);
      line-height: 130%;
      color: #fff;
      opacity: 0.8;

      .wc-product__card-attr {
        padding-bottom: 10px;
      }

      .wc-product__card-attr__name,
      .wc-product__card-attr__value {
        font-size: clamp(0.5rem, 0.1522rem + 1.7391vw, 0.75rem);

        svg {
          width: 12px;
          height: 12px;
        }
      }
    }
    .mobile-accordion-item:first-child {
      border-top: 0px;
    }
    .mobile-accordion-header.active {
      svg {
        transform: rotate(180deg);
      }
    }
  }
  .wc-single__product-additional {
    padding: unset;
    margin-top: 27px;
  }
  .wc-single__product-project__gal.desktop-only {
    display: none;
  }
  .wc-single__product-additional__info.mobile-only {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.wc-single__product-related {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 55px;
  gap: 30px;
}

.wc-single__product-related__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  color: #1e1e1e;
}

.wc-single__product-related__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  height: auto;
  gap: 16px;
}

@media (max-width: 900px) {
  .wc-single__product-related__items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 550px) {
  .wc-single__product-related {
    margin-top: 40px;
    gap: 8px;
  }
  .wc-single__product-related__title {
    font-size: 22px;
  }
  .wc-single__product-related__items {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
}

/* checkout */

.checkout-title__holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  margin-bottom: 40px;

  h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 45px;
    line-height: 115%;
    color: #1e1e1e;
  }

  .checkout-go__back {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 122%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: right;
    color: #1e1e1e;
  }
}

.checkout {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: clamp(1.5rem, 0.675rem + 4.125vw, 5.625rem);
  justify-content: space-between;

  .woocommerce-NoticeGroup-checkout {
    display: none;
  }

  .col2-set {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #billing_user_type_field {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;

    .woocommerce-input-wrapper {
      display: flex;
      flex-direction: row;
      align-items: center;

      * {
        cursor: pointer;
      }

      label {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        color: #1a1a1a;
        opacity: 0.8;
        margin-right: 0px !important;
        padding-right: 50px;
        padding-left: 15px;
      }
      label:last-child {
        padding-right: 0px !important;
      }
    }

    input {
      all: initial;
      cursor: pointer;
      width: 22px;
      height: 22px;
      border-radius: 100%;
      background: #f2f2f2;
      border: 1px solid #d9d9d9;
      display: flex;
      position: relative;
      flex-shrink: 0;
    }
    input::after {
      content: "";
      display: flex;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      position: absolute;
      z-index: 1;
      pointer-events: none;
      border-radius: 100%;
      background: #fff;
      width: 12px;
      height: 12px;
      opacity: 0;
    }
    input:checked {
      background: #801e1e;
    }
    input:checked::after {
      opacity: 1;
    }
  }

  abbr.required {
    display: none;
  }

  #billing_user_type_field > label {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    color: #1a1a1a;
    padding-left: 0px;
  }

  .col-2 {
    display: none;
  }
  .woocommerce-terms-and-conditions-wrapper {
    display: none;
  }

  .thwcfe-input-field-wrapper {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;

    label {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 14px;
      line-height: 130%;
      color: #1a1a1a;
      opacity: 0.8;
      padding-left: 17px;
    }

    input {
      border-radius: 5px;
      background: #f2f2f2;
      border: 1px solid #f2f2f2;
      width: 100%;
      padding: 14px 17px;
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 14px;
      line-height: 130%;
      color: #1a1a1a;
    }

    input::placeholder {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 14px;
      line-height: 130%;
      color: #1a1a1a;
      opacity: 0.2;
    }
  }

  .checkout-inline-error-message {
    display: none;
  }

  .woocommerce-invalid-required-field::after {
    content: "Обязательно для заполнения";
    display: flex;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #f00;
    opacity: 0.8;
    padding-left: 17px;
  }

  .thwcfe-input-field-wrapper:last-child {
    margin-bottom: 0px;
  }

  .col-2__additional {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px 100px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

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

  .woocommerce-shipping-totals__title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 26px;
    line-height: 150%;
    color: #1a1a1a;
  }

  .woocommerce-shipping-methods {
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;

    li {
      display: flex;
      flex-direction: row;
      align-items: center;

      * {
        cursor: pointer;
      }

      label {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        color: #1a1a1a;
        opacity: 0.8;
        padding-left: 14px;
      }

      input {
        all: initial;
        cursor: pointer;
        width: 22px;
        height: 22px;
        border-radius: 100%;
        background: #f2f2f2;
        border: 1px solid #d9d9d9;
        display: flex;
        position: relative;
        flex-shrink: 0;
      }

      input::after {
        content: "";
        display: flex;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
        z-index: 1;
        pointer-events: none;
        border-radius: 100%;
        background: #fff;
        width: 12px;
        height: 12px;
        opacity: 0;
      }
      input:checked {
        background: #801e1e;
      }
      input:checked::after {
        opacity: 1;
      }
    }
  }

  .woocommerce-checkout-payment {
    display: flex;
    flex-direction: column;
    gap: 8px;

    .block__title {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 26px;
      line-height: 150%;
      color: #1a1a1a;
    }

    .label-content {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 14px;
      line-height: 130%;
      color: #1a1a1a;
      opacity: 0.8;
    }
  }

  .woocommerce-checkout-review-order {
    max-width: 525px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 20px;
    background: #1f2022;
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;

    .custom-checkout-review-order {
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
    }

    .custom-checkout-review-order__title {
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 45px;
      line-height: 150%;
      color: #fff;
      padding-bottom: 2px;
      border-bottom: 1px solid #ffffff10;
      margin-bottom: 30px;
    }

    .custom-checkout-review-order__products {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 15px;
      margin-bottom: 30px;
    }

    .custom-checkout-review-order__product {
      display: flex;
      flex-direction: column;
      width: 100%;
      gap: 5px;
    }

    .product-name {
      display: flex;
      flex-direction: row;
      width: 100%;
      align-items: center;
      gap: 12px;
      font-family: var(--font-family);
      font-weight: 600;
      font-size: 20px;
      line-height: 130%;
      color: #fff;

      span {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        color: #fff;
        opacity: 0.5;
        flex-shrink: 0;
      }
    }

    .product-addon,
    .product-addon * {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 12px;
      line-height: 130%;
      color: #fff;
      opacity: 0.8;
    }

    .custom-checkout-review-order__shipping {
      margin-bottom: 16px;
    }

    .custom-checkout-review-order__shipping,
    .custom-checkout-review-order__payment {
      display: flex;
      flex-direction: row;
      gap: 13px;
      align-items: center;
      flex-wrap: wrap;
    }

    .custom-checkout-review-order__label {
      font-family: var(--font-family);
      font-weight: 500;
      font-size: 16px;
      line-height: 130%;
      color: #fff;
    }

    .custom-checkout-review-order__value {
      font-family: var(--font-family);
      font-weight: 400;
      font-size: 16px;
      line-height: 130%;
      color: #fff;
      opacity: 0.8;
    }

    .custom-checkout-review-order__total {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-top: clamp(1.5625rem, 1.125rem + 2.1875vw, 3.75rem);

      .custom-checkout-review-order__label {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        color: #fff;
        opacity: 0.8;
      }

      .custom-checkout-review-order__total-value,
      .custom-checkout-review-order__total-value * {
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 35px;
        line-height: 150%;
        color: #fff;
      }
    }

    .order-btn {
      display: flex;
      flex-direction: row;
      width: 100%;
      margin-top: 12px;

      button {
        all: initial;
        cursor: pointer;
        border: 1px solid #1e1e1e;
        border-radius: 15px;
        padding: 16px 18px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 137%;
        text-align: center;
        color: #1e1e1e;
        background: #fff;
        width: 100%;
      }
    }
  }
}

@media (max-width: 1000px) {
  .checkout {
    flex-direction: column;

    .woocommerce-checkout-review-order {
      max-width: 100%;
    }
  }
}

@media (max-width: 550px) {
  #billing_user_type_field {
    .woocommerce-input-wrapper {
      flex-wrap: wrap;
      gap: 10px;
      label {
        width: 90%;
      }
    }
  }
}

/* thank you */

.woocommerce-table--order-details {
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-table--order-details thead {
  background-color: rgba(76, 76, 75, 0.5);
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  padding: 5px;
  border: 1px solid black;
  background-color: rgba(76, 76, 75, 0.5);
  text-align: left;
  color: black;

  * {
    color: black !important;
  }
}

tfoot tr td,
tfoot tr td small {
  text-align: end;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  color: black;
}

.woocommerce-table--order-details th {
  text-align: left;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
  margin-top: 20px;
  color: black;
  margin-bottom: 20px;
}

.woocommerce-order-received .additional-info {
  margin-top: 20px;
}

.woocommerce-order-received p {
  margin-bottom: 0px;
}

.woocommerce-order {
  margin-bottom: 20px;
}

.woocommerce-order p,
.woocommerce-order a,
.woocommerce-order li,
.woocommerce-order p.woocommerce-customer-details--email,
.woocommerce-order address {
  font-weight: 300 !important;
  font-size: var(--1614) !important;
  line-height: 120% !important;
  color: black !important;
  padding: 0;
}

.woocommerce-order li strong {
  font-weight: 300 !important;
  color: black;
}

.woocommerce-order p {
  font-size: 20px;
  color: black;
}

.woocommerce-table--custom-fields {
  display: none;
}

.woocommerce-thankyou-order-received {
  margin-bottom: 10px !important;
}

.woocommerce-order .wc-item-meta {
  margin-top: 10px !important;
}

.woocommerce-order .wc-item-meta li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce-order tfoot:has(.button.view) {
  display: none;
}

.return-to-shop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 125%;
  color: white;
}

.return-to-shop-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  line-height: 125%;
  color: white;
}

.return-to-shop-text {
  display: none;
}

.woocommerce:has(.woocommerce-notices-wrapper .cart-empty)
  .return-to-shop-text {
  display: flex;
}

.lmp_products_loading {
  display: none !important;
}

.button.wc-backward,
.cart-empty.woocommerce-info {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: var(--h3);
  line-height: 110%;
  text-transform: uppercase;
  color: var(--background-primary-primary-background);
}

.woocommerce-notices-wrapper,
#noticer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10500;
  max-width: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  align-items: flex-end;
}

.added_to_cart.wc-forward {
  display: none;
}

.woocommerce-message:not(.cart-empty),
.woocommerce-info:not(.cart-empty) {
  display: inline-block;
  pointer-events: initial;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px white;
  background-color: white;
  position: relative;
  z-index: 15;
  margin: 0 0 10px;
  color: black;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 130%;
  color: black;
  transition: unset;
}

.woocommerce-notices-wrapper .cart-empty {
  display: inline-block;
  pointer-events: initial;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px white;
  background-color: white;
  position: relative;
  z-index: 15;
  margin: 0 0 10px;
  color: black !important;
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem) !important;
  line-height: 130% !important;
  color: black;
  transition: unset !important;
}

.woocommerce-notices-wrapper > ul {
  display: flex;
  flex-direction: column;
  padding: 10px !important;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px white;
  background-color: white;
  position: relative;
  z-index: 15;
  margin: 0 0 10px;
  color: black;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 130%;
  color: black;
  transition: unset;
}

.woocommerce-notices-wrapper > ul > li,
.woocommerce-notices-wrapper > ul > li * {
  color: black;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 130%;
  color: black;
  list-style: none;
  margin-bottom: 0px;
}

#noticer {
  display: inline-block;
  pointer-events: initial;
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px black;
  background-color: white;
  z-index: 15;
  margin: 0 0 10px;
  color: black;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 130%;
  color: black;
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
}

#noticer.active {
  opacity: 1;
}

.wc-forward:not(.btn),
.restore-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 130%;
  color: black;
  text-decoration: underline;
}


/* ======= CATEGORIES BLOCK START ======== */
.categories-block {
  margin-top: clamp(2.5rem, 1.4821rem + 5.0893vw, 6.0625rem);
  margin-bottom: clamp(2.5rem, 1.4821rem + 5.0893vw, 6.0625rem);
}

.categories-block__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(0.5rem, 0.3214rem + 0.8929vw, 1.125rem);
}

.categories-block__title {
  font-size: clamp(1.375rem, 0.6071rem + 3.8393vw, 4.0625rem);
  font-family: var(--second-family);
  font-weight: 700;
  line-height: 115%;
  color: #1f2022;
}

.categories-block__categories-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(0.25rem, 0.0179rem + 1.1607vw, 1.0625rem)
    clamp(0.25rem, 0.1071rem + 0.7143vw, 0.75rem);
  height: auto;
  width: 100%;
}

.wc-category__card-v1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  aspect-ratio: 32/26;
  position: relative;
  overflow: hidden;
  border-radius: clamp(0.375rem, 0.125rem + 1.25vw, 1.25rem);

  .wc-categroy__card-v1__pseudo {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(2.5rem, 0.7857rem + 8.5714vw, 8.5rem);
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  }

  .wc-category__card-v1__photo {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
  }

  .wc-category__card-v1-actions {
    display: flex;
    flex-direction: row;
    position: relative;
    width: auto;
    z-index: 3;
    pointer-events: none;
    padding-left: clamp(0.5rem, -0.0179rem + 2.5893vw, 2.3125rem);
    padding-right: clamp(0.8125rem, 0.5089rem + 1.5179vw, 1.875rem);
    margin-bottom: clamp(0.625rem, 0.2857rem + 1.6964vw, 1.8125rem);
    top: 0;
    margin-top: auto;
    gap: clamp(0.3125rem, 0.1339rem + 0.8929vw, 0.9375rem);
    justify-content: space-between;

    svg {
      display: flex;
      width: clamp(0.375rem, 0.125rem + 1.25vw, 1.25rem);
      height: clamp(0.5rem, 0.2143rem + 1.4286vw, 1.5rem);
      right: clamp(0.875rem, 0.5893rem + 1.4286vw, 1.875rem);
      flex-shrink: 0;
      margin-top: auto;
    }
  }

  .wc-category__card-v1__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .wc-category__card-v1__desc {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: clamp(0.625rem, 0.5179rem + 0.5357vw, 1rem);
    color: #fff;
  }

  .wc-category__card-v1__name {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: clamp(0.75rem, 0.4286rem + 1.6071vw, 1.875rem);
    line-height: 115%;
    color: #fff;
    max-width: 98%;
  }

  img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    transition: 1s;
  }
}

.wc-category__card-v1:hover {
  img {
    transform: scale(1.2);
  }
}

@media (max-width: 1100px) {
  .categories-block__categories-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 440px) {
  .categories-block__categories-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .wc-category__card-v1 {
    aspect-ratio: 1.5 / 1;
	  
	  .wc-category__card-v1__name{
		  font-family: var(--second-family);
font-weight: 700;
font-size: 16px;
line-height: 100%;
color: #fff;
		  max-width:100%;
	  }
	  .wc-category__card-v1-actions{
		  svg{
			  margin-bottom:2px;
		  }
	  }
  }
  .wc-category__card-v1__desc {
    display: none;
  }
	.categories-block{
		margin-top:40px;
		margin-bottom:40px;
	}
	.categories-block__container{
		gap:16px;
	}
	.categories-block__title{
		font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
	}
}
/* ======= CATEGORIES BLOCK END ======== */

.accordeon-block-content.filterable .local-search {
	display:none !important;
}

#contacts > div > div > div.contacts-block__info > div:nth-child(3) > div.contacts-block__value-wrapper > div.contacts-block__value {
	width: 100%;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 480px) {
	#contacts > div > div > div.contacts-block__info > div:nth-child(3) > div.contacts-block__value-wrapper > div.contacts-block__value {
		width: 100%;
    	flex-shrink: 1;
    	white-space: normal;
	}
}

.wc-single__product-price__holder .price {
            font-family: var(--second-family);
            font-weight: 700;
            font-size: clamp(1.375rem, 1.0536rem + 1.6071vw, 2.5rem);
            line-height: 150%;
            color: #1e1e1e;
}

@media(max-width:500px) {
	.products-list__category{
		margin-top:36px;
	}
	.mobile-filter-trigger {
		font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
		gap:0px;
		width:auto;
		max-width:140px;
	}
	.mobile-filter-text{
				font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
		
	}
	.mobile-filter-arrow svg{
		width:16px;
		height:16px;
	}
	.mobile-open-filter__action{
		gap:4px;
	}
	.mobile-open-filter__action-name {
		font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
text-align: right;
color: #686868;
		opacity:.8;
	}
	.wc-product__card-price__holder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  bdi {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
   font-size: 20px;
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 20px;
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card:has(del) {
  del {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
  font-size: 20px;
    text-decoration: line-through;
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 20px;
      text-decoration: line-through;
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card:has(ins) {
  ins {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
   font-size: 20px;
    line-height: 150%;
    color: #1e1e1e;

    * {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
     font-size: 20px;
      line-height: 150%;
      color: #1e1e1e;
    }
  }
}

.wc-product__card .regular-price,
.wc-product__card .regular-price * {
  all: initial;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  text-decoration: line-through;
  line-height: 150%;
  color: #1e1e1e;
}

.wc-product__card .sale-price,
.wc-product__card .sale-price * {
  all: initial;
  font-family: var(--second-family);
  font-weight: 700;
	font-size: 20px;
  line-height: 150%;
  color: #1e1e1e;
}
	
	.wc-product__card-btn{
		width:32px;
		height:32px;
	}
	
	.wc-product__card-btn svg {
		width:14px;
		height:16px;
	}

	
	.woocommerce .site-footer,
	.woocommerce-checkout .site-footer{
		margin-top:80px;
	}
	
	.wc-catalog__sidebar-close {
		top:10px;
		right:16px;
	}
	
	.filters-form .content__toggler{
		display:flex;
	}
	
	 .wc-catalog__sidebar {
        .in-stock-toggle {
			margin-top:16px !important;
			padding-top:16px !important;
		}
	}
	
	.price__block .accordeon-block-header {
		pointer-events:none !important;
		
		.content__toggler{
			display:none;
		}
	}
	.wc-catalog__sidebar {
        & .inputs-price__pseudo {
			input {
				height:32px !important;
			}
		}
	}
	
	.wc-catalog__sidebar {
        .accordeon-block {
			margin-top:16px !important;
			padding-top:16px !important;
		}
	}
	
	.filters-widget {
    .inputs.checkboxes.list .group-label {
		font-size:12px !important;
		}
	}
	
	.filters-widget {
    .accordeon-block .padding-box {
		margin-top:6px !important;
		}
	}
	
	    .wc-catalog__sidebar {
        .categories-filter__holder {
            padding-top: 0px !important;
            margin-top: 0px !important;
        }
    }
	
	    .wc-catalog__sidebar {
        .noUi-target {
            width: 98% !important;
            margin-bottom: 10px !important;
        }
    }
	
	    .wc-catalog__sidebar {
        .filter-widget__btn {
            height: 40px !important;
            padding: unset !important;
			flex-shrink: 0;
			font-family: var(--font-family) !important;
			font-weight: 400 !important;
			font-size: 12px !important;
			line-height: 183% !important;
			text-align: center !important;
			color: #fff !important;
        }
    }
	
	    .wc-catalog__sidebar {
        .wc-catalog__sidebar-clear {
			font-family: var(--font-family);
			font-weight: 400;
			font-size: 12px;
			line-height: 130%;
			text-decoration: underline;
			text-decoration-skip-ink: none;
			text-align: right;
			color: #ba1735;
			}
	}
	
	.wc-single__product-stock__badge-mobile {
		top:16px;
		right:11px;
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 9px;
		line-height: 130%;
		color: #fff;
		padding:3px 8px;
	}
	
	.swiper-thumbs__holder .holder-photo {
		border-radius: 6px;
	}
	
	.swiper-thumbs__holder .holder {
		height: 296px !important;
	}
	
	.wc-single__product-summary {
		gap: 20px;
	}
	
	.wc-single__product-title {
		font-family: var(--second-family);
		font-weight: 700;
		font-size: 22px;
		line-height: 105%;
		color: #1e1e1e;
	}
	
	.wc-single__product-title__holder {
		gap:4px;
	}
	
	.wc-single__product-short__desc {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 14px;
		line-height: 130%;
		color: #1f2022;
		opacity:.8;
	}
	
	.wc-single__product-addons {
		margin-top:12px;
	}
	
	.wc-single__product-addons__title {
		font-family: var(--second-family);
font-weight: 700;
font-size: 18px;
line-height: 150%;
color: #801e1e;
	}
	
	.wc-single__product-addons__item label {
		font-family: var(--font-family);
		font-weight: 400;
		font-size: 12px;
		line-height: 130%;
		color: #1e1e1e;
		opacity:.8;
	}
	
	.wc-single__product-content {
  .wc-single__product-price__holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    bdi {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 22px;
      line-height: 150%;
      color: #1e1e1e;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 22px;
        line-height: 150%;
        color: #1e1e1e;
      }
    }
  }

  .wc-single__product-price__holder:has(del) {
    del {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 22px;
      line-height: 150%;
      color: #1e1e1e;
      text-decoration: line-through;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
        font-size: 22px;
        line-height: 150%;
        color: #1e1e1e;
        text-decoration: line-through;
      }
    }
  }

  .wc-single__product-price__holder:has(ins) {
    ins {
      all: initial;
      font-family: var(--second-family);
      font-weight: 700;
      font-size: 22px;
      line-height: 150%;
      color: #1e1e1e;

      * {
        all: initial;
        font-family: var(--second-family);
        font-weight: 700;
    font-size: 22px;
        line-height: 150%;
        color: #1e1e1e;
      }
    }
  }

  .wc-single__product-price__holder .regular-price,
  .wc-single__product-price__holder .regular-price * {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
 font-size: 22px;
    line-height: 150%;
    color: #1e1e1e;
    text-decoration: line-through;
  }

  .wc-single__product-price__holder .sale-price,
  .wc-single__product-price__holder .sale-price * {
    all: initial;
    font-family: var(--second-family);
    font-weight: 700;
font-size: 22px;
    line-height: 150%;
    color: #1e1e1e;
  }
}
	
	.wc-single__product-actions {
		margin-top:20px;
		gap:10px;
	}
	
	.wc-single__product-price__holder{
		padding-left:16px;
		padding-right:16px;
	}
	
	.wc-single__product-actions__buttons > * {
		height:40px;
		font-family: var(--font-family);
font-weight: 400;
font-size: 12px;
line-height: 183%;
text-align: center;
	}
	
	.wc-single__product-additional {
		margin-top:39px;
		border-radius: 10px;
		padding-right:19px;
		
		.mobile-accordion-item {
			padding-right:unset;
			padding-left:19px;
			gap:2px;
		}
		
/* 		.mobile-accordion-item:first-child {
			padding-top: 23px;
		} */
		
		.mobile-accordion-item:last-child {
			padding-bottom: 9px;
		}
		
		.mobile-accordion-header {
			padding-top:6px;
			padding-bottom:6px;
		}
		
		
		.mobile-accordion-content {
			font-family: var(--font-family);
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #fff;
			opacity:.8;
		}
		
		.mobile-accordion-content.active {
			padding-bottom:12px;
		}
	}
	
	.wc-single__product-related {
		gap: 16px;
	}
	
	.wc-single__product-related__title {
		font-family: var(--second-family);
		font-weight: 700;
		font-size: 28px;
		line-height: 115%;
		color: #1f2022;
	}
	
		.checkout-title__holder {
		margin-top:30px;
		margin-bottom:30px;
		
		h1 {
			font-family: var(--second-family);
			font-weight: 700;
			font-size: 28px;
			line-height: 115%;
			color: #1f2022;
			margin-bottom:0px;
		}
		
		.checkout-go__back{
			display:none;
		}
	}
	
	.checkout {
		gap:40px;
		
		.woocommerce-checkout-review-order {
			border-radius: 10px;
			padding-top:15px;
			padding-left:12px;
			padding-right:16px;
			padding-bottom:12px;
			
			.order-btn{
				margin-top:16px;
				button {
					height:36px;
					font-family: var(--font-family);
					font-weight: 400;
					font-size: 12px;
					line-height: 183%;
					text-align: center;
					color: #1e1e1e;
					padding:unset;
				}
			}
			
			.custom-checkout-review-order__total {
				padding-top:12px;
				
				.custom-checkout-review-order__label {
					font-family: var(--font-family);
					font-weight: 400;
					font-size: 13px;
					line-height: 130%;
					color: #fff;
					opacity:.8;
				}
				
				.custom-checkout-review-order__total-value, 
				.custom-checkout-review-order__total-value * {
					font-family: var(--second-family);
					font-weight: 700;
					font-size: 22px;
					line-height: 150%;
					color: #fff;
				} 
			}
			
			.custom-checkout-review-order__shipping {
				margin-bottom:12px;
			}
			
			.custom-checkout-review-order__label {
				font-family: var(--font-family);
font-weight: 500;
font-size: 12px;
line-height: 130%;
color: #fff;
			}
			
			.custom-checkout-review-order__value {
				font-family: var(--font-family);
font-weight: 400;
font-size: 13px;
line-height: 130%;
color: #fff;
			}
			
			.custom-checkout-review-order__products{
				gap:12px;
				margin-bottom: 12px;
			}
			
			.custom-checkout-review-order__shipping, 
			.custom-checkout-review-order__payment {
				flex-direction:column;
				gap:2px;
				align-items:flex-start;
			}
			
			.custom-checkout-review-order__title {
				font-family: var(--second-family);
				font-weight: 700;
				font-size: 22px;
				line-height: 150%;
				padding-bottom:6px;
				color: #fff;
				margin-bottom:9px;
			}
			
			.product-name{
				gap:16px;
				font-family: var(--font-family);
				font-weight: 600;
				font-size: 14px;
				line-height: 130%;
				color: #fff;
				align-items:flex-end;
				
				span {
					font-family: var(--font-family);
					font-weight: 400;
					font-size: 12px;
					line-height: 130%;
					color: #fff;
					opacity:.5;
				}
			}
		}
		
		.woocommerce-checkout-payment {
			gap:8px;
			
			.block__title {
				font-family: var(--second-family);
font-weight: 700;
font-size: 20px;
line-height: 150%;
color: #1f2022;
			}
			
			.label-content {
				font-family: var(--font-family);
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #1a1a1a;
				opacity:.8;
			}
		}
		
		.woocommerce-shipping-methods{
			flex-direction:column;
			align-items:flex-start;
			gap:8px;
			
			li {
				label {
					padding-left:12px;
					font-family: var(--font-family);
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #1a1a1a;
					opacity:.8;
				}
				input {
					width:16px;
					height:16px;
				}
				input::after {
					width:8px;
					height:8px;
				}
			}
			
		}
		
		.need__shipping {
			gap:8px;
		}
		
		.woocommerce-shipping-totals__title {
			font-family: var(--second-family);
font-weight: 700;
font-size: 20px;
line-height: 150%;
color: #1f2022;
		}
		
		.col-2__additional{
			margin-top:24px;
			flex-direction:column;
			gap:24px;
		}
		
		.woocommerce-invalid-required-field::after {
			font-family: var(--font-family);
font-weight: 400;
font-size: 8px;
line-height: 130%;
color: #f00;
			opacity:.8;
			padding-left:unset;
		}
		
		.thwcfe-input-field-wrapper {
			
			input {
				padding:9px 12px;
				font-weight: 400;
				font-size: 11px;
			}
			
			input::placeholder {
				font-family: var(--font-family);
font-weight: 400;
font-size: 11px;
line-height: 130%;
color: #1a1a1a;
				opacity:.2;
			}
			
        label {
			padding-left:unset;
			font-family: var(--font-family);
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #1a1a1a;
			opacity:.8;
			}
		}
		
		#billing_user_type_field {
			gap:8px;
			margin-bottom:25px;
			
			input {
				width:16px;
				height:16px;
			}
			
			input::after {
				width:8px;
				height:8px;
			}
			
			.woocommerce-input-wrapper {
				label {
					padding:unset;
					font-family: var(--font-family);
	font-weight: 400;
	font-size: 12px;
	line-height: 130%;
	color: #1a1a1a;
					opacity:.8;
				}
			}
		}
		#billing_user_type_field > label {
			font-family: var(--second-family);
font-weight: 700;
font-size: 20px;
line-height: 150%;
color: #1f2022;
			opacity:1;
		}
	}
	
}@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 300;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-Light.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 400;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-Regular.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 500;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-Medium.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 600;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-SemiBold.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 700;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-Bold.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "OpenSans";
	font-style: normal;
	font-weight: 900;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/OpenSans-ExtraBold.ttf) format("truetype");
}

/* Pobeda Font */
@font-face {
	font-display: swap;
	font-family: "Pobeda";
	font-style: normal;
	font-weight: 400;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/pobeda-regular.ttf) format("truetype");
}
@font-face {
	font-display: swap;
	font-family: "Pobeda";
	font-style: normal;
	font-weight: 700;
	src: url(//friax.ru/wp-content/themes/theme/assets/fonts/pobeda-bold.ttf) format("truetype");
}/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;overflow:clip;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0px)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}/* Single Article Styles */

.article-single {
  padding: 40px 0;
  background: #fff;
}

/* Breadcrumbs */
.article-single .breadcrumbs {
  padding: 20px 0 30px 0;
/*   font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #1f2022;
  opacity: 0.6;
  display: flex;
  gap: 5px; */
}

.article-single .breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  transition: opacity 0.3s ease;
}

.article-single .breadcrumbs span:hover {
  opacity: 1;
}

.article-single .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.article-single .breadcrumbs .current-item {
  opacity: 1;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  color: #1e1e1e;
}

.article-single .breadcrumbs .current-item span {
  opacity: 1;
}

.article-single__header {
  margin-bottom: 40px;
}

.article-single__header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}

.article-single__meta {
  flex: 1;
}

.article-single__date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #1e1e1e;
  opacity: 0.6;
  margin-bottom: 15px;
}

.article-single__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 65px;
  line-height: 115%;
  color: #1f2022;
  margin: 0;
  text-transform: uppercase;
}

/* Кнопка "Назад ко всем статьям" */
.article-single__back {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 122%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #1e1e1e;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.article-single__back:hover {
  opacity: 0.7;
}

/* Section 1: Full width image + 2 column text */
.article-single__section-1 {
  margin-bottom: 40px;
}

.article-single__image-full {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}

.article-single__image-full img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 440px;
}

.article-single__text-columns {
  column-count: 2;
  column-gap: 40px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #1f2022;
}

.article-single__text-columns p {
  margin: 0 0 15px 0;
/*   break-inside: avoid; */
}

.article-single__text-columns ul,
.article-single__text-columns ol {
  margin: 0 0 15px 0;
  padding-left: 20px;
  break-inside: avoid-column;
}

.article-single__text-columns li {
  margin-bottom: 8px;
  list-style-position: outside;
}

.article-single__text-columns ul li {
  list-style-type: disc;
}

.article-single__text-columns ol li {
  list-style-type: decimal;
}

/* Section 2: Left column (2 small blocks) + Right column (large image + content) */
.article-single__section-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.article-single__left-column {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 768px) {
  .article-single__left-column {
    flex-direction: column;
  }
}

.article-single__small-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
	width: 100%;
}

.article-single__small-block .article-single__image {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.article-single__small-block .article-single__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-single__small-block .article-single__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #1f2022;
}

.article-single__small-block .article-single__text p {
  margin: 0 0 15px 0;
}

.article-single__small-block .article-single__text ul,
.article-single__small-block .article-single__text ol {
  margin: 0 0 15px 0;
  padding-left: 20px;
}

.article-single__small-block .article-single__text li {
  margin-bottom: 8px;
  list-style-position: outside;
}

.article-single__small-block .article-single__text ul li {
  list-style-type: disc;
}

.article-single__small-block .article-single__text ol li {
  list-style-type: decimal;
}

.article-single__right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-single__large-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.article-single__large-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.article-single__content {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #1f2022;
}

.article-single__content p {
  margin: 0 0 15px 0;
}

.article-single__content ul,
.article-single__content ol {
  margin: 0 0 15px 0;
  padding-left: 20px;
}

.article-single__content li {
  margin-bottom: 8px;
  list-style-position: outside;
}

.article-single__content ul li {
  list-style-type: disc;
}

.article-single__content ol li {
  list-style-type: decimal;
}

.article-single__content a {
  color: #801e1e;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.article-single__content a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .article-single {
    padding: 30px 0;
  }
  
  .article-single__header {
    margin-bottom: 30px;
  }
  
  .article-single__header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .article-single__back {
    font-size: 16px;
    order: -1;
  }
  
  .article-single__title {
    font-size: 45px;
  }
  
  .article-single__text-columns {
    column-count: 1;
    font-size: 15px;
  }
  
  .article-single__section-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .article-single__small-block .article-single__image {
    height: 250px;
  }
  
  .article-single__small-block .article-single__text {
    font-size: 15px;
  }
  
  .article-single__large-image img {
    min-height: 400px;
  }
  
  .article-single__content {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .article-single__back {
    font-size: 14px;
  }
	
	.article-single{
		padding-top:0px;
	}
	
	.article-single__back {
		display:none;
	}
	
	.article-single .breadcrumbs {
		        padding-top: 30px;
        padding-bottom: 24px;
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 12px;
        color: #1e1e1e;
        /* flex-wrap: wrap; */
        overflow: scroll;
        flex-wrap: nowrap;
        /* width: 100vw; */
        /* padding-right: 30px; */
        /* margin-left: calc(-100vw / 2 + 100% / 2); */
        margin-right: calc(-100vw / 2 + 100% / 2);
        max-width: 1920px;
		opacity:1;
	}
	
	.article-single .breadcrumbs span {
		font-family: inherit;
        font-size: inherit;
        line-height: inherit;
        color: #1e1e1e;
        transition: 0.3s;
        text-wrap: nowrap;
	}
	
	.article-single .breadcrumbs .current-item {
		    color: #1e1e1e;
    font-weight: 600;
		font-size:12px;
	}
	
	.article-single__date {
		margin-bottom:4px;
		font-family: var(--font-family);
font-weight: 400;
font-size: 11px;
line-height: 130%;
color: #1e1e1e;
		opacity:.8;
	}
	
	.article-single__title {
		font-family: var(--second-family);
font-weight: 700;
font-size: 28px;
line-height: 115%;
color: #1f2022;
	}
  
	.article-single__header-top {
		margin-bottom:0px;
	}
	
	.article-single__header{
		margin-bottom:16px;
	}
	
	.article-single__image,
	.article-single__image-full {
		height:262px;
		border-radius:6px;
		
		img{
			width:100%;
			height:100%;
		}
	}
  
  .article-single__text-columns {
    font-size: 14px;
  }
  
  .article-single__small-block .article-single__image {
    height: 200px;
  }
  
  .article-single__small-block .article-single__text {
    font-size: 14px;
  }
  
  .article-single__large-image img {
    min-height: 262px;
  }
	
	.article-single__image-full{
		margin-bottom:16px;
	}
  
	.article-single__section-1 {
		margin-bottom:0px;
	}
	
	.article-single__section-2{
		margin-top:0px;
	}
	
	.article-single__left-column{
		gap:0px;
	}

  .article-single__content {
  font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
  }
	
		.article-single__text-columns *,
	.article-single__small-block .article-single__text * {
		font-family: var(--font-family);
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #1f2022;
	}
}