/* USER VARIABLES SECTION */

:root {
	--accent: #009A59;
	--hover: #148657;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: roboto, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Roboto-Regular.woff2") format("woff2"); font-family: "roboto"; font-weight: 400; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Roboto-Italic.woff2") format("woff2"); font-family: "roboto"; font-weight: 400; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Roboto-Light.woff2") format("woff2"); font-family: "roboto"; font-weight: 300; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Roboto-LightItalic.woff2") format("woff2"); font-family: "roboto"; font-weight: 300; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Roboto-Medium.woff2") format("woff2"); font-family: "roboto"; font-weight: 500; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Roboto-MediumItalic.woff2") format("woff2"); font-family: "roboto"; font-weight: 500; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Roboto-Bold.woff2") format("woff2"); font-family: "roboto"; font-weight: 700; font-style: normal; font-display: swap; }
@font-face { src: url("../fonts/Roboto-BoldItalic.woff2") format("woff2"); font-family: "roboto"; font-weight: 700; font-style: italic; font-display: swap; }
@font-face { src: url("../fonts/Roboto-Black.woff2") format("woff2"); font-family: "roboto"; font-weight: 900; font-style: normal; font-display: swap; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
/* input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; } */

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

.container {
	max-width: 1366px;
	margin: 0 auto;
}

a {
	transition: .25s all ease-in-out;
	text-decoration: none;
}

button {
	cursor: pointer;
	transition: .25s all ease-in-out;
}

button:focus {
	outline: none
}

img {
	pointer-events: none;
}


b, strong {
	font-weight: bold
}

.center {
	text-align: center;
}

.title {
	color: #414141;
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: #F2F2F2;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 7px 40px;
	border: none;
	background-color: var(--accent);
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 10px;
	text-align: center;
}
.btn:hover {
	background-color: var(--hover);
	color: #fff;
}

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

	.title {
		font-size: 28px;
	}
}

@media (max-width: 991px) {
	.container {
		max-width: 720px;
	}

	.title {
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.container {
		max-width: 540px;
       
	}
	.title {
		font-size: 22px;
        margin-top: -20px;
	}
}

@media (max-width: 575px) {
	.container {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.title {
		font-size: 17px;
	}
}

/* USER STYLES */

/* header */
.header {
	padding: 8px 0 35px;
	background-color: #fff;
}
.header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}
.header__submenu {
}
.header__submenu>ul {
	margin: 5px;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 25px;
    border-top: ;
    font-size: 12px;
    
}
.header__submenu>ul>li {
	list-style: none;
	position: relative;
}
.header__submenu>ul>li>a {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
    
}
.header__submenu>ul>li>a:hover {
	color: #009a59;
    
}
.header__submenu>ul>li>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	background-color: #f2f2f2;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: .25s all ease-in-out;
}
.header__submenu>ul>li:hover>ul {
	opacity: 1;
	visibility: visible;
}
.header__submenu>ul>li>ul>li {
	list-style: none;
}
.header__submenu>ul>li>ul>li>a {
	display: block;
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	text-transform: ;
	padding: 10px 15px;
}
.header__submenu>ul>li>ul>li>a:hover {
	text-decoration: none;
	background-color: #e0e0e0;
}
.header__submenu__user>ul {
    
    list-style: none;
    font-size: 16px;
    padding: 0;
    
}
.header__submenu__user>ul>li {
    
    margin: 10px 0 10px 0;
    
}
.header__submenu__user>ul>li>a {
    
    position: relative;
    display: flex;
    color: #262626;
    cursor: pointer;
    width: 100%;
    margin: 1px 0;
    padding: 8px 16px;
}
.header__submenu__user a:hover {
    
    background: #f2f2f2;
    
    
}
.exit__icon {
    
    border-top: 1px solid #f0f0f0;
    padding: 5px;
    
}
.settings__icon {
    
    border-top: 1px solid #f0f0f0;
    padding: 5px;
      
}
.header__info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header__profile {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	flex: none;
	gap: 10px;
	border-radius: 15px;
	background: rgba(232, 232, 232, 0.4);
	min-height: 30px;
	padding: 0 20px;
}
.header__profile__mob {
    display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	flex: none;
	gap: 10px;
	border-radius: 15px;
	background: rgba(232, 232, 232, 0.4);
	min-height: 40px;
    width: 150px;
	padding: 0 20px;
   
}
.header__profile__mob::before {
	content: '';
	width: 16px;
	height: auto;
	aspect-ratio: .8;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='20' fill='none' viewBox='0 0 16 20'%3e%3cpath fill='%23222' d='M8 9.389A4.278 4.278 0 1 0 8 .833 4.278 4.278 0 0 0 8 9.39Zm0-7.333a3.056 3.056 0 1 1 0 6.11 3.056 3.056 0 0 1 0-6.11ZM15.62 13.893a10.486 10.486 0 0 0-15.234 0c-.213.227-.33.526-.33.837v3.214a1.222 1.222 0 0 0 1.222 1.223h13.444a1.222 1.222 0 0 0 1.222-1.223V14.73c.003-.31-.113-.61-.324-.837Zm-.898 4.051H1.278v-3.22a9.272 9.272 0 0 1 13.444 0v3.22Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	flex: none;
}
.header__profile__mob:hover {
	color: #000;
	background: rgba(232, 232, 232, 0.7);
}
.header__profile::after {
	content: '';
	width: 16px;
	height: auto;
	aspect-ratio: .8;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='20' fill='none' viewBox='0 0 16 20'%3e%3cpath fill='%23222' d='M8 9.389A4.278 4.278 0 1 0 8 .833 4.278 4.278 0 0 0 8 9.39Zm0-7.333a3.056 3.056 0 1 1 0 6.11 3.056 3.056 0 0 1 0-6.11ZM15.62 13.893a10.486 10.486 0 0 0-15.234 0c-.213.227-.33.526-.33.837v3.214a1.222 1.222 0 0 0 1.222 1.223h13.444a1.222 1.222 0 0 0 1.222-1.223V14.73c.003-.31-.113-.61-.324-.837Zm-.898 4.051H1.278v-3.22a9.272 9.272 0 0 1 13.444 0v3.22Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	flex: none;
}
.header__profile:hover {
	color: #fff;
	background-color: #FF782C;
	border-radius: 50px;
	padding: 0 15px;
}
.header__profileWrapper {
	position: relative;
}
.header__profileWrapper:hover .header__profileBlock {
	opacity: 1;
	visibility: visible;
}
.header__profileBlock {
	padding: 5px;
	width: 260px;
    /* height: 480px; */
    height: auto;
	border-radius: 5px;
	box-shadow: 2px 4px 5px 1px rgba(0,0,0, .1);
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	background-color: #fff;
	z-index: 5;
	font-size: 18px;
	opacity: 0;
	visibility: hidden;
	transition: .25s all ease-in-out;
}
.header__profileBlock .header__submenu>ul {
	align-items: flex-start;
	flex-direction: column;
}
.header__profileBlock::before {
	content: '';
	width: 100%;
	bottom: 100%;
	height: 10px;
	left: 0;
	background-color: transparent;
	position: absolute;
}
.header__profileBlock .albo {
	width: 100%;
	display: block;
	text-align: center;
	margin: 15px 0;
}
.header__profileBlock .header__catalog__mob__wycen {
	width: 100%;
	display: block;
	text-align: center;
}
.header__favorite {
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3e%3cpath fill='%23222' d='m9.809 3.678-.88-.986C6.867.376 3.083 1.175 1.717 4.086c-.64 1.37-.786 3.346.385 5.869 1.128 2.429 3.475 5.338 7.708 8.508 4.232-3.17 6.578-6.08 7.707-8.508 1.17-2.524 1.028-4.5.385-5.869-1.366-2.91-5.15-3.711-7.213-1.396l-.88.988Zm0 16.398C-8.991 6.516 4.02-4.07 9.593 1.53c.073.073.146.15.216.229.069-.08.14-.155.216-.228 5.57-5.602 18.584 4.983-.216 18.545Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
}
.header__favorite:hover {
	text-decoration: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' fill='none' viewBox='0 0 20 21'%3e%3cpath fill='%23009A59' d='m9.809 3.678-.88-.986C6.867.376 3.083 1.175 1.717 4.086c-.64 1.37-.786 3.346.385 5.869 1.128 2.429 3.475 5.338 7.708 8.508 4.232-3.17 6.578-6.08 7.707-8.508 1.17-2.524 1.028-4.5.385-5.869-1.366-2.91-5.15-3.711-7.213-1.396l-.88.988Zm0 16.398C-8.991 6.516 4.02-4.07 9.593 1.53c.073.073.146.15.216.229.069-.08.14-.155.216-.228 5.57-5.602 18.584 4.983-.216 18.545Z'/%3e%3c/svg%3e");
}
.header__cart {
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' viewBox='0 0 22 22'%3e%3cpath fill='%23222' d='M7.607 21.115c.889 0 1.61-.723 1.61-1.615s-.721-1.614-1.61-1.614c-.89 0-1.61.722-1.61 1.614 0 .892.72 1.615 1.61 1.615ZM17.386 21.115c.89 0 1.61-.723 1.61-1.615s-.72-1.614-1.61-1.614c-.889 0-1.61.722-1.61 1.614 0 .892.721 1.615 1.61 1.615ZM21.736 2.005a.715.715 0 0 0-.55-.265H6.288l.465 1.435h13.494l-1.91 8.611H7.604L4.335 1.402a.718.718 0 0 0-.472-.466L.93.032a.717.717 0 0 0-.898.477.723.723 0 0 0 .475.9l2.57.79L6.36 12.604l-1.173.962-.093.093a1.912 1.912 0 0 0-.057 2.432 1.968 1.968 0 0 0 1.617.718h11.941a.714.714 0 0 0 .716-.718.719.719 0 0 0-.716-.717H6.539a.478.478 0 0 1-.463-.482c0-.082.022-.164.062-.236l1.725-1.435H18.91a.714.714 0 0 0 .715-.56l2.268-10.046a.72.72 0 0 0-.157-.61Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
}
.header__cart:hover {
	text-decoration: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' viewBox='0 0 22 22'%3e%3cpath fill='%23009A59' d='M7.607 21.115c.889 0 1.61-.723 1.61-1.615s-.721-1.614-1.61-1.614c-.89 0-1.61.722-1.61 1.614 0 .892.72 1.615 1.61 1.615ZM17.386 21.115c.89 0 1.61-.723 1.61-1.615s-.72-1.614-1.61-1.614c-.889 0-1.61.722-1.61 1.614 0 .892.721 1.615 1.61 1.615ZM21.736 2.005a.715.715 0 0 0-.55-.265H6.288l.465 1.435h13.494l-1.91 8.611H7.604L4.335 1.402a.718.718 0 0 0-.472-.466L.93.032a.717.717 0 0 0-.898.477.723.723 0 0 0 .475.9l2.57.79L6.36 12.604l-1.173.962-.093.093a1.912 1.912 0 0 0-.057 2.432 1.968 1.968 0 0 0 1.617.718h11.941a.714.714 0 0 0 .716-.718.719.719 0 0 0-.716-.717H6.539a.478.478 0 0 1-.463-.482c0-.082.022-.164.062-.236l1.725-1.435H18.91a.714.714 0 0 0 .715-.56l2.268-10.046a.72.72 0 0 0-.157-.61Z'/%3e%3c/svg%3e");
}
.header__main {
	display: flex;
	width: 100%;
}
.header__main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 88;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}

.header__mainContainer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.header__main.fixed .header__mainContainer {
	max-width: 1366px;
	margin: 0 auto;
}

.kategorie__menu {
    
    border-bottom: 1px solid #f1f1f1;
    margin-top: 50px;
    margin-left: 15px;
    font-weight: 500;
    font-size: 18px;
   
}
.header__logo {
	display: flex;
	color: var(--accent);
	font-size: 40px;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	flex: none;
}
.header__logo:hover {
	text-decoration: none;
    opacity: .8;
    color: var(--accent);
}
.header__logo img {
	width: 100%;
	max-width: 150px;
}
.header__search {
	display: block;
	flex: 1;
}
.header__searchContainer {
	display: flex;
	align-items: center;
	/* height: 50px; */
}
.header__search input {
	width: 100%;
	height: 45px;
	border-radius: 15px 0 0 15px;
	border: 1px solid #E8E8E8;
	border-right: none;
	background: #F1F1F1;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	padding: 0 15px;
	flex: 1;
}
.header__search input::placeholder {
	color: #515151;
}
.header__search button {
	flex: none;
	background-color: var(--accent);
	height: 45px;
	width: 80px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath fill='%23fff' fill-rule='evenodd' d='m18.979 17.689 6.342 6.225-1.307 1.283-6.357-6.238a10.929 10.929 0 0 1-7.667 2.39 10.87 10.87 0 0 1-7.222-3.479 10.475 10.475 0 0 1-2.763-7.415 10.5 10.5 0 0 1 3.233-7.23 10.897 10.897 0 0 1 7.43-3.027 10.906 10.906 0 0 1 7.5 2.86 10.51 10.51 0 0 1 3.4 7.155 10.467 10.467 0 0 1-2.59 7.476Zm.755-6.901c0-2.328-.942-4.56-2.619-6.205a9.028 9.028 0 0 0-6.323-2.57 9.028 9.028 0 0 0-6.322 2.57 8.693 8.693 0 0 0-2.62 6.205c0 2.327.943 4.56 2.62 6.205a9.028 9.028 0 0 0 6.322 2.57 9.029 9.029 0 0 0 6.323-2.57 8.693 8.693 0 0 0 2.619-6.205Z' clip-rule='evenodd'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	border-radius: 0 15px 15px 0;
}
.header__search button:hover {
	background-color: var(--hover);
}
.header__searchBtn {
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath fill='%23000' fill-rule='evenodd' d='m18.979 17.689 6.342 6.225-1.307 1.283-6.357-6.238a10.929 10.929 0 0 1-7.667 2.39 10.87 10.87 0 0 1-7.222-3.479 10.475 10.475 0 0 1-2.763-7.415 10.5 10.5 0 0 1 3.233-7.23 10.897 10.897 0 0 1 7.43-3.027 10.906 10.906 0 0 1 7.5 2.86 10.51 10.51 0 0 1 3.4 7.155 10.467 10.467 0 0 1-2.59 7.476Zm.755-6.901c0-2.328-.942-4.56-2.619-6.205a9.028 9.028 0 0 0-6.323-2.57 9.028 9.028 0 0 0-6.322 2.57 8.693 8.693 0 0 0-2.62 6.205c0 2.327.943 4.56 2.62 6.205a9.028 9.028 0 0 0 6.322 2.57 9.029 9.029 0 0 0 6.323-2.57 8.693 8.693 0 0 0 2.619-6.205Z' clip-rule='evenodd'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
	transition: .25s all ease-in-out;
}
.header__searchBtn:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' viewBox='0 0 26 26'%3e%3cpath fill='%23009A59' fill-rule='evenodd' d='m18.979 17.689 6.342 6.225-1.307 1.283-6.357-6.238a10.929 10.929 0 0 1-7.667 2.39 10.87 10.87 0 0 1-7.222-3.479 10.475 10.475 0 0 1-2.763-7.415 10.5 10.5 0 0 1 3.233-7.23 10.897 10.897 0 0 1 7.43-3.027 10.906 10.906 0 0 1 7.5 2.86 10.51 10.51 0 0 1 3.4 7.155 10.467 10.467 0 0 1-2.59 7.476Zm.755-6.901c0-2.328-.942-4.56-2.619-6.205a9.028 9.028 0 0 0-6.323-2.57 9.028 9.028 0 0 0-6.322 2.57 8.693 8.693 0 0 0-2.62 6.205c0 2.327.943 4.56 2.62 6.205a9.028 9.028 0 0 0 6.322 2.57 9.029 9.029 0 0 0 6.323-2.57 8.693 8.693 0 0 0 2.619-6.205Z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.header__catalog {
	max-width: 200px;
	width: 100%;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 15px;
	background: var(--accent);
}
.header__catalog:hover {
	background: var(--hover);
	color: #fff;
}

.header__catalog__mob {
    
    max-width: 100%;
	width: 100%;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #009a59;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 15px;
    border: 1px solid #009a59;
	background: #fff;
    
}
.header__catalog__mob:hover {
	background: rgba(0, 154, 89, 0.09);
	color: #009a59;
}
.header__catalog__mob__wycen {
    
    max-width: 100%;
	width: 100%;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 15px;
    border: ;
	background: #009a59;
    
}
.header__catalog__mob__wycen:hover {
	background: rgba(0, 154, 89, 0.09);
	color: #009a59;
}

.header__catalog__desktop {
    
    max-width: 100px;
	width: 100%;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #009a59;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	border-radius: 15px;
    border: 1px solid #009a59;
	background: #fff;
    
}
.header__catalog__desktop:hover {
	background: rgba(0, 154, 89, 0.09);
	color: #009a59;
}
.header__catalog__menu {
    max-width: 130px;
	width: 100%;
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 15px;
	background: #fff;
	display: none;
    
}
.header__catalog__menu:hover {
	border: solid 2px #00AB66;
	color: #00AB66;
}
.header__catalogWrapper {
	position: relative;
	flex: none;
	max-width: 130px;
	width: 100%;
}
.header__catalog__menu {
	flex: none;
}
.header__catalogNav {
	display: none;
	position: absolute;
	left: 0px;
	top: calc(100% + 20px);
	z-index: 10;
	min-width: 300px;
}
.header__catalogNav .catalog__asideList>ul>li>a:hover {
	background-color: #e8f6f0;
}
.header__categories {
	margin-top: 25px;
	display: flex;
	align-items: baseline;
	gap: 17px;
}
.header__categoriesTitle {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	flex: none;  
}
.header__categoriesList {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.header__categoriesList a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	color: #333;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
	border-radius: 25px;
	min-height: 40px;
	padding: 5px 20px;
	/*border: 1px solid #000*/
}
.header__categoriesList a:hover {
	background-color: #000;
	color: #fff;
}
.header__control {
	display: none;
	align-items: center;
	gap: 6px;
}
.header__control .header__profile {
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	font-size: 0;
	background: transparent;
	padding: 0;
	gap: 0;
	align-items: center;
	justify-content: center;
}
.header__control .header__profile::after {
	width: 20px;
	background-size: contain;
	transition: .25s all ease-in-out;
}
.header__control .header__profile:hover::after {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='20' fill='none' viewBox='0 0 16 20'%3e%3cpath fill='%23009A59' d='M8 9.389A4.278 4.278 0 1 0 8 .833 4.278 4.278 0 0 0 8 9.39Zm0-7.333a3.056 3.056 0 1 1 0 6.11 3.056 3.056 0 0 1 0-6.11ZM15.62 13.893a10.486 10.486 0 0 0-15.234 0c-.213.227-.33.526-.33.837v3.214a1.222 1.222 0 0 0 1.222 1.223h13.444a1.222 1.222 0 0 0 1.222-1.223V14.73c.003-.31-.113-.61-.324-.837Zm-.898 4.051H1.278v-3.22a9.272 9.272 0 0 1 13.444 0v3.22Z'/%3e%3c/svg%3e");
}
.header__burger {
	height: 16px;
	width: 25px;
	position: relative;
	cursor: pointer;
	flex: none;
	margin-left: 2px;
}
.header__burger span {
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 7px;
	transition: .25s all ease-in-out;
}
.header__burger::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.header__burger::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.header__burger.active span {
	transform: scale(0);
}
.header__burger.active::after {
	transform: rotate(-45deg);
	top: 9px;
}
.header__burger.active::before {
	transform: rotate(45deg);
	top: 9px;
}
.mobile__menu {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.mobile__menuContainer {
	max-width: 350px;
	margin: 0 auto;
	padding: 50px 15px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}
.mobile__menuContainer .header__categories {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 0;
}
.mobile__menuContainer .header__catalog {
	width: 100%;
	max-width: 100%;
    margin-bottom: 15px;
}
.mobile__menuContainer .header__submenu {
	width: 100%;
}
.mobile__menuContainer .header__submenu>ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.mobile__menuContainer .header__submenu>ul>li>a {
	font-size: 16px;
}
.mobile__menuContainer .header__submenu>ul>li>ul {
	position: relative;
	opacity: 1;
	visibility: visible;
	background: transparent;
	padding: 5px 0 0 10px;
	border-radius: 0;
	box-shadow: none;
	gap: 10px
}
.mobile__menuContainer .header__submenu>ul>li>ul>li>a {
	padding: 0;
	color: #5b5b5b;
}
.mobile__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	z-index: 2;
}
.mobile__close:before,
.mobile__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.mobile__close:before:hover,
.mobile__close:after:hover {
	opacity: .8;
}
.mobile__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.mobile__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.userMenu {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.userMenu__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	z-index: 2;
}
.userMenu__close:before,
.userMenu__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.userMenu__close:before:hover,
.userMenu__close:after:hover {
	opacity: .8;
}
.userMenu__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.userMenu__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1230px) {
	.header__main.fixed .header__mainContainer {
		max-width: 960px;
	}
}
@media (max-width: 991px) {
	.header__catalog {
		max-width: 180px;
		min-height: 45px;
		font-size: 16px;
	}
       .header__catalog__desktop {
        
        display: none;
    }
	.header__searchContainer {
		height: 45px;
	}
	.header__search button {
		width: 60px;
	}
	.header__top {
		margin-bottom: 15px;
	}
	.header__categories {
		margin-top: 15px;
	}
	.header__categoriesTitle {
		font-size: 14px;
	}
	.header__categoriesList a {
		font-size: 14px;
		min-height: 32px;
		padding: 5px 8px;
	}
	.header__logo img {
		max-width: 130px;
	}
	.header__main.fixed .header__mainContainer {
		max-width: 720px;
	}
}
@media (max-width: 767px) {
	.header .header__categoriesTitle {
		display: none;
	}
    .header__catalog__desktop {
        
        display: none;
    }
	.header .header__categoriesList {
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}
    .header__profile::after {
        display: none;
    }
	.header .header__categoriesList::-webkit-scrollbar {
		display: none;
	}
	.header .header__categoriesList a {
		padding: 5px 12px;
	}
	.header .header__submenu {
		display: none;
	}
	.header .header__catalog {
		display: none;
	}
    .header .header__catalog__menu {
        display: none;
    }
	.header {
		position: relative;
		padding: 10px 0;
	}
	.header__search {
		position: absolute;
		left: 0;
		top: 100%;
		background-color: #fff;
		width: 100%;
		padding: 10px 15px;
		opacity: 0;
		visibility: hidden;
		z-index: 10;
		transition: .25s all ease-in-out;
	}
	.header__search.open {
		opacity: 1;
		visibility: visible;
	}
	.header__searchContainer {
		max-width: 540px;
		width: 100%;
		margin: 0 auto;
		height: 40px;
	}
	.header__search button {
		background-size: 20px;
		width: 50px;
		border-radius: 0 10px 10px 0;
	}
	.header__search input {
		border-radius: 10px 0 0 10px;
	}
	.header .header__top {
		display: none;
	}
	.header__logo {
		font-size: 34px;
	}
	.header__control {
		display: flex;
	}
	body.lock {
		overflow: hidden;
		height: 100vh;
	}
	.mobile__menu.open {
		right: 0;
	}
	.userMenu.open {
		right: 0;
	}
	.header__catalogNav {
		display: none!important;
	}
	.header__catalogWrapper {
		display: none;
	}
	.header__logo img {
		max-width: 110px;
	}
	.header__main.fixed .header__mainContainer {
		max-width: 540px;
	}
}
@media (max-width: 575px) {
	.header__logo {
		font-size: 28px;
	}
       .header__catalog__desktop {
        
        display: none;
    }
	.header__main.fixed .header__mainContainer {
		max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
	}
}
/* header */

/* hero */
.hero {
	background-color: #F2F2F2;
	padding-top: 50px;
}
.hero__container {
	display: grid;
	grid-template-columns: 365px 1fr;
}
.hero__img {
	position: relative;
	user-select: none;
}
.hero__img img {
	width: 597px;
	height: auto;
}
.hero__content {
}
.hero__title {
	color: #333;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.96px;
	text-align: center;
	margin-bottom: 100px;
}
.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 15px;
	background: var(--accent);
	max-width: 280px;
	width: 100%;
	min-height: 76px;
	margin-left: 360px;
}
.hero__btn:hover {
	text-decoration: none;
	color: #FFF;
	background: var(--hover);
}
@media (max-width: 1230px) {
	.hero__img img {
		width: 500px;
	}
	.hero__container {
		grid-template-columns: 320px 1fr;
	}
	.hero__title {
		font-size: 38px;
	}
	.hero__btn {
		font-size: 22px;
		max-width: 320px;
		min-height: 60px;
		margin-left: 210px;
	}
}
@media (max-width: 991px) {
	.hero__container {

	}
	.hero__title {
		margin-bottom: 50px;
		font-size: 27px;
	}
	.hero__img img {
		width: 350px;
	}
	.hero__btn {
		margin-left: 0;
		font-size: 20px;
		max-width: 300px;
		min-height: 55px;
	}
	.hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
@media (max-width: 767px) {
	.hero__img img {
		width: calc(100% + 30px);
	}
	.hero__container {
        grid-template-columns: 210px 1fr;
    }
	.hero {
		padding: 30px 0 0 0px;
	}
	.hero__title {
		font-size: 22px;
		margin-bottom: 30px;
	}
	.hero__btn {
		font-size: 14px;
		max-width: 130px;
        min-height: 30px;
	}
}
@media (max-width: 575px) {
	.hero__title br {
		display: none;
	}
	.hero__container {
		align-items: flex-end;
	}
	.hero__container {
        grid-template-columns: 40% auto;
    }
	.hero__title {
		font-size: calc(6vw - 4px);
	}
	.hero__title {
		margin-bottom: 20px;
	}
	.hero__content {
		padding-bottom: 20px;
	}
}
/* hero */

/* stocks */
.stocks {
	margin: 40px 0;
}
.stocks__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.stocks__header .title {
	margin-bottom: 0;
}
.stocks__slider {
	margin: 0 -10px;
}
.stocks__slider .slick-arrow {
	width: 50px;
    height: auto;
    aspect-ratio: 1;
    flex: none;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.14);
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
	right: -25px;
	z-index: 2;
	top: calc(50% - 20px);
}
.stocks__slider .slick-arrow::before {
	display: none;
}
.stocks__slider .slick-prev {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23D0D0D0' d='m15.816 4.254-8.335 8.55a.804.804 0 0 0 0 1.123l8.335 8.554a.732.732 0 0 0 1.048 0 .77.77 0 0 0 0-1.074l-7.838-8.04 7.838-8.04a.769.769 0 0 0 0-1.073.732.732 0 0 0-1.048 0Z'/%3e%3c/svg%3e");
}
.stocks__slider .slick-prev:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23009A59' d='m15.816 4.254-8.335 8.55a.804.804 0 0 0 0 1.123l8.335 8.554a.732.732 0 0 0 1.048 0 .77.77 0 0 0 0-1.074l-7.838-8.04 7.838-8.04a.769.769 0 0 0 0-1.073.732.732 0 0 0-1.048 0Z'/%3e%3c/svg%3e");
}
.stocks__slider .slick-next {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23D0D0D0' d='m11.184 4.254 8.335 8.55a.804.804 0 0 1 0 1.123l-8.335 8.554a.732.732 0 0 1-1.048 0 .769.769 0 0 1 0-1.074l7.838-8.04-7.838-8.04a.769.769 0 0 1 0-1.073.732.732 0 0 1 1.048 0Z'/%3e%3c/svg%3e");
}
.stocks__slider .slick-next:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23009A59' d='m11.184 4.254 8.335 8.55a.804.804 0 0 1 0 1.123l-8.335 8.554a.732.732 0 0 1-1.048 0 .769.769 0 0 1 0-1.074l7.838-8.04-7.838-8.04a.769.769 0 0 1 0-1.073.732.732 0 0 1 1.048 0Z'/%3e%3c/svg%3e");
}
.stocks__slider.slick-initialized .product {
	display: flex;
}
.stocks__slider .product {
	display: none;
	margin: 0 10px 4px;
}
/* .stocks__slider .product .product__priceNow {
	color: #FC0206;
} */
@media (max-width: 1230px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.stocks__header .btn {
		min-height: 35px;
		padding: 5px 20px;
	}
}
@media (max-width: 575px) {
}
@media (max-width: 390px) {
	.stocks__header {
		gap: 10px
	}
	.stocks__header .btn {
		min-height: 30px;
		padding: 5px 10px;
		font-size: 13px;
		border-radius: 8px;
	}
}
/* stocks */

/* catalog */
.catalog {
	margin: 40px 0;
}
.catalog__container {
	display: flex;
	align-items: flex-start;
	gap: 25px;
}
.catalog__aside {
	width: 230px;
	flex: none;
    
}
.catalog__asideBlock {
}
.catalog__asideBlock:not(:last-child) {
	margin-bottom: 30px;
}
.catalog__asideTitle {
	color: #111;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 15px;
}

.catalog__asideList>ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.catalog__asideList>ul>li {
	list-style: none;
	position: relative;
}
.catalog__asideList>ul>li>a {
	display: grid;
	grid-template-columns: 25px 1fr auto;
	align-items: center;
	gap: 0px;
	border-radius: 2px;
	background: #fff;
	min-height: 40px;
	padding: 10px 10px;
    margin-top: 1px;
}
.catalog__asideList>ul>li>a:hover {
	background-color: rgba(0, 154, 89, 0.09);
}
.catalog__asideList>ul>li ul {
	margin: 0;
	padding: 0 0 0 0px;
	display: flex;
	flex-direction: column;
	gap: px;
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 210px;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: .2s all ease-in-out;
}

.catalog__asideList>ul li:hover>ul {
	opacity: 1;
	visibility: visible;
}

.catalog__asideList>ul>li ul li {
	list-style: none;
	position: relative;
}

.catalog__asideList>ul>li ul li a {
	display: flex;
	align-items: center;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	border-radius: 0;
	background: #f2f2f2;
	min-height: 45px;
	padding: 5px 10px;
       
}

.catalog__asideList>ul>li ul li a:hover {
	background-color: #e5e5e5;
}

.catalog__asideList>ul>li ul li.arrow>a {
	position: relative;
	justify-content: start;
}
.catalog__asideList>ul>li ul li.arrow a::after {
	content: '';
	color: #333;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: right;
}

.catalog__asideList>ul>li ul li.arrow:hover>a {
	background-color: #e5e5e5;
}

.catalog__asideListIcon {
	display: flex;
	width: 25px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
}
.catalog__asideListIcon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.catalog__asideListTitle {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
    margin-left: 10px;
}
.catalog__asideListNum {
	color: #333;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: right;
  
}
.catalog__asidePrice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.catalog__asidePrice input {
	width: 100%;
	height: 40px;
	border: none;
	border-radius: 5px;
	background: rgba(211, 211, 211, 0.28);
	padding: 0 8px;
	color: #666;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2
}
.catalog__asideSelect {
	position: relative;
}
.catalog__asideSelect select {
	border-radius: 5px;
	background: #fff;
	width: 100%;
	height: 35px;
	padding: 0 25px 0 10px;
	color: #888;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	border: 1px solid #ccc;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' fill='none' viewBox='0 0 11 11'%3e%3cpath fill='%23333' d='M5.03 10.124-.008.29l10.39.167-5.352 9.666Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	transition: .25s all ease-in-out;
}
.catalog__asideSelect select::-ms-expand {
	display: none;
}
.catalog__asideApply {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	margin: 25px auto 0;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 5px;
	background: var(--accent);
	max-width: 180px;
	width: 100%;
	min-height: 38px;
}
.catalog__asideApply:hover {
	background-color: var(--hover);
}
.catalog__asideBtn {
	display: none;
	min-height: 40px;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #009A59;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	border-radius: 5px;
	margin-bottom: 15px;
	background-color: #fff;
    border: 1px solid #009A59;
}
.catalog__asideBtn::before {
	content: '';
	width: 25px;
	height: auto;
	aspect-ratio: 1.5;
	flex: none;
	background-image: url(../img/category%20icon.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.catalog__main {
	flex: 1;
}
.catalog__mainFilter {
	display: none;
	align-items: center;
	gap: 15px;
	position: relative;
	margin-bottom: 25px;
}
.catalog__mainFilterBlock {
	flex: auto
}
.catalog__mainFilterBlockBtn {
	border: 1px solid rgba(0, 0, 0, 0.25);
	height: 40px;
	width: auto;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: 20px;
}
.catalog__mainFilterBlockBtn::after {
	content: '';
	width: 12px;
	height: auto;
	aspect-ratio: 3;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='4' fill='none' viewBox='0 0 12 4'%3e%3cpath fill='%23222' d='M6 4 .804.25h10.392L6 4Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
}
.catalog__mainFilterBlockContent {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	width: 100%;
	height: auto;
	padding: 10px;
	background-color: #fff;
	z-index: 10;
	border-radius: 15px;
	border: 1px solid rgba(0, 0, 0, 0.25);
}
.catalog__filter {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.catalog__filter a {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}
.catalog__filter a:hover {
	text-decoration: underline;
	color: ;
}
.catalog__filter a.active {
	font-weight: 600;
}
.catalog__filter a.active:hover {
	cursor: default;
	color: #000;
}
.catalog__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.catalog__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}
.catalog__more {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 10px;
	background: #009A59;
	max-width: 220px;
	width: 100%;
	min-height: 45px;
}
.catalog__more:hover {
	color: #fff;
	background-color: var(--hover);
}
.catalog__navigationContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.catalog__navigation {
	width: 50px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.14);
	background-color: #fff;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
}
.catalog__navigationPrev {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23D0D0D0' d='m15.816 4.254-8.335 8.55a.804.804 0 0 0 0 1.123l8.335 8.554a.732.732 0 0 0 1.048 0 .77.77 0 0 0 0-1.074l-7.838-8.04 7.838-8.04a.769.769 0 0 0 0-1.073.732.732 0 0 0-1.048 0Z'/%3e%3c/svg%3e");
}
.catalog__navigationPrev:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23009A59' d='m15.816 4.254-8.335 8.55a.804.804 0 0 0 0 1.123l8.335 8.554a.732.732 0 0 0 1.048 0 .77.77 0 0 0 0-1.074l-7.838-8.04 7.838-8.04a.769.769 0 0 0 0-1.073.732.732 0 0 0-1.048 0Z'/%3e%3c/svg%3e");
}
.catalog__navigationNext {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23D0D0D0' d='m11.184 4.254 8.335 8.55a.804.804 0 0 1 0 1.123l-8.335 8.554a.732.732 0 0 1-1.048 0 .769.769 0 0 1 0-1.074l7.838-8.04-7.838-8.04a.769.769 0 0 1 0-1.073.732.732 0 0 1 1.048 0Z'/%3e%3c/svg%3e");
}
.catalog__navigationNext:hover {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='27' fill='none' viewBox='0 0 27 27'%3e%3cpath fill='%23009A59' d='m11.184 4.254 8.335 8.55a.804.804 0 0 1 0 1.123l-8.335 8.554a.732.732 0 0 1-1.048 0 .769.769 0 0 1 0-1.074l7.838-8.04-7.838-8.04a.769.769 0 0 1 0-1.073.732.732 0 0 1 1.048 0Z'/%3e%3c/svg%3e");
}
.catalog__pagination {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.catalog__pagination li {
	list-style: none;
}
.catalog__pagination li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: #A0A0A0;
	color: #F2F2F2;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}
.catalog__pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: #F2F2F2;
	color: #555;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}
.catalog__pagination li a:hover {
	background-color: #dbdbdb;
}
.product {
	border-radius: 10px;
	border: 1px solid #F2F2F2;
	background: #FFF;
	overflow: hidden;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}
.product__top {
	position: relative;
}
.product__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1.58;
	overflow: hidden;
	background-color: #F8F6F5;
}
.product__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .25s all ease-in-out;
}
.product__img:hover img {
	transform: scale(1.05);
}
.product__favorite {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 3px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='20' fill='none' viewBox='0 0 22 20'%3e%3cpath fill='%23222' d='m11 3.664-.986-.983C7.7.375 3.457 1.171 1.924 4.071c-.718 1.364-.88 3.333.433 5.846 1.265 2.42 3.897 5.319 8.643 8.476 4.747-3.157 7.377-6.056 8.644-8.476 1.313-2.514 1.152-4.482.432-5.846-1.532-2.9-5.776-3.698-8.09-1.39L11 3.663ZM11 20C-10.083 6.49 4.51-4.053 10.758 1.524c.083.073.164.15.242.228.078-.079.159-.154.242-.227C17.49-4.055 32.084 6.49 11 20Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 22px;
	background-color: #fff;
	border: none;
	padding: 0;
}
.product__favorite.active {
	background-image: url('../img/heart__aktiv.png');
}
.product__delivery {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 32px;
	height: auto;
	aspect-ratio: 1.684211;
	background-image: url(../img/);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.product__content {
	padding: 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.product__price {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.product__priceNow {
	color: #222;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2
}
.product__priceSale {
	color: #555;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: line-through;
}
.product__title {
	display: block;
	color: #333;
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: #F2F2F2;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 10px;
}
.product__title:hover {
	text-decoration: none;
	color: #333;
}
.product__where {
	color: #333;
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: #F2F2F2;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2
}
.product__when {
	color: #333;
	-webkit-text-stroke-width: 1;
	-webkit-text-stroke-color: #F2F2F2;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 5px;
	margin-bottom: 20px;
}
.product__buy,
.added_to_cart {
	color: #009A59;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	border-radius: 5px;
	background:#fff;
    border: 1px solid #009A59;
	max-width: 200px;
	margin: auto auto 0;
	width: 100%;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product__buy:hover,
.added_to_cart:hover {
	text-decoration: none;
	color: #009A59;
	background-color: rgba(0, 154, 89, 0.09);
}
.product__buy__contact {
	color: #009A59;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	border-radius: 5px;
	background:#fff;
    border: 1px solid #009A59;
	max-width: 200px;
	margin: 0;
	width: 100%;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product__buy__contact:hover {
	text-decoration: none;
	color: #009A59;
	background-color: rgba(0, 154, 89, 0.09);
}
@media (max-width: 1230px) {
	.product__title {
		font-size: 20px;
	}
}
@media (max-width: 991px) {
	.catalog__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.product__title {
		font-size: 18px;
	}
	.product__priceNow {
		font-size: 18px;
	}
	.product__priceSale {
		font-size: 16px;
	}
	.stocks__slider {
		margin: 0 -5px;
	}
	.stocks__slider .product {
		margin: 0 5px 4px;
	}
	.stocks__slider .slick-arrow {
		width: 40px;
		top: 50%;
	}
	.stocks__slider .slick-prev {
		left: -20px;
	}
	.stocks__slider .slick-next {
		right: -20px;
	}
	.catalog__container {
		flex-direction: column;
	}
	.catalog__main {
		width: 100%;
	}
	.catalog__list {
		grid-template-columns: repeat(3, 1fr);
	}
	.catalog__asideBtn {
		display: flex;
	}
	.catalog__mainFilter {
		display: flex;
	}
}
@media (max-width: 575px) {
	.stocks__slider .slick-arrow {
		width: 30px;
		background-size: 18px;
	}
	.stocks__slider .slick-prev {
		left: -5px;
	}
	.stocks__slider .slick-next {
		right: -5px;
	}
	.product__delivery {
		width: 22px;
	}
	.product__favorite {
		width: 26px;
		background-size: 18px;
	}
	.catalog__list {
		grid-template-columns: repeat(2, 1fr);
	}
	.catalog__more {
		font-size: 14px;
		max-width: 180px;
		min-height: 38px;
	}
	.catalog__navigation {
		width: 30px;
		background-size: 18px;
	}
	.catalog__navigationContainer {
		gap: 15px;
	}
	.catalog__pagination li a {
		font-size: 14px;
	}
	.catalog__pagination li span {
		font-size: 14px;
	}
	.catalog__pagination {
		gap: 5px;
	}
}
@media (max-width: 400px) {
	.product__buy,
	.added_to_cart {
		font-size: 13px;
	}
	.catalog__list {
		gap: 10px;
	}
	.product__title {
		font-size: 16px;
	}
}
/* catalog */

/* footer */
.footer {
	background-color: #555555;
}
.footer__top {
}
.footer__topContainer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0px 0;
}
.footer__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.footer__logo {
	display: flex;
	color: var(--accent);
	font-size: 40px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 45px;
}
.footer__logo:hover {
	text-decoration: none;
	opacity: .8;
	color: var(--accent);
}
.footer__logo img {
	width: 100%;
	max-width: 150px;
}
.footer__social {
	margin-bottom: 60px;
}
.footer__socialTitle {
	color: #F2F2F2;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 15px;
}
.footer__socialList {
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer__socialList a {
	display: block;
	flex: none;
	width: 30px;
	height: auto;
	aspect-ratio: 1;
}
.footer__social a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer__social a:hover {
	text-decoration: none;
	opacity: .8
}
.footer__links {
	display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    text-align: left !important;
}
.footer__links a {
	color: #F2F2F2;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	border-bottom: 1px solid #F2F2F2;
}
.footer__links a:hover {
	border-bottom-color: transparent;
}
.footer__title {
	color: #414141;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 30px;
}
.footer__menu ul {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}
.footer__menu ul li {
	list-style: none;
}
.footer__menu ul li a {
	display: block;
	color: #F2F2F2;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}
.footer__menu ul li a:hover {
	text-decoration: underline;
	opacity: .8;
}
.footer__bottom {
	background-color: #444444;
	padding: 14px 0;
}
.footer__bottomContainer {
}
.footer__copy {
	color: #888888;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
}
@media (max-width: 1230px) {

}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
	.catalog .catalog__aside {
		display: none;
	}
}
@media (max-width: 575px) {
	.footer__topContainer {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 50px 20px;
	}
	/* Логотип по левому краю */
  .footer__logo {
    display: flex !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
	.footer__logo img {
    margin: 0 !important;
  }
	.footer__social {
		display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        text-align: left !important;
	}
	.footer__col:nth-child(1) {
		order: 1;
		grid-column: 1/3;
		align-items: center;
	}
}
/* footer */

/* filterPopup */
.filterPopup {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.filterPopup__container {
	max-width: 350px;
	margin: 0 auto;
	padding: 50px 20px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.filterPopup__container .catalog__aside {
	width: 100%;
}
.filterPopup__container .catalog__asideList>ul>li>ul {
	display: none;
	position: relative;
	left: 0;
	opacity: 1;
	visibility: visible;
	padding: 0;
	margin-top: 6px;
	margin-bottom: 10px;
	transition: none;
}
.filterPopup__container .catalog__asideList>ul>li>ul>li:not(:last-child) {
	margin-bottom: 6px;
}
.filterPopup__container .catalog__asideList>ul>li>ul>li>a {
	font-size: 14px;
}
.filterPopup__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	z-index: 2;
}
.filterPopup__close:before,
.filterPopup__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.filterPopup__close:before:hover,
.filterPopup__close:after:hover {
	opacity: .8;
}
.filterPopup__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.filterPopup__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1230px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.filterPopup.open {
		right: 0;
	}
}
@media (max-width: 575px) {
}
/* filterPopup */

/* categoryPopup */
.categoryPopup {
	position: fixed;
	width: 100%;
	height: 100%;
	right: -100%;
	top: 0;
	background-color: #fff;
	z-index: 100;
	transition: .25s all ease-in-out;
	overflow-y: auto;
}
.categoryPopup__container {
	max-width: 350px;
	margin: 0 auto;
	padding: 50px 20px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.categoryPopup__container .catalog__aside {
	width: 100%;
}
.categoryPopup__container .catalog__asideList>ul>li>ul {
	display: none;
	position: relative;
	left: 0;
	opacity: 1;
	visibility: visible;
	padding: 0;
	margin-top: 6px;
	margin-bottom: 10px;
	transition: none;
}
.categoryPopup__container .catalog__asideList>ul>li>ul>li:not(:last-child) {
	margin-bottom: 6px;
}
.categoryPopup__container .catalog__asideList>ul>li>ul>li>a {
	font-size: 14px;
	justify-content: space-between;
}
.categoryPopup__container .catalog__asideList>ul>li>ul>li>ul {
	display: none;
	position: relative;
	left: 0;
	opacity: 1;
	visibility: visible;
	padding: 0;
	margin-top: 6px;
	margin-bottom: 10px;
	transition: none;
	margin-left: 20px;
}
.categoryPopup__container .catalog__asideList>ul>li>ul>li>ul>li:not(:last-child) {
	margin-bottom: 6px;
}
.categoryPopup__container .catalog__asideList>ul>li>ul>li>ul>li>a {
	font-size: 14px;
}
.categoryPopup__container .catalog__asideList>ul>li ul li.arrow>a::after {
	content: '▾';
	font-size: 19px;
}
.categoryPopup__close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	z-index: 2;
}
.categoryPopup__close:before,
.categoryPopup__close:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: .25s all ease-in-out;
}
.categoryPopup__close:before:hover,
.categoryPopup__close:after:hover {
	opacity: .8;
}
.categoryPopup__close:before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.categoryPopup__close:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1230px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
	.categoryPopup.open {
		right: 0;
	}
}
@media (max-width: 575px) {
}
/* filterPopup */

/* toolbar */
.toolbar {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #fff;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: space-between;
	padding: 8px 20px;
    border-top: 1px solid #f2f2f2;
}
.toolbar>a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.toolbar__icon {
	width: 32px;
	height: 32px;
	flex: none;
}
.toolbar__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.toolbar__icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.toolbar__title {
	color: #555;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
}
.toolbar>a:hover .toolbar__icon svg path {
	fill: var(--accent)
}
.toolbar>a.toolbar__category:hover .toolbar__icon svg path {
	fill: var(--accent);
	stroke: var(--accent)
}
.toolbar>a .toolbar__icon svg path {
	transition: .25s all ease-in-out;
}
.toolbar>a.active .toolbar__icon svg path {
	fill: var(--accent)
}

@media (max-width: 767px) {
	.toolbar {
		display: flex;
	}
}
/* toolbar */

/* catalogSidebar */
.backdrop {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	z-index: 90;
	transition: .25s all ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.backdrop.active {
	opacity: 1;
	visibility: visible;
}
.catalogSidebar {
	position: fixed;
	left: -100%;
	top: 0;
	height: 100%;
	z-index: 100;
	width: 300px;
	background-color: #fff;
	transition: .25s all ease-in-out;
}
.catalogSidebar.open {
	left: 0;
}
.catalogSidebar__container {

}
.catalogSidebar__container .catalog__asideList {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.catalogSidebar__container .catalog__asideList::-webkit-scrollbar {
	display: none;
  }
.catalogSidebar__container .catalog__asideList>ul {
	width: 300px;
}
@media (max-width: 767px) {
	.backdrop {
		display: none!important;
	}
	.catalogSidebar {
		display: none!important;
	}
}
/* catalogSidebar */
/*Burger*/

.info__burger {
    color: #555;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
    font-size: 16px;
    
}
.info__burger__user {
    color: #888;
    border-bottom: 1px solid #f1f1f1;
    font-size: 20px;
    font-weight: 500;
    
    
}

.social__burger {
    
    margin-top: 5px;
      
}
.social__burger a {
    
    margin-left: 10px;
    
}
.albo {
    
    color: #555;
}
/*End of burger*/
/*Labels*/
.label__checkbox {
    
    color: #111;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}
/*end of labels*/


/* page */
.page {
	margin: 20px 0 60px;
}
.page__title {
	margin-bottom: 20px;
	font-size: 36px;
}
.page__text {
	text-wrap: pretty;
}
.page__text {
}
.page__text p:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.page__title {
		font-size: 28px;
		text-wrap: pretty;
	}
}
/* page */

/* productPage */
.productPage {
	display: grid;
	grid-template-columns: 700px 300px;
	align-items: flex-start;
	gap: 80px;
}
.productPage__container {
	overflow: hidden;
}
.productPage__aside {
	position: sticky;
	top: 90px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.productPage__user {
	display: grid;
	grid-template-columns: 64px 1fr;
	align-items: center;
	gap: 20px;
	padding: 16px;
	border: 1px solid #ddd;
	border-radius: 12px;
}
.productPage__userImg {
	display: flex;
}
.productPage__userImg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
}
.productPage__userContent {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.productPage__userName {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}
.productPage__userDeclare {
	display: block;
	color: var(--accent);
	font-size: 14px;
	line-height: 1.2;
}
.productPage__userDeclare:hover {
	color: var(--hover);
	text-decoration: none;
}
.productPage__slider {
	display: grid;
	grid-template-columns: 100px calc(100% - 100px - 20px);
	gap: 20px;
	overflow: hidden;
	max-width: 100%;
	margin-bottom: 50px;
	position: relative;
}
.productPage__sliderMain {

}
.productPage__sliderMain.slick-initialized .productPage__sliderMainItem {
	display: flex;
}
.productPage__sliderMainItem {
	width: 100%;
	height: 530px;
	align-items: center;
	justify-content: center;
	display: none;
}
.productPage__sliderMain .slick-arrow {
	width: 40px;
	height: auto;
	aspect-ratio: 1;
	border-radius: 6px;
	background-color: rgba(0, 0, 0, .5);
	opacity: 0;
	transition: .25s all ease-in-out;
	z-index: 3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 45%;
}
.productPage__sliderMain:hover .slick-arrow {
	opacity: 1;
}
.productPage__sliderMain .slick-arrow::before {
	display: none;
}
.productPage__sliderMain .slick-prev {
	left: 10px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='%23fff' fill-rule='evenodd' d='M8.566 2.768a.8.8 0 0 0-1.132 0L2.768 7.434a.8.8 0 0 0 0 1.132l4.666 4.666a.8.8 0 1 0 1.132-1.131L5.265 8.8h7.402a.8.8 0 0 0 0-1.6H5.265l3.3-3.301a.8.8 0 0 0 0-1.131Z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.productPage__sliderMain .slick-next {
	right: 10px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3e%3cpath fill='%23fff' fill-rule='evenodd' d='M7.434 13.232a.8.8 0 0 0 1.132 0l4.666-4.666a.8.8 0 0 0 0-1.132L8.566 2.768a.8.8 0 1 0-1.132 1.131L10.735 7.2H3.333a.8.8 0 0 0 0 1.6h7.402l-3.3 3.301a.8.8 0 0 0 0 1.131Z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.productPage__sliderMainItem img {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 6px;
}
.productPage__sliderNav {
	order: -1;
	margin: -3px 0;
}
.productPage__sliderNav.slick-initialized .productPage__sliderNavItem {
	display: flex;
}
.productPage__sliderNavItem {
	width: 100%;
	height: auto;
	cursor: pointer;
	transition: .25s all ease-in-out;
	border: none;
	display: none;
}
.productPage__sliderNavItem {
	margin: 3px 0;
}
.productPage__sliderNavItem:hover {
	opacity: .8;
}
.productPage__sliderNavItem img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}
.productPage__info {
}
.productPage__infoPrice {
	font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}
.productPage__infoTitle {
	font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}
.productPage__infoAddress {
	font-size: 14px;
    color: #808080;
    line-height: 1.2;
}
.productPage__infoBuy {
    width: 100%;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 15px;
    background: var(--accent);
	margin-top: 25px;
	border: none;
}
.productPage__infoBuy:hover {
	text-decoration: none;
	color: #fff;
	background: var(--hover);
}
.productPage__pretitle {
	font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 15px;
}
.productPage__pretitle span {
	display: inline-block;
	border-bottom: 2px solid var(--accent);
}
.productPage__features {
	margin-bottom: 50px;
}
.productPage__featuresList {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.productPage__featuresItem {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.productPage__featuresItem > div {
    line-height: 1.2;
	font-size: 16px;
}
.productPage__featuresItem > div a {
	color: var(--accent);
}
.productPage__featuresItem > div a:hover {
	color: var(--hover);
	text-decoration: none;
}
.productPage__featuresItem > div:nth-child(1) {
	color: #808080;
	display: flex;
	flex: none;
	order: 1;
	max-width: 50%;
}
.productPage__featuresItem::after {
	content: '';
	flex: 1;
	border-bottom: 1px dashed #808080;
	margin: 0 10px;
	transition: .25s all ease-in-out;
	order: 2;
}
.productPage__featuresItem > div:nth-child(2) {
	order: 3;
	max-width: 40%;
}
.productPage__featuresItem:hover > div:nth-child(1)::after {
	border-bottom-color: #000
}
.productPage__content {
}
.productPage__contentTitle {
	font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 15px;
}
.productPage__contentTitle span {
	display: inline-block;
	border-bottom: 2px solid var(--accent);
}
.productPage__contentText {
	font-size: 16px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 4; /* Количество строк */
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.productPage__toggleText {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--accent);
	margin-top: 5px;
}
.productPage__toggleText::after {
	content: '';
	width: 13px;
	height: auto;
	aspect-ratio: 1.625;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' fill='none' viewBox='0 0 13 8'%3e%3cpath fill='%23009A59' fill-rule='evenodd' d='M6.368 5.497.918.05 0 .969l6.368 6.367L12.784.92l-.92-.92-5.496 5.497Z' clip-rule='evenodd'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	flex: none;
	transition: .25s all ease-in-out;
}
.productPage__toggleText:hover {
	text-decoration: none;
	color: var(--hover);
}
.productPage__toggleText.expanded::after {
	transform: rotate(180deg);
}
.productPage__contentText.expanded {
	display: block;
} 
.productPage__contentText p:last-child {
	margin-bottom: 0;
}
.productPage__related {
	margin-top: 50px;
}
.productPage__related .catalog__list {
	grid-template-columns: 1fr 1fr 1fr;
}
.productPage__related .catalog__list .product__title {
	font-size: 18px;
}
.productPage__favorite {
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 6px;
	width: 40px;
	height: auto;
	aspect-ratio: 1;
	flex: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='22' height='20' fill='none' viewBox='0 0 22 20'%3e%3cpath fill='%23222' d='m11 3.664-.986-.983C7.7.375 3.457 1.171 1.924 4.071c-.718 1.364-.88 3.333.433 5.846 1.265 2.42 3.897 5.319 8.643 8.476 4.747-3.157 7.377-6.056 8.644-8.476 1.313-2.514 1.152-4.482.432-5.846-1.532-2.9-5.776-3.698-8.09-1.39L11 3.663ZM11 20C-10.083 6.49 4.51-4.053 10.758 1.524c.083.073.164.15.242.228.078-.079.159-.154.242-.227C17.49-4.055 32.084 6.49 11 20Z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 7;
	cursor: pointer;
	box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, .1);
	transition: .25s all ease-in-out;
	border: none;
}
.productPage__favorite.active {
	background-image: url('../img/heart__aktiv.png');
}
@media (max-width: 1230px) {
	.productPage {
		gap: 30px;
		grid-template-columns: 1fr 270px;
	}
	.productPage__infoTitle {
		font-size: 20px;
	}
}
@media (max-width: 991px) {
	.productPage {
		grid-template-columns: 100%;
	}
	.productPage__aside {
		position: relative;
		top: auto;
		order: -1;
	}
	.productPage__container {
		display: contents;
	}
	.productPage__slider {
		order: -2;
	}
}
@media (max-width: 767px) {
	.productPage__related .catalog__list {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 575px) {
	.productPage__slider {
		grid-template-columns: 100%;
		margin-bottom: 30px;
	}
	.productPage__sliderNav {
		display: none!important;
	}
	.productPage__sliderMainItem {
		height: auto;
	}
	.productPage__sliderMain .slick-arrow {
		opacity: 1;
		width: 36px;
		opacity: .8;
	}
	.productPage__featuresItem > div {
		font-size: 14px;
	}
	.productPage__featuresItem > div:nth-child(1) {
		width: min-content;
	}
	.productPage {
		gap: 0;
	}
	.productPage__aside {
		margin-bottom: 50px;
	}
	.productPage__favorite {
		width: 36px;
	}
}
@media (max-width: 400px) {
	.productPage__related .catalog__list .product__title {
		font-size: 16px;
	}
}
/* productPage */
/*form upload*/
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact [type="submit"] {
  font: 400 12px/16px "Roboto",sans-serif;
}

#contact {
  background: #f9f9f9;
  padding: 25px;
  margin: 50px 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
    color: #333;
}

#contact h4 {
  
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 5px 0;
  min-width: 100%;
  padding: 0;
  width: 100%;
    border-radius: 2px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact [type="submit"] {
  cursor: pointer;
  width: 250px;
  border: none;
  background: #009a59;
  color: #FFF;
  margin: 15px 0 5px;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  
  #contact [type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #009a59;
  color: #FFF;
  margin: 15px 0 5px;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
}
}
#contact [type="submit"]:hover {
  background: #148657;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact [type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}


#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}
.form-check {
    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}
.form-check-label {
    margin-left: 10px;
}
.warunki_wyceny {
    
    background-color: #E9F1F4;
    padding: 25px;
    border: 1px solid #f2f2f2;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border-radius: 5px;
    margin-bottom: 40px;
}
/*end uploadform*/

/*form settings*/
 i#contact__settingsnput[type="text"],
#contact__settings input[type="email"],
#contact__settings input[type="tel"],
#contact__settings input[type="url"],
#contact__settings textarea,
#contact__settings [type="submit"] {
  font: 400 12px/16px "Roboto",sans-serif;
}

#contact__settings {
  background: #FFF;
  padding: 25px;
  margin: 5px 0;
  box-shadow: ;
  border: 1px solid #f2f2f2;
  border-radius: 15px;
}

#contact__settings h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
    color: #333;
}

#contact__settings h4 {
  
  display: block;
  font-size: 14px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 5px 0;
  min-width: 100%;
  padding: 0;
  width: 100%;
    border-radius: 2px;
}

#contact__settings input[type="text"],
#contact__settings input[type="email"],
#contact__settings input[type="tel"],
#contact__settings input[type="url"],
#contact__settings textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
    border-radius: 5px;
}

#contact__settings input[type="text"]:hover,
#contact__settings input[type="email"]:hover,
#contact__settings input[type="tel"]:hover,
#contact__settings input[type="url"]:hover,
#contact__settings textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact__settings textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact__settings [type="submit"] {
  cursor: pointer;
  width: 250px;
  border: none;
  background: #009a59;
  color: #FFF;
  margin: 15px 0 5px;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  
  #contact__settings [type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #009a59;
  color: #FFF;
  margin: 15px 0 5px;
  padding: 10px;
  font-size: 15px;
  border-radius: 5px;
}
}
#contact__settings [type="submit"]:hover {
  background: #148657;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact__settings [type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}


#contact__settings input:focus,
#contact__settings textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}
.form-check {
    
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
}
.form-check-label {
    margin-left: 10px;
}
.warunki_wyceny {
    
    background-color: #E9F1F4;
    padding: 25px;
    border: 1px solid #f2f2f2;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border-radius: 5px;
    margin-bottom: 40px;
}
/*end uploadform*/
/*btb usun*/

button[type="delete__profile"],
a[type="delete__profile"] {
    display: inline-block;
    background-color: #fff;
    border: 1px solid red;
    border-radius: 5px;
    padding: 3px 15px;
    color: red;
    margin-top: 25px;
    margin-bottom: 5px;
}

button[type="delete__profile"]:hover,
a[type="delete__profile"]:hover {
    
    background-color: #F2F2F2;
    border: 1px solid #333;
}

.del_pro {
    
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}
.delete__overflow {
    
    width: 100%;
    border: 1px solid #f2f2f2;
    padding: 0 0 0 25px;
    border-radius: 15px;
    margin-top: 15px;
}
/* end btn usun*/
/*zgoda text*/
.zgoda {
    
    font-size: 14px;
    color: #888;
}
.switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
  left: 70%;
}
.switch input {
    
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #009a59;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Закругленные ползунки */
.slider.round {
  border-radius: 50px;
}

.slider.round:before {
  border-radius: 50%;
}

/*end zgoda text*/
/*FAQ*/

.accordion {
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
    max-width: 100%;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #f3f3f3;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 22px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
   
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #333;
    border-top: 1px solid #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 18px;
    }
}

/*End FAQ*/
/*revieews*/
.checked {
  color: orange;
}
.reviews_title {
    
    margin: 0 15px 15px 0;
    font-size: 26px;
} 
.wrapper_reviews {

    padding: 15px;
    margin: 15px 0 15px 0;
    line-height: 1.4;
    background-color: #f9f9f9;
    border-radius: 5px;
    width: 1170px;  
    height: 160px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
}
.name_lombard {
    
    font-size: 22px;
    font-weight: 400;
}
.reviews_place {
    
    color: #555;
}
.reviews_kontacts {
    color: #555;
}
.img_reviews {
    
    width: 130px;
    background-color: #fff;
    height: 130px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #f2f2f2;
    
}


.catalog__filter__reviews {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
    margin-left: 0px;
}
.catalog__filter__reviews a {
	color: #333;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
    
}
.catalog__filter__reviews a:hover {
	text-decoration: underline;
	color: #333;
}
.catalog__filter__reviews a.active {
	font-weight: 500;
    
}
.catalog__filter__reviews a.active:hover {
	color: #333;

}
@media (max-width: 1230px) {
    .wrapper_reviews {
    display: block;
    padding: 15px;
    line-height: 1.4;
    background-color: #f0f0f0;
    border-radius: 5px;
    max-width: 950px;
    margin: 15px;
    
    }
    .catalog__filter__reviews {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
    margin-left: 15px;
    }
    .reviews_place {
    
    color: #555;
    display: none;
}
    .img_reviews {
        width: 130px;
        height: 130px;
    }
    .name_lombard {
    
    font-size: 24px;
    font-weight: 400;
}
.reviews_place {
    
    color: #555;
}
.reviews_kontacts {
    color: #555;
}
    
 .reviews_title {
    
    margin: 15px;
    font-size: 28px;
    }   
}

@media (max-width: 991px) {
    .wrapper_reviews {
    display: block;
    padding: 15px;
    line-height: 1.4;
    background-color: #f0f0f0;
    border-radius: 5px;
    max-width: 700px;
    margin: 15px;
    
    }
    .catalog__filter__reviews {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
    margin-left: 15px;
    }
    .reviews_place {
    
    color: #555;
    display: none;
}
    .img_reviews {
        width: 130px;
        height: 130px;
    }
    .name_lombard {
    
    font-size: 26px;
    font-weight: 400;
}
.reviews_place {
    
    color: #555;
}
.reviews_kontacts {
    color: #555;
}
    
 .reviews_title {
    
    margin: 15px;
    font-size: 26px;
    }   
}

@media (max-width: 767px) {
    .wrapper_reviews {
    display: block;
    padding: 15px;
    line-height: 1.4;
    background-color: #f0f0f0;
    border-radius: 5px;
    max-width: 360px;
    margin: 15px;
    
    }
    .catalog__filter__reviews {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
    margin-left: 15px;
    }
    .reviews_place {
    
    color: #555;
    display: none;
}
    .img_reviews {
        width: 100px;
        height: 100px;
    }
    .name_lombard {
    
    font-size: 20px;
    font-weight: 400;
}
.reviews_place {
    
    color: #555;
}
.reviews_kontacts {
    color: #555;
}
    
 .reviews_title {
    
    margin: 15px;
    font-size: 24px;
    }   
}
@media (max-width: 575px) {
    .wrapper_reviews {
    display: block;
    padding: 15px;
    line-height: 1.4;
    background-color: #f0f0f0;
    border-radius: 5px;
    max-width: 340px;
    margin: 15px;
    
    }
    .catalog__filter__reviews {
	display: flex;
	align-items: baseline;
	gap: 10px 25px;
	flex-wrap: wrap;
	margin-bottom: 25px;
    margin-left: 15px;
    }
    .reviews_place {
    
    color: #555;
    display: none;
}
    .img_reviews {
        width: 90px;
        height: 90px;
    }
    .name_lombard {
    
    font-size: 18px;
    font-weight: 400;
}
.reviews_place {
    
    color: #555;
    font-size: 14px;
    
}
.reviews_kontacts {
    color: #555;
    display: 
    font-size: 14px;
}
    
 .reviews_title {
    
    margin: 15px;
    font-size: 20px;
    }   
}

/*End of reviews*/
/*payment cards signs*/
.payment__cards {
    
   margin-left: 12px;
}
.payment__cards__dss {
    
   margin-top: 10px;
    margin-left: 12px;
}
.link__promocje {
    
    color: #009a59;
}
.link__promocje:hover {
    
    text-decoration: underline;
    color: #009a59;
}
/*end cards*/