﻿@charset "UTF-8";

/* ===================================================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS) - Унифицированная система
   =================================================================================== */
:root {
    /* ==========================================================================
       ЦВЕТА БРЕНДА
       ========================================================================== */
    --primary-color: #233D63;
    --primary-dark: #1a2d4a;
    --primary-light: #2c4a7a;
    
    --secondary-color: #0071B8;
    --secondary-light: #0089D9;
    --secondary-dark: #005A94;
    
    --accent-purple: #574b90;
    --accent-purple-light: #6f36b9;
    --accent-blue: #6c5db1;
    --accent-pink: #FF3A46;
    
    /* ==========================================================================
       БАЗОВЫЕ ЦВЕТА
       ========================================================================== */
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* ==========================================================================
       ЦВЕТА ТЕКСТА
       ========================================================================== */
    --text-primary: #0f172a;
    --text-secondary: #233D63;
    --text-body: #333333;
    --text-muted: #475569;
    --text-light: #718096;
    --text-disabled: #94a3b8;
    --text-inverse: #ffffff;
    
    /* ==========================================================================
       ЦВЕТА ФОНА
       ========================================================================== */
    --bg-primary: #ffffff;
    --bg-secondary: #edf1f2;
    --bg-tertiary: #f8fafc;
    --bg-gray: #f7f7f7;
    --bg-dark: #1e293b;
    
    /* ==========================================================================
       ЦВЕТА СОСТОЯНИЙ (STATUS COLORS)
       ========================================================================== */
    --success-color: #5cb85c;
    --success-light: #d4edda;
    --info-color: #5bc0de;
    --info-light: #d1ecf1;
    --warning-color: #f0ad4e;
    --warning-light: #fff3cd;
    --danger-color: #d9534f;
    --danger-light: #f8d7da;
    --error-color: #FF3A46;
    
    /* ==========================================================================
       ЦВЕТА ССЫЛОК
       ========================================================================== */
    --link-color: #0071B8;
    --link-hover: #005A94;
    --link-active: #004A7A;
    
    /* ==========================================================================
       ЦВЕТА ГРАНИЦ
       ========================================================================== */
    --border-primary: #e2e8f0;
    --border-secondary: #e9eaec;
    --border-medium: #dedede;
    --border-dark: #cbd5e1;
    --border-muted: #f1f5f9;
    
    /* Дополнительные цвета */
    --color-gray-100: #f8f8f8;
    --color-gray-200: #f7f7f8;
    --color-gray-300: #f5f5f5;
    --color-gray-400: #e6e6e6;
    --color-gray-500: #c1c1c1;
    --color-gray-600: #a2a2a2;
    --color-gray-700: #808080;
    --color-gray-800: #535353;
    --color-gray-900: #666666;
    --color-gray-950: #333333;
    
    --color-blue-light: #cde4fd;
    --color-blue-lighter: #f0f9ff;
    
    /* ==========================================================================
       ТЕНИ (SHADOWS)
       ========================================================================== */
    --shadow-none: none;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 24px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-colored: 0 6px 6px #e4e4e4;
    --shadow-product: 1px 2px 4px rgba(0, 0, 0, 0.1);
    
    /* ==========================================================================
       ТИПОГРАФИКА
       ========================================================================== */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Размер шрифта по умолчанию */
    --font-size-base: 14px;
    --line-height-base: 1.5;
    --line-height-tight: 1.2;
    --line-height-normal: 1.4;
    --line-height-relaxed: 1.6;
    
    /* Веса шрифтов */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* ==========================================================================
        РАЗМЕРЫ ЗАГОЛОВКОВ (SEMANTIC HEADING SIZES)
        ========================================================================== */
    /* Desktop sizes - logical descending scale */
    --heading-h1: 3rem;           /* 48px */
    --heading-h1-mobile: 1.75rem; /* 28px */
    
    --heading-h2: 2.5rem;           /* 32px */
    --heading-h2-mobile: 1.5625rem; /* 25px */
    
    --heading-h3: 1.5rem;         /* 24px */
    --heading-h3-mobile: 1.25rem;  /* 20px */
    
    --heading-h4: 1.25rem;        /* 20px */
    --heading-h4-mobile: 1.125rem; /* 18px */
    
    /* Размеры для компонентов */
	--text-xs: 10px;
    --text-sm: 12px;
    --text-md-sm: 13px;
    --text-base: 14px;
    --text-lg: 15px;
    --text-product-name: 14px;
    --text-product-price: 1.8rem;
    --text-button: 14px;
    --text-input: 14px;
    --text-label: 13px;
    --text-caption: 11px;
    --text-small: 12px;
	--text-14xl: 33px;
	--text-10xl: 28px;
    
    /* ==========================================================================
       ОТСТУПЫ (SPACING) - шкала 4px
       ========================================================================== */
    --spacing-0: 0;
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 20px;
    --spacing-6: 24px;
    --spacing-7: 30px;
    --spacing-8: 40px;
    --spacing-9: 48px;
    --spacing-10: 64px;
    
    /* ==========================================================================
       РАДИУСЫ СГЛАЖИВАНИЯ (BORDER RADIUS) - стандартизированная шкала
       ========================================================================== */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-3xl: 15px;
    --radius-4xl: 16px;
    --radius-5xl: 24px;
    --radius-full: 9999px;
    
    /* Специальные радиусы */
    --radius-base: 20px;
    --radius-button: 100px;
    --radius-input: 5px;
    --radius-card: 12px;
    --radius-modal: 24px;
    
    /* ==========================================================================
       АНИМАЦИИ И ПЕРЕХОДЫ (TRANSITIONS)
       ========================================================================== */
    --transition-instant: 0.1s linear;
    --transition-fast: 0.15s linear;
    --transition-base: 0.2s ease;
    --transition-slow: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.3s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-spring: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    --transition-delayed: 0.5s ease-in-out;
    --transition-slowest: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* ==========================================================================
       Z-INDEX ШКАЛА
       ========================================================================== */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-fixed: 1000;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-notification: 1080;
    
    /* ==========================================================================
       КОМПОНЕНТЫ
       ========================================================================== */
    /* Header */
    --header-height: 72px;
    --header-height-mobile: 64px;
    
    /* Container */
    --container-max-width: 1200px;
    
    /* Product card */
    --product-card-min-height: 350px;
    --product-card-padding: 10px;
    
    /* ==========================================================================
       ФУНКЦИИ (для внутреннего использования)
       ========================================================================== */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* ==========================================================================
   БАЗОВЫЕ СТИЛИ
   ========================================================================== */
body {
	font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	background-color: var(--bg-secondary);
}

/* ==========================================================================
   ЗАГОЛОВКИ
   ========================================================================== */
h1, .h1 {
    font-size: var(--heading-h1);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-7);
    color: var(--primary-color);
}

h2, .h2 {
    font-size: var(--heading-h2);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

h3, .h3 {
    font-size: var(--heading-h3);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

h4, .h4 {
    font-size: var(--heading-h4);
    line-height: var(--line-height-normal);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    h1 { font-size: var(--heading-h1-mobile); }
    h2 { font-size: var(--heading-h2-mobile); }
    h3 { font-size: var(--heading-h3-mobile); }
    h4 { font-size: var(--heading-h4-mobile); }
}

/* ==========================================================================
   ТЕКСТ
   ========================================================================== */
p {
    margin-bottom: var(--spacing-lg);
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    hyphens: auto
}

/* ==========================================================================
   ССЫЛКИ
   ========================================================================== */
a {
    color: var(--link-color);
    text-decoration: none !important;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--link-hover);
    text-decoration: none !important;
}


/* ==========================================================================
   ХЕДЕР И НАВИГАЦИЯ
   ========================================================================== */
@media only screen and (max-width:767px) {
	.show-sidebar {
		overflow: hidden;
	}
}
.pt-1{
    padding-top: 1em;
}
.align-middle,
svg:not(:root) {
	vertical-align: middle;
}

.text-uppercase {
	text-transform: uppercase!important;
}

body.modal-open {
	overflow: inherit;
	padding-right: 0!important;
}

.fa {
	font-size: 14px;
}

.open .fa-caret-down,
.open .caret {
	transform: rotate(180deg);
	transition: all .2s;
}

.caret,
.fa-caret-down {
	transition: all .2s;
}

@media only screen and (min-width:768px) {
	.form-horizontal .control-label {
		text-align: left;
	}
}

:focus {
	outline: none!important;
}

.button:hover,
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
	box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, .1);
}

.product-title{
	margin-bottom: 30px;
	text-align: center;
}

.form-group select {
	box-shadow: none;
}

span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
	display: inline;
}

div.required .control-label:before {
	content: '* ';
	color: var(--danger-color);
	font-weight: bold;
}

.dropdown-menu li>a:hover {
	text-decoration: none;
	color: var(--text-inverse);
	background-color: var(--secondary-color);
	background-image: linear-gradient(to bottom, var(--secondary-light), var(--secondary-dark));
	background-repeat: repeat-x;
}

.img-responsive {
	margin: 0 auto;
}

.header-user-block {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
}

@media only screen and (max-width:767px) {
	.header-user-block {
		display: none;
	}
}

.header-nav-search {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
	padding: 0 15px;
}

.header-nav-search .input-lg {
	position: static;
	padding: 0 110px 0 10px;
	border: 0;
	height: 4rem;
	font-weight: normal;
	border-radius: 4px 0 0 4px;
}

.header-nav-search.btn-lg {
	background: var(--secondary-color);
	padding: 0 40px;
	cursor: pointer;
	pointer-events: visible;
	z-index: 1;
	border: 0;
	text-shadow: none;
	color: var(--text-inverse);
}

.header-nav-search .btn-lg:before {
	content: '';
	position: absolute;
	border-width: 8px 8px 8px 0;
	border-style: solid solid solid none;
	border-color: transparent var(--secondary-color) transparent;
	top: 13px;
	left: -8px;
}

/* ==========================================================================
   ПОИСК
   ========================================================================== */
.callback-name {
	margin-bottom: 6px;
}

.callback-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.search-input {
	position: relative;
}

input.header-nav-search-input {
	height: 40px;
	line-height: 40px;
	padding: 0 45px 0 15px;
	position: relative;
	border: 0;
	width: 100%;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 300;
	background: var(--bg-gray);
	border: 1px solid var(--border-medium);
}

.header-nav-search-input:focus {
	border-color: var(--border-dark);
}

.search-input .search-btn {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	color: var(--text-light);
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	width: 55px;
}

.search-input .search-btn:hover {
	background: transparent;
	color: var(--accent-purple);
}

.btn>span:first-of-type {
	min-width: 0;
	white-space: nowrap;
}

.cart-content .btn-checkout.btn {
	background: var(--accent-pink);
}


/* ==========================================================================
   КАРТОЧКИ ТОВАРОВ
   ========================================================================== */
.product-thumb{
    width: auto;
    min-height: 350px;
    box-shadow: var(--shadow-product);
    display: flex;
	border-radius: var(--radius-card);
    flex-direction: column;
    transition: 0.2s;
    position: relative;
    background: var(--bg-primary);
    padding: 10px;
	overflow: hidden;
}


.product-thumb_komplect{
    background: var(--bg-primary);
    width:260px;
	overflow: hidden;
	position: relative;
	z-index: 2;
	transition: all .3s;
	margin: 10px;
	border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
}

.product-thumb:hover {
	z-index: 2;
}

.product-thumb .image {
	text-align: center;
	position: relative;
	overflow: hidden;
}

.product-thumb .image a {
	display: block;
}

.product-thumb .product-name {
	display: block;
	text-transform: none;
	color: var(--color-black);
    overflow: hidden;
	font-weight: var(--font-weight-extrabold);
	text-align: left;
}

.product-thumb .product-name:hover,
.product-thumb .product-name:focus {
	text-decoration: none;
	color: var(--secondary-color);
}

.product-title-content .stock {
	font-size: 13px;
    font-weight: 500;
}

.product-thumb .caption {
	padding: 0 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-thumb_komplect .caption_komlect {
	padding: 0 20px 20px;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}


.product-thumb .absolute {
	width: 100%;
    margin-top: auto;
}
.product-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content: space-evenly;
}
.product-grid{
    display:flex;
    flex-wrap:wrap;
    align-items: stretch;
    justify-content: space-around;
}
@media only screen and (max-width:900px) {
    #top .nav{
    justify-content:flex-start !important;
    }
    #top-links>ul {
    text-align: left;
    align-items: flex-start;
    height: auto;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    }
    #top{
        height: auto;
    }
    #top-links li, #top-links a {
        height: 35px;
    }
	.home-menu{
	padding: 10px 0 0 0;
	}
}

.product-thumb .price {
	transition: all .3s;
	overflow: hidden;
}

.product-thumb .price,
.product-thumb .buy-box .button-group {
	display: inline-block;
	vertical-align: middle;
}

.product-thumb .buy-box .button-group {
	margin-left: 10px;
}


.add-cart-tooltip {
	font-size: 13px;
	color: var(--text-primary);
	padding: 3px 10px;
	-webkit-border-radius: var(--radius-input);
	-moz-border-radius: var(--radius-input);
	-khtml-border-radius: var(--radius-input);
	border-radius: var(--radius-input);
	position: absolute;
	left: -50px;
	top: -40px;
	white-space: nowrap;
	z-index: 1;
	background: var(--bg-primary);
	-webkit-box-shadow: 0 6px 13px 0 rgba(165, 163, 163, 0.57);
	-moz-box-shadow: 0 6px 13px 0 rgba(165, 163, 163, 0.57);
	box-shadow: 0 6px 13px 0 rgba(165, 163, 163, 0.57);
	display: none;
}

.add-cart-tooltip.visible {
	display: block;
}

.product-thumb .price-new {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--secondary-color);
	line-height: normal;
}

.card__bottom {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto; /* Занимаем всю оставшуюся высоту карточки */
  padding: 10px;
}
.rel-thumb .product_price {
	display: table-cell;
	vertical-align: middle;

}

@media only screen and (max-width:1124px){
.card__top{
	flex: 0 0 190px;
	}
	.cards{
	grid-template-columns: repeat(auto-fill, 30.3%);
	}
}
@media only screen and (max-width:1024px){
.card__top{
	flex: 0 0 150px;
	}
	.cards{
	grid-template-columns: repeat(auto-fill, 30.3%);
	}
}
@media only screen and (max-width:767px) {
	.product-thumb .price-new {
		font-size: 1.6rem;
	}
        .product-thumb .product-name{
        font-size:14px;
	}
	/* .product_price{
	margin-bottom:10px;
	} */
	.card__top{
	    flex: 0 0 125px;
	}
	.cards{
	    column-gap: 5px;
	    grid-template-columns: repeat(auto-fill, 30.3%);
	}
	.product-thumb .image img{
	width:125px;
	}
}

@media only screen and (max-width:565px) {
.cards{
	    column-gap: 5px;
	    grid-template-columns: repeat(auto-fill, 49%);
	}
}

.product-thumb .price-tax {
	display: block;
	font-size: 11px;
}

.product-thumb .price-old {
	color: var(--text-light);
	text-decoration: line-through;
	display: inline-block;
	font-size: 13px;
	height: 100%;
	line-height: 23px;
	margin-right: 10px;
}

.product-thumb .product-price-old {
	font-size: 0;
	line-height: 0;
	padding-bottom: 8px;
	text-align: center;
	width: 100%;
}

.price-economy {
	padding: 0 8px;
	font-size: 11px;
	height: auto;
	display: inline-block;
	line-height: 19px;
	color: var(--color-black);
	border-radius: var(--radius-sm);
	border: 1px solid var(--secondary-color);
	font-weight: var(--font-weight-semibold);
}

.product-thumb .product-title-content .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 5px;
}

.product-thumb .view-fav-com {
	z-index: 3;
	position: absolute;
	top: 15px;
	right: 15px;
	text-align: center;
	transition: all .2s ease-out;
}

.view-fav-com span {
	border-radius: var(--radius-full);
	cursor: pointer;
	color: var(--text-muted);
	display: block;
	margin: 0 0 5px;
	position: relative;
	text-align: center;
	transition: all .3s ease-out;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: var(--bg-primary);
}

@media only screen and (min-width:768px) {
	.view-fav-com span:hover {
		background: var(--bg-secondary);
	}
}

.view-fav-com span:hover {
	color: var(--accent-purple);
}

.rating>sup {
	color: var(--secondary-dark);
}

@media screen and (min-width:768px) {
	.product-list .product-thumb {
		position: relative;
		display: flex;
		width: 100%;
	}
	.product-list .product-thumb .image img {
		max-width: 125px;
		max-height: 125px;
		margin: 0 auto;
	}
	.product-list .product-thumb .image {
		padding: 0 15px;
		width: 25%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.product-list .product-thumb .caption {
		justify-content: space-between;
		align-items: center;
		min-height: 155px;
		padding: 0 15px;
	}
	.product-list .product-thumb .caption,
	.product-list .product-thumb .product-title-content {
		flex-direction: row;
		flex: 1;
	}
	.product-list .product-thumb .absolute {
		margin: 0;
		width: 50%;
		text-align: right;
	}
	.product-list .product-thumb .product-name {
		font-size: 16px;
		height: auto;
		padding-bottom: 0;
	}
	.product-list .product-thumb .product-title-content .stock {
		margin-right: 10px;
	}
	.product-list .product-thumb .product-title-content .flex {
		justify-content: flex-start;
	}
}

.product-title-content{
    text-align:left;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

.header-container {
	position: relative;
	background: var(--bg-secondary);
	padding-bottom: 30px;
}

.display-table {
	display: table;
	width: 100%;
}


@media only screen and (max-width:540px) {
	.continue>div {
		text-align: center;
	}
}

.table-total.table td {
	border: 0;
}


@media(max-width:820px) {
   .display-table{
    display: flex;
    width: 100%;
    flex-direction: column;
}
}


@media only screen and (max-width:767px) {
	.home-menu {
		padding: 8px 0;
	}
}

.header-nav-categories {
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
	z-index: 10;
}

.header-nav-block {
	position: relative;
    min-width: 160px;
}

.header-nav-block:hover {
	z-index: 1100;
}

.header-nav-categories-btn {
	background: var(--secondary-color);
	padding: 0 15px;
	font-size: 15px;
	cursor: pointer;
	color: var(--text-inverse);
	white-space: nowrap;
	transition: opacity 300ms ease-in 300ms;
	height: 40px;
	margin: 8px 0;
	line-height: 40px;
	border-radius: var(--radius-input);
	width: 100%;
    text-align: center;
}

.header-nav-categories-btn span {
	vertical-align: middle;
	padding-left: 5px;
}

.header-nav-wrapper {
	position: absolute;
	left: 0;
	width: 500px;
	transition: all .3s;
	display: none;
	top: 48px;
	z-index: 15;
}

.header-nav-block.menu-active .header-nav-wrapper {
	display: block;
}

@media(max-width:767px) {
	.header-nav-block.menu-active .header-nav-wrapper {
		width: 100%;
		top: 50px;
		border: 1px solid var(--border-medium);
	}
	.header-nav-wrapper .header-nav-folders ul {
		padding: 0 0 10px;
	}
	.children.subcat-menu .level-2,
	.children.subcat-menu .last-level {
		padding: 5px 0;
	}
	.children.subcat-menu .level-2>li>i {
		margin-top: 5px;
	}
}

.header-nav-folders {
	-webkit-box-shadow: var(--shadow-colored);
	box-shadow: var(--shadow-colored);
	background: var(--bg-primary);
}

.header-nav-folders ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding: 10px 0 0 0;
}

@media(min-width:768px) {
	.last-children:before,
	.subcat-menu:before,
	.header-nav-wrapper:before {
		content: "";
		position: absolute;
		top: 0;
		width: 100%;
		height: 20px;
	}
}

.last-children,
.subcat-menu {
	-webkit-box-shadow: var(--shadow-colored);
	box-shadow: var(--shadow-colored);
	width: 100%;
	box-sizing: border-box;
	position: absolute;
	left: 100%;
	top: 0;
	display: none;
	min-height: 100%;
	background: var(--bg-primary);
}

.subcat-menu ul {
	padding-top: 15px
}

@media only screen and (max-width:767px) {
	.last-children,
	.subcat-menu {
		position: static;
		box-shadow: none;
		text-align: left;
		padding-left: 35px;
		background: var(--bg-gray);
		border-radius: 0
	}
	.last-children {
		padding-left: 15px
	}
}

.subcat-menu a {
	display: block;
	padding: 6px 20px;
	font-weight: var(--font-weight-medium);
	position: relative;
	color: var(--color-black)
}
.dop_links_main{
    display:flex;
    justify-content:flex-end;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 26px;
    margin: 0px 30px 10px 30px;
}
@media only screen and (min-width:1200px) {
	.children>ul>li.sub:hover .last-children,
	.first-li.sub:hover .subcat-menu {
		display: block
	}
}

.first-link {
	font-size: 13px;
	cursor: pointer
}

.first-link,
.first-li>a {
	display: block;
	color: var(--color-black);
	font-weight: var(--font-weight-normal);
	padding: 8px 25px 8px 15px;
	text-decoration: none;
	position: relative;
	width: 100%;
	height: 100%;
	line-height: 16px;
	white-space: normal;
}

.first-li {
	border-bottom: 1px solid var(--bg-gray)
}

.first-li:last-child {
	border-bottom: 0;
}

.header-nav-category a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight:600;
}

.first-link>.first-icon,
.first-child {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}

.first-icon img {
	vertical-align: middle;
}

.first-icon {
	text-align: center;
	padding: 0 10px 0 0;
}

.subcat-menu>ul>li.sub>a:after,
.first-li.sub>a:after {
	content: "\f054";
	font-family: FontAwesome;
	position: absolute;
	right: 15px;
	top: 14px;
	color: var(--border-primary);
	font-size: 10px;
	-webkit-transition: -webkit-transform .15s linear;
	transition: -webkit-transform .15s linear;
	transition: transform .15s linear;
	transition: transform .15s linear, -webkit-transform .15s linear;
}

.header-nav-category li.sub>.fa {
	display: none
}

@media only screen and (max-width:767px) {
	.subcat-menu>ul>li.sub>a:after,
	.first-li.sub>a:after {
		display: none
	}
	.header-nav-category li.sub>.fa {
		float: right;
		padding: 0 10px 0 0;
		color: var(--border-medium);
		font-size: 21px;
		margin-top: 10px;
		display: block
	}
	.subcat-menu a,
	.first-link,
	.first-li>a {
		margin: 0 40px 0 0;
		width: auto;
		padding-right: 15px
	}
	.last-children>ul>li>a:before,
	.subcat-menu>ul>li>a:before {
		top: 12px
	}
	.subcat-menu>ul>li>a:before,
	.last-children>ul>li>a:before {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		width: 7px;
		height: 7px;
		background:  var(--secondary-color);
	}
	.header-nav-category li.sub>.cat-menu-icon-plus.fa-minus-square {
		color:var(--secondary-color);
	}
	.last-children>ul>li>a:before {
		border-radius: 50%
	}
}

.subcat-menu>ul>li.sub>a:after {
	top: 7px
}

.subcat-menu>ul>li.sub:hover>a:after,
.first-li.sub:hover>a:after {
	color: var(--accent-purple-light);
	-webkit-transform: translateX(.3rem);
	transform: translateX(.3rem)
}

/* ==========================================================================
   ИЗОБРАЖЕНИЯ И ГАЛЕРЕЯ
   ========================================================================== */
.image-content .big-image {
	border: 0;
	padding: 0;
	position: relative
}

@media only screen and (min-width:768px) {
	.image-content .big-image:hover .view-image {
		display: block
	}
}

.image-content .view-image {
	position: absolute;
	display: none;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	background: rgba(0, 0, 0, .5) url(/static/home/images/view.png) 50% 50% no-repeat;
	transform: translate(-50%, -50%)
}

.preview-attribute {
	position: relative;
	overflow: hidden;
	max-height: 230px;
	margin-top: 15px
}

.preview-attribute .table {
	margin-bottom: 0
}

.preview-attribute .table,
.preview-attribute .table td {
	border: 0;
	overflow: hidden;
	position: relative;
	padding: 3px 0
}

.preview-attribute .dashed-line {
	display: -moz-inline-box;
	display: inline-block;
	zoom: 1;
	width: 100%;
	margin: 0 -100% 0 0;
	vertical-align: baseline;
	border-bottom: 1px dashed var(--border-medium)
}

.preview-attribute .td-content {
	font-size: 13px;
	color: var(--color-black)
}

.preview-attribute .td-content td:last-child {
	white-space: nowrap;
	padding-left: .3rem
}

.preview-attribute:after {
	content: " ";
	background-color: rgba(255, 255, 255, .31875);
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), var(--bg-primary));
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00FFFFFF', endColorstr='#D9FFFFFF', GradientType=0);
	position: absolute;
	right: 0;
	top: 0;
	height: 230px;
	width: 30px
}

.preview-attribute .td-content td:first-child {
	min-width: 240px;
	white-space: nowrap;
	text-overflow: ellipsis
}

.preview-attribute .table>tbody+tbody {
	border-top: 0 solid var(--border-medium)
}

/* ==========================================================================
   ТЕГИ И БЕДЖИ
   ========================================================================== */
.tag {
	display: inline-block;
	padding: .25em .4em;
	color: var(--text-inverse);
	text-align: center;
	vertical-align: baseline;
	border-radius: .25rem
}

.tag-success {
	background-color: var(--success-color)
}

.tag-info {
	background-color: var(--info-color)
}

.red {
	color: var(--danger-color)
}

.green {
	color: var(--success-color)
}

.orange {
	color: var(--warning-color)
}

.skyblue {
	color: var(--info-color)
}

/* ==========================================================================
   УТИЛИТЫ (ОТСТУПЫ, ВЫРАВНИВАНИЕ)
   ========================================================================== */
.m-0 {
	margin: 0!important
}

.m-t-0 {
	margin-top: 0
}

.m-t-1 {
	margin-top: 1rem
}

.m-t-2 {
	margin-top: 2rem
}

.m-b-1 {
	margin-bottom: 1rem
}

.m-b-2 {
	margin-bottom: 2rem
}

.p-1 {
	padding: 1rem
}

.f-left {
	float: left
}

.link {
	transition-duration: .3s;
	transition-property: color;
	text-decoration: none;
	color: var(--text-primary)
}

.small,
small {
	font-size: 80%
}

.height-4 {
	height: 4rem
}

.no-padding {
	padding: 0!important
}

/* ==========================================================================
   СТИКЕРЫ И СКИДКИ
   ========================================================================== */
.sale-sticker {
	background:var(--secondary-color);
	font-size: 13px;
	text-align: center;
	color: var(--text-inverse);
	font-weight: var(--font-weight-bold)
}

.product-price__discount {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center
}

.product-price__discount-label {
	font-size: 15px;
	font-weight: var(--font-weight-normal);
	line-height: 18px;
	color: var(--color-black)
}

.product-price__discount-cost {
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: 18px
}

.product-price__discount-percent {
	font-size: 16px;
	font-weight: var(--font-weight-bold);
	line-height: 20px;
	margin: 0 8px;
	border-radius: var(--radius-sm);
	padding: 3px 5px;
	color: var(--text-inverse);
	background-color: var(--accent-pink)
}

.product-price__sep {
	margin-top: 13px;
	border-top: 1px solid var(--bg-secondary)
}

.sale {
	position: absolute;
	top: -10px;
	left: -27px;
	transform: rotate(-45deg);
	width: 75px;
	height: 43px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 3px;
	z-index: 2
}

/* ==========================================================================
   ЗАГОЛОВОК СТРАНИЦЫ
   ========================================================================== */
.page-title {
	min-height: 250px;
	margin-bottom: 3.5rem;
	padding-top: 1.875rem;
	padding-bottom: 1.875rem;
	background-position: center center;
	background-color: var(--bg-tertiary);
	background-repeat: no-repeat
}

.page-title .page-title-heading {
	font-size: 34px;
	line-height: 1.2;
	text-shadow: 0 .625rem 1.5rem rgba(0, 0, 0, 0.2);
	text-transform: uppercase;
	word-break: break-all
}

.write-wrapper {
	background: var(--bg-primary)
}

.thumb-description,
.paginations {
	padding: 20px;
	padding: 20px;
	background: var(--bg-primary);
	margin-bottom: 10px
}


/* ==========================================================================
   ЛОГОТИП И МОБИЛЬНЫЙ ХЕДЕР
   ========================================================================== */
.logo-brand {
	text-align: center;
	margin-top: 10px
}

.mobile-header {
	display: inline-block;
	float: left;
	padding: 7px 0 0 0
}

/* ==========================================================================
   СЕТКА И КОЛОНКИ
   ========================================================================== */
@media(min-width:1200px) {
	#content.col-sm-9,
	#column-right.col-sm-3,
	#column-left.col-sm-3,
	.product-layout.col-lg-3,
	.product-column.col-lg-3 {
		width: 20%
	}
	.product-layout.col-lg-4,
	.product-column.col-lg-4 {
		width: 25%
	}
	.product-layout.col-lg-6,
	.product-column.col-lg-6 {
		width: 33.333333%
	}
}

@media(min-width:1200px) {
	#content.col-sm-9 {
		width: 80%
	}
	#content.col-sm-6 {
		width: 60%
	}
}

/* ==========================================================================
   ФОРМЫ (INPUTS, CHECKBOXES, RADIOS)
   ========================================================================== */
input[type=checkbox],
input[type=radio] {
	position: relative;
	display: inline-block;
	height: 16px;
	width: 16px;
	overflow: hidden;
	margin: 0;
	vertical-align: middle;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: var(--bg-primary);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	border: 1px solid var(--border-primary);
	border-radius: 3px;
	cursor: pointer
}

input[type=radio]:checked,
input[type=checkbox]:checked {
	background-color: var(--secondary-color);
}

input[type=radio]:checked {
	background-image: url("")
}

input[type=checkbox]:checked {
	background-image: url("")
}

input[type=radio] {
	border-radius: 50%
}

.product-related {
	margin-top: 44px
}

.text-related {
	margin-top: 0
}

@media(min-width:1200px) {
	.product-promo .col-lg-8 {
		width: 60%
	}
	.product-promo .col-lg-4 {
		width: 40%
	}
}

/* ==========================================================================
    ФОРМЫ
    ========================================================================== */
/*Page Contact-form*/
#zayvka input[type="text"], #zayvka input[type="email"], #zayvka input[type="tel"], #zayvka input[type="url"], #zayvka textarea, #zayvka button[type="submit"] {
    font-family: var(--font-family);
    font-size: var(--text-base);
    line-height: var(--line-height-base);
}
#zayvka {
    width: 80%;
    padding: var(--spacing-8);
    margin: 2rem auto;
    border-radius: var(--radius-xl);
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}
#zayvka h3 {
    color: var(--primary-color);
    display: block;
    font-size: var(--heading-h3);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-6);
    text-align: center;
}
#zayvka p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-4);
    font-size: var(--text-sm);
}
#zayvka h4 {
    margin: var(--spacing-4) 0 var(--spacing-3);
    display: block;
    font-size: var(--text-base);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
}
#zayvka .form-group {
    margin-bottom: var(--spacing-4);
}
fieldset {
    display: flex;
    justify-content: center;
    border: none !important;
    margin: var(--spacing-3) 0;
    min-width: 100%;
    padding: 0;
    width: 100%;
}
#zayvka input[type="text"],
#zayvka input[type="email"],
#zayvka input[type="tel"],
#zayvka input[type="url"],
#zayvka textarea {
    width: 100%;
    border: 1px solid var(--border-primary);
    background: var(--bg-primary);
    margin: 0 0 var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--text-primary);
    transition: all var(--transition-base);
    outline: none;
}
#zayvka input[type="text"]:hover,
#zayvka input[type="email"]:hover,
#zayvka input[type="tel"]:hover,
#zayvka input[type="url"]:hover,
#zayvka textarea:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}
#zayvka input[type="text"]:focus,
#zayvka input[type="email"]:focus,
#zayvka input[type="tel"]:focus,
#zayvka input[type="url"]:focus,
#zayvka textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 184, 0.15);
    outline: none;
}

#zayvka select {
    width: 100%;
    border: 1px solid var(--border-primary);
    background: var(--bg-primary);
    margin: 0 0 var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-4) center;
    padding-right: var(--spacing-8);
}
#zayvka select:hover {
    border-color: var(--secondary-color);
}
#zayvka select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 184, 0.15);
}
#zayvka textarea {
    height: 120px;
    max-width: 100%;
    resize: vertical;
    min-height: 100px;
}
#zayvka button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    color: var(--text-inverse);
    margin: var(--spacing-5) 0 var(--spacing-3);
    padding: var(--spacing-4) var(--spacing-6);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    background: var(--secondary-color);
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
#zayvka button[type="submit"]:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
#zayvka button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}
#zayvka input:focus,
#zayvka textarea:focus {
    outline: none;
}
#zayvka ::placeholder {
    color: var(--text-light);
    opacity: 1;
}
#zayvka :-ms-input-placeholder {
    color: var(--text-light);
}
#zayvka ::-ms-input-placeholder {
    color: var(--text-light);
}
option {
    color: var(--text-muted);
    font-family: var(--font-family);
    font-size: var(--text-base);
}
.form_radio {
    display: flex;
    align-items: center;
    margin: 0 0 var(--spacing-3);
    padding: var(--spacing-3);
    justify-content: flex-start;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}
.form_radio:hover {
    background: var(--bg-secondary);
}
.form_radio_choise {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.form_radio_choise input {
    margin-right: var(--spacing-2);
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.form_radio_choise_label {
    display: inline-block;
    margin-left: var(--spacing-2);
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    #zayvka {
        width: auto;
        padding: var(--spacing-5);
        margin: var(--spacing-4);
    }
    #zayvka h3 {
        font-size: var(--heading-h3-mobile);
    }
}
/* ==========================================================================
   СТРАНИЦЫ УСПЕХА И ОШИБОК
   ========================================================================== */
.success_page {
        background: var(--bg-primary);
        padding: 60px;
        border-radius: var(--radius-sm);
        display: flex;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0px 3px 10px -2px rgb(0 0 0 / 20%);
        justify-content: center;
        flex-direction: column;
      }
.success_page .fa{
  color: var(--secondary-color);
  font-size: 100px;
  line-height: 100px;
  margin-left:-15px;
}
.error_page {
        background: var(--bg-primary);
        padding: 60px;
        border-radius: var(--radius-sm);
        display: flex;
        margin: 0 auto;
        text-align: center;
        box-shadow: 0px 3px 10px -2px rgb(0 0 0 / 20%);
        justify-content: center;
        flex-direction: column;
      }
.error_page .fa{
  color: var(--danger-color);
  font-size: 100px;
  line-height: 100px;
  margin-left:-15px;
}
/* ==========================================================================
   КНОПКИ
   ========================================================================== */
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show>.btn-primary.dropdown-toggle {
    color: var(--text-inverse);
    background-color: var(--secondary-color);
}
.open_time{
    background: var(--color-blue-light);
    padding: 5px;
}
.btn-primary {
    background: var(--secondary-color);
    color: var(--text-inverse);
    border: 1px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-sm);
    padding: 6px 18px;

}
.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    color: var(--text-inverse);
}
.seo_h2 h2{
margin-bottom:30px;
  text-align: center;
}
.pressa h2{
    margin-bottom: 30px;
    text-align: center;
}
.slide-caption{
  min-height: 80px;
  position: absolute;
  max-width: 320px;
  z-index: 2;
  color: var(--text-inverse);
  height: 100%;
  bottom: 0;
  margin-left: 0;
  padding: 40px 32px 35px;
}
.arrow-prev, .arrow-next {
display: none;
}
.btn-banner{
    background: var(--secondary-color);
    color: var(--text-inverse);
    border: 1px solid var(--secondary-color);
    max-width: fit-content;
}
.slide-caption h2{
    color: var(--text-inverse);
}

/* ==========================================================================
   WIDGETS (TELEGRAM)
   ========================================================================== */
.Widget{
    all: unset;
    position: fixed;
    width: 70px;
    height: 70px;
    left: calc(100% - 35px - 80px);
    top: calc(100% - 35px - 80px);
    display: flex;
    aspect-ratio: 1 / 1;
    z-index: 2147483646;
}
.Widget_button{
    all: unset;
    position: absolute;
    z-index: 3;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: scale(1);
    color: var(--text-inverse);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: var(--radius-full);
}
.Widget_image{
    all: unset;
    display: block;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

/* ==========================================================================
   СЕКЦИИ ГЛАВНОЙ СТРАНИЦЫ
   ========================================================================== */
/*p-main*/

@media (min-width: 720px) and (max-width:1023px) {
    .p-main__section {
        margin-bottom:80px
    }
}

@media (min-width: 1024px) and (max-width:1279px) {
    .p-main__section {
        margin-bottom:100px
    }
}

@media (min-width: 1280px) and (max-width:1599px) {
    .p-main__section {
        margin-bottom:60px
    }
}

@media (min-width: 1600px) {
    .p-main__section {
        margin-bottom:90px
    }
}
/* ==========================================================================
   СТРАНИЦА 404
   ========================================================================== */
/*404*/
/* Error Page */
.shadow {
  height: 180px; /*Contrall*/
}
.clip:nth-of-type(2) .shadow {
  width: 130px; /*Contrall play with javascript*/
}
.clip:nth-of-type(1) .shadow,
.clip:nth-of-type(3) .shadow {
  width: 250px; /*Contrall*/
}
.digit {
  width: 150px; /*Contrall*/
  height: 150px; /*Contrall*/
  line-height: 150px; /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
.h1_error  /*Contrall*/ {
  font-size: 32px;
}
.msg /*Contrall*/ {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
triangle    /*Contrall*/ {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
}
.container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
.clip .shadow {
  overflow: hidden;
}
.clip:nth-of-type(2) .shadow {
  overflow: hidden;
  position: relative;
  box-shadow: inset 20px 0px 20px -15px rgba(150, 150, 150, 0.8),
    20px 0px 20px -15px rgba(150, 150, 150, 0.8);
}

.clip:nth-of-type(3) .shadow:after,
.clip:nth-of-type(1) .shadow:after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 0px;
  z-index: 9999;
  height: 100%;
  width: 10px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(173, 173, 173, 0.8),
    transparent
  );
  border-radius: 50%;
}
.clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
.digit {
  position: relative;
  top: 8%;
  color: var(--text-inverse);
  background: var(--secondary-color);
  border-radius: var(--radius-full);
  display: inline-block;
  transform: skew(45deg);
}
.clip:nth-of-type(2) {
  left: -10%;
}
.clip:nth-of-type(1) {
  right: -20%;
}
.clip:nth-of-type(3) {
  left: -20%;
}
.h1_error {
  color: var(--text-light);
  font-weight: bold;
  padding-bottom: 20px;
}
.msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: var(--text-muted);
  color: var(--text-light);
  border-radius: var(--radius-full);
  font-style: italic;
}
.triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
.m_left{
margin-left: 18px;
}
.width_btn{
    width:200px;
}
/* Error Page */
@media (max-width: 767px) {
  /* Error Page */
  .shadow {
    height: 100px; /*Contrall*/
  }
  .clip:nth-of-type(2) .shadow {
    width: 80px; /*Contrall play with javascript*/
  }
  .clip:nth-of-type(1) .shadow,
  .clip:nth-of-type(3) .shadow {
    width: 100px; /*Contrall*/
  }
  .digit {
    width: 80px; /*Contrall*/
    height: 80px; /*Contrall*/
    line-height: 80px; /*Contrall*/
    font-size: 52px;
  }
  .h1_error   /*Contrall*/ {
    font-size: 24px;
  }
  .msg /*Contrall*/ {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
.triangle    /*Contrall*/ {
  top: 70%;
  right: -3%;
  border-left: 10px solid var(--text-muted);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
  .container-error-404 {
    height: 150px;
  }
  /* Error Page */
}

/* ==========================================================================
   УСЛУГИ И СЕРВИСЫ
   ========================================================================== */
.badge {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(59, 130, 246, 0.1);
        color: var(--secondary-color);
        border-radius: var(--radius-base);
        font-size: 14px;
        font-weight: var(--font-weight-medium);
        margin-bottom: 16px;
    }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 10px;
}

.service-icon {
        width: 48px;
        height: 48px;
        background: var(--color-blue-lighter);
        border-radius: var(--radius-card);
        display: flex;
align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* ==========================================================================
   ОСНОВНОЙ КОНТЕНТ
   ========================================================================== */
/*Отступы в main*/
main {
    flex: 1 0 auto;
    padding: 3rem 0;
}
.main-content {
    flex: 1 0 auto;
    padding: 3rem 0;
}
/* Секции */
#content {
	height: fit-content;
    padding-bottom: 20px;
}

/* На главной странице - растягиваем контент для прижатия футера */
body.template-homepage #content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#content > div {
    margin-bottom: 4rem;
}

#content > div:last-child {
    margin-bottom: 0;
}

/* Адаптивные отступы */
@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0;
    }
    
    #content > div {
        margin-bottom: 3rem;
    }
}

/* Стили для секций */

.main-vendors {
    margin-bottom: 4rem;
}

.main-categories {
    margin-bottom: 4rem;
}

.main-pressa {
    margin-bottom: 4rem;
}

.main-seo {
    margin-bottom: 4rem;
}

/* Улучшенные стили для заголовков секций */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
/* ==========================================================================
   КОНФИДЕНЦИАЛЬНОСТЬ
   ========================================================================== */
/* конфиденциальность в форме */
.privacy-notice {
    margin-top: 10px;
}

.privacy-text {
    font-size: 12px !important;
    color: var(--text-muted);
    line-height: 1.4;
}

.privacy-text a {
    color: var(--link-color);
    text-decoration: underline;
}

.privacy-text a:hover {
    text-decoration: none;
}
.form_product{
    margin: 4rem 0;
}

/* ==========================================================================
   НАВИГАЦИОННЫЕ ВКЛАДКИ
   ========================================================================== */
.nav-tabs>li.active, .nav-tabs>li.active:hover, .nav-tabs>li.active:focus, .nav-tabs.nav-justified>li.active, .nav-tabs.nav-justified>li.active:hover, .nav-tabs.nav-justified>li.active:focus{
        border-top: solid 4px var(--primary-color);
}