:root {
    --max-width: 1920px;
    --color-main-pink: #d65f7b;
    --color-light-pink: #f9b9b9;
    --color-bg-pink: #f6eddb;
    --text-color-brown: #66321c;
    --text-color-white: #ffffff;
	--text-color-pink: #a52e41;
    --color-green: #b7d600;
    --color-red: #e72229;
    --color-orange: #f27322;
    --color-light-orange: #ffcaa4;
    --color-border: #813c4e;
}
*, *::before, *::after {
	box-sizing: border-box; 
	margin: 0;
	padding: 0;
}
html {
	font-size: 10px;
	line-height: 1.3;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	text-rendering: optimizeSpeed;
	font-family: 'Roboto', sans-serif;
	font-size: 1.2rem;
	color: var(--text-color-brown);
    background: var(--color-bg-pink);
    position: relative;
}
@media (min-width: 576px) {
	body {
		font-size: 1.4rem;
	}
}
@media (min-width: 992px) {
	body {
		font-size: 1.6rem;
	}
}
@media (min-width: 1530px) {
	body {
		font-size: 1.8rem;
	}
}
main {
	min-height: 100vh;
	position: relative;
	padding-bottom: 10px;
}
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: var(--dark-color);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="submit"] {
	cursor: pointer;
}

/* containers and css for all starts */
.c-container {
    width: 100%;
    max-width: var(--max-width);
	padding: 0;
    margin: 0 auto;
}
.c-container--normal {
	padding: 0 10px;
} 
@media (min-width: 576px) {
	.c-container--normal {
		padding: 0 20px;
	} 
}
@media (min-width: 768px) {
	.c-container--normal {
		padding: 0 30px;
	} 
}
@media (min-width: 992px) {
	.c-container--normal {
		padding: 0 50px;
	} 
}
@media (min-width: 1200px) {
	.c-container--normal {
		padding: 0 80px;
	}
}
@media (min-width: 1530px) {
	.c-container--normal {
		padding: 0 90px;
	}
}
@media (min-width: 1770px) {
	.c-container--normal {
		padding: 0 100px;
	}
}
.in-container {
    position: relative;
	overflow: hidden;
}
.in-container.in-container--16-9 {
	padding-top: 56.25%;
}
.in-container.in-container--9-16 {
	padding-top: 177.78%;
}
.in-container.in-container--3-2 {
	padding-top: 66.67%;
}
.in-container.in-container--3-1 {
	padding-top: 33.33%;
}
.in-container.in-container--9-4 {
	padding-top: 44.44%;
}
.in-container.in-container--1-1 {
	padding-top: 100%;
}
.in-container.in-container--590-630 {
    padding-top: 106.779661%;
}
.in-container.in-container--1920-700 {
    padding-top: 36.4583333%;
}
.in-container > .in-container__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.in-container > .in-container__inner > img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.in-container > .in-container__inner.contain > img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.img_lazy img {
	opacity: 0;
	transition: opacity 0.2s;
}
.img_lazy.loaded img {
	opacity: 1;
}
.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	  -webkit-user-select: none; /* Safari */
	   -khtml-user-select: none; /* Konqueror HTML */
		 -moz-user-select: none; /* Firefox */
		  -ms-user-select: none; /* Internet Explorer/Edge */
			  user-select: none; /* Non-prefixed version, currently
									supported by Chrome and Opera */
}
.wave-block {
	margin: 46px 0;
    padding: 10px 0;
    position: relative;
    background: var(--color-light-pink);
}
.wave-block::before,
.wave-block::after {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
}
.wave-block::before {
    top: -39px;
    left: 0;
    background-image: url('../images/static/wave-top-light.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100%;
}
.wave-block::after {
    bottom: -39px;
    left: 0;
    background-image: url('../images/static/wave-bottom-light.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
}
.border-radius-top-left {
	border-top-left-radius: 18px;
}
.border-radius-bottom-right {
	border-bottom-right-radius: 18px;
}
.last-block	{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.last-block__inner {
	position: relative;
}
.last-block__inner::after {
	content: "";
	width: 100%;
	height: 120px;
	background: url('../images/static/balls-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.enable-bg {
	background: url('../images/static/bg.jpg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.mb-30 {
	margin-bottom: 30px;
}
.pointer {
	cursor: pointer;
}
@media (min-width: 576px) {
	.wave-block {
		margin: 66px 0;
	}
	.wave-block::before,
	.wave-block::after {
		height: 60px;
	}
	.wave-block::before {
		top: -59px;
	}
	.wave-block::after {
		bottom: -59px;
	}
	.last-block__inner::after {
		height: 160px;
	}
}
@media (min-width: 768px) {
	.wave-block {
		margin: 76px 0;
	}
	.wave-block::before,
	.wave-block::after {
		height: 70px;
	}
	.wave-block::before {
		top: -69px;
	}
	.wave-block::after {
		bottom: -69px;
	}
	.last-block__inner::after {
		height: 210px;
	}
}
@media (min-width: 992px) {
	.wave-block {
		margin: 86px 0;
	}
	.wave-block::before,
	.wave-block::after {
		height: 80px;
	}
	.wave-block::before {
		top: -79px;
	}
	.wave-block::after {
		bottom: -79px;
	}
	.last-block__inner::after {
		height: 260px;
	}
}
@media (min-width: 1200px) {
	.wave-block {
		margin: 106px 0;
	}
	.wave-block::before,
	.wave-block::after {
		height: 100px;
	}
	.wave-block::before {
		top: -99px;
	}
	.wave-block::after {
		bottom: -99px;
	}
	.last-block__inner::after {
		height: 300px;
	}
}
@media (min-width: 1530px) {
	.last-block__inner::after {
		height: 320px;
	}
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-pagination-bullet-active {
    background: var(--color-main-pink) !important;
}
.counter {
	display: flex;
	flex-direction: row;
	transform: translateX(-20px);
}
.counter__btn {
	outline: none;
	background: var(--color-main-pink);
	color: var(--text-color-white);
	border: 2px solid var(--color-border);
	width: 34px;
	padding: 6px 0;
	font-weight: bold;
	font-size: 1.2em;
	cursor: pointer;
}
.counter__number input {
	width: 100px;
	outline: none;
	border: none;
	background: #ffffff;
	border-top: 2px solid var(--color-border);
	border-bottom: 2px solid var(--color-border);
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	color: var(--text-color-brown);
	padding: 6px 24px;
}
.counter__minus {
	transform: translateX(20px);
}
.counter__plus {
	transform: translateX(-20px);
}
@media (min-width: 768px) {
	.counter__number input {
		width: 110px;
	}
	.counter__btn {
		width: 40px;
	}
}
@media (min-width: 992px) {
	.counter__number input {
		width: 150px;
	}
	.counter__btn {
		width: 50px;
	}
}
.button {
	display: inline-block;
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
	font-size: 1.2em;
	padding: 8px 14px;
	border-radius: 6px;
	text-align: center;
	font-weight: bold;
}
.button-uppercase {
	text-transform: uppercase;
}
.button-green {
	color: var(--text-color-brown);
	background: var(--color-green);
}
.button-red {
	color: var(--text-color-white);
	background: var(--color-red);
}
.button-orange {
	color: var(--text-color-white);
	background: var(--color-orange);
}
.title {
	display: inline-block;
	border: 2px solid var(--color-border);
	background: var(--color-main-pink);
	color: var(--text-color-white);
	text-transform: uppercase;
	font-weight: bold;
	padding: 8px 18px;
	text-align: center;
} 
.toasts {
	position: fixed;
	bottom: 30px;
	left: 0;
	z-index: 999;
	width: 100%;
	pointer-events: none;
}
a.disabled {
	pointer-events: none;
	cursor: default;
}
.hidden-none {
	opacity: 0;
	visibility: hidden;
	height: 0;
}
.form__input--border.hidden-none {
    border: unset !important;
}
.hidden-none + .form__error {
	margin-bottom: 0;
	display: none;
}
.blur-container {
	position: relative;
}
.blur-container::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(246, 237, 219, 0.8);
}
/* containers and css for all ends */

/* header starts */
header {
    position: relative;
}
.header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 99;
}
.fixed__inner {
	width: 100%;
	height: 100%;
	background: var(--color-light-pink);
	display: flex;	
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	color: var(--text-color-pink);
}
.fixed__inner a { 
	color: var(--text-color-pink);
}
.header__block-logo {
	width: 100px;
}
.header__block-logo img {
	width: 100%;
}
.header__block-contacts {
	display: none;
}
.header__phone a {
	font-weight: bold;
}
.header__block-btns {
	flex: 0 0 auto;
}
.header__block-btns ul {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.header__block-btns li {
	margin-left: 10px;
}
.header__block-btns img {
	height: 20px;
}
.header__block-btns a {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.header__fixed::after {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	background: var(--color-bg-pink);
	position: absolute;
	bottom: -10px;
	left: 0;
}
.header__static {
	margin-top: 60px;
	height: 180px;
	background: url('../images/static/header.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}
.header__static > div {
	height: 100%;
}
.header__static-inner {
	height: 100%;
	padding-top: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.search-form {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.search {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	border: 2px solid #ffffff;
	background: #ffffff;
	width: 100%;
}
.search form {
	width: 100%;
	display: flex;
	flex-direction: row;
}
.search input {
	outline: none;
	display: inline-block;
	border: none;
	background: #ffffff;
	color: var(--text-color-brown);
	padding: 8px 8px 8px 18px;
	width: calc(100% - 50px);
}
.search button {
	outline: none;
	border: none;
	background: var(--color-light-pink);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	cursor: pointer;
}
.search img {
	height: 18px;
}
.header__title {
	color: var(--text-color-pink);
	text-align: right;
}
.header__title h1 {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 2.6rem;
	font-family: 'STIX Two Math', serif;
}
.header__title h2 {
	font-weight: normal;
	font-size: 2rem;
	font-family: 'Marck Script', cursive;
}
.header__bottom {
    margin: 10px 0;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 54px;
    left: 0;
    z-index: 99;    
}
.header-bottom__inner {
	width: 100%;
	height: 100%;
	padding: 4px 0;
	background: var(--color-light-pink);
}
.menu-header--mobile,
.menu-header--mobile ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.menu-header--mobile ul {
	width: 100%;
}
.menu-header--mobile a,
.menu-header a {
    text-transform: uppercase;
    font-weight: bold;
}
.menu-header {
    position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: var(--color-light-pink);
	padding: 10px 10px 30px 30px;
	overflow-y: auto;
	font-size: 1.4em;
	transform: translateX(100%);
	transition: 0.6s;
}
.menu-header.menu-header--open {
	transform: translateX(0);
}
.menu-header ul {
	display: flex;
	flex-direction: column;
}
.menu-header li {
	margin-bottom: 10px;
}
.menu-header a {
	transition: 0.6s;
}
.menu-header a:hover {
	color: var(--text-color-pink);
}
.menu-header__close {
	text-align: right;
	margin-bottom: 10px;
}
.menu-header__close img {
	width: 20px;
	height: 20px;
	cursor: pointer;
}
@media (min-width: 576px) {
	.header__block-logo {
		width: 110px;
	}
	.header__block-contacts {
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		margin-left: 20px;
	}
	.header__title h1 {
		font-size: 3.6rem;
	}
	.header__title h2 {
		font-size: 2.6rem;
	}
}
@media (min-width: 768px) {
	.header__fixed {
		height: 60px;
	}
	.header__block-logo {
		width: 120px;
	}
	.header__block-contacts {
		margin-left: 30px;
	}
	.header__block-btns li {
		margin-left: 15px;
	}
	.header__block-btns img {
		height: 24px;
	}
	.header__static {
		margin-top: 70px;
		height: 200px;
	}
	.search {
		width: 50%;
	}
	.search img {
		height: 18px;
	}
	.search img {
		height: 20px;
	}
	.header__title h1 {
		font-size: 5rem;
	}
	.header__title h2 {
		font-size: 3.2rem;
	}
	.header__bottom {
		top: 64px;
	}
	.header-bottom__inner {
		padding: 6px 0;
	}
	.menu-header {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.header__block-logo {
		width: 130px;
	}
	.header__block-contacts {
		flex: 1 1 auto;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-left: 0;
	}
	.header__phone {
		margin-left: 30px;
	}
	.header__block-btns li {
		margin-left: 20px;
	}
	.header__block-btns img {
		height: 28px;
	}
	.header__static {
		height: 250px;
	}
	.search img {
		height: 22px;
	}
	.header__title h1 {
		font-size: 6.8rem;
	}
	.header__title h2 {
		font-size: 3.6rem;
	}
	.header-bottom__inner {
		padding: 8px 0;
	}
	.menu-header__close {
		margin-bottom: initial;
		display: none;
	}
	.menu-header {
		position: initial;
		z-index: initial;
		overflow-y: initial;
		font-size: unset;
		transform: initial;
		transition: initial;
		width: 100%;
		height: initial;
		padding: initial;
	}
	.menu-header,
	.menu-header ul {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
	}
	.menu-header ul {
		width: 100%;
	}
	.menu-header li {
		margin-bottom: initial;
	}
	.menu-header--mobile {
		display: none;
	}
}
@media (min-width: 1200px) {
	.header__block-logo {
		width: 150px;
	}
	.header__fixed {
		height: 70px;
	}
	.header__block-btns img {
		height: 32px;
	}
	.header__static {
		margin-top: 80px;
		height: 300px;
	}
	.search {
		width: 40%;
	}
	.header__title h1 {
		font-size: 7.6rem;
	}
	.header__title h2 {
		font-size: 4rem;
	}
	.header__bottom {
		top: 76px;
	}
}
@media (min-width: 1530px) {
	.header__block-logo {
		width: 160px;
	}
	.header__title h1 {
		font-size: 8.8rem;
	}
	.header__title h2 {
		font-size: 4.2rem;
	}
}
/* header ends */

/* content-with-aside starts */
.content-with-aside {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
.menu-categories {
	background: var(--color-main-pink);
	color: var(--text-color-white);
	width: 100%;
	height: 100%;
	padding: 0 10px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: 0.6s;
}
.menu-categories.menu-categories--open {
	transform: translateX(0);
}
.content-with-aside__content {
	width: 100%;
	padding: 0 10px;
}
@media (min-width: 576px) {
	.content-with-aside__content {
		padding: 0 20px;
	}
}
@media (min-width: 768px) {
	.content-with-aside__content {
		padding: 0 30px;
	}
	.menu-categories {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.menu-categories {
		width: 25%;
		padding: 0 15px;
		position: initial;
		height: initial;
		z-index: initial;
		overflow-y: initial;
		transform: initial;
		transition: initial;
	}
	.menu-categories > nav {
		position: sticky;
		top: 100px;
	}
	.content-with-aside__content {
		width: 75%;
		padding: 0 15px;
	}
	.content-with-aside--one-column .menu-categories {
		display: none;
	}
	.content-with-aside--one-column .content-with-aside__content {
		width: 100%;
		padding: 0 50px;
	}
}
@media (min-width: 1200px) {
	.menu-categories {
		width: 25%;
		padding: 0 30px;
	}
	.menu-categories > nav {
		position: sticky;
		top: 100px;
	}
	.content-with-aside__content {
		width: 75%;
		padding: 0 30px;
	}
	.content-with-aside--one-column .content-with-aside__content {
		width: 100%;
		padding: 0 80px;
	}
}
@media (min-width: 1530px) {
	.menu-categories {
		width: 23%;
	}
	.content-with-aside__content {
		width: 77%;
	}
}
/* content-with-aside ends */

/* menu categories starts */
.menu-categories__close {
	text-align: right;
	margin-top: 10px;
}
.menu-categories__close img {
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.menu-categories__ul {
	padding: 30px 0;
}
.menu-categories__ul a {
	display: block;
	width: 100%;
	margin-bottom: 8px;
}
.menu-categories__ul > li > a {
	padding: 8px 18px;
	background: #ffffff;
	color: var(--text-color-brown);
	text-transform: uppercase;
	font-weight: bold;
}
.menu-categories__ul > li > ul {
	margin-bottom: 30px;
}
.menu-categories__ul > li > ul > li > ul li {
	padding-left: 15px;
}
@media (min-width: 992px) {
	.menu-categories__close {
		margin-top: initial;
		display: none;
	}
}
/* menu categories ends */

/* main slider starts */
.main-slider {
	width: 100%;
	margin-top: 15px;	
	border: 2px solid var(--color-border);
}
.main-slider__swiper {
	position: relative;
}
.main-slider__next,
.main-slider__prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 26px;
	cursor: pointer;
	z-index: 2;
}
.main-slider__next {
	right: 5px;
	background: url('../images/static/btn_right.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.main-slider__prev {
	left: 5px;
	background: url('../images/static/btn_left.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.main-slider__slide {
	background: #ffffff;
	position: relative;
}
.main-slider__slide-btn {
	position: absolute;
	bottom: 6px;
	left: 6px;
}
@media (min-width: 768px) {
	.main-slider__next,
	.main-slider__prev {
		width: 22px;
		height: 34px;
	}
	.main-slider__next {
		right: 10px;
	}
	.main-slider__prev {
		left: 10px;
	}
	.main-slider__slide-btn {
		bottom: 10px;
		left: 10px;
	}
}
@media (min-width: 992px) {
	.main-slider {
		margin-top: 30px;	
	}
	.main-slider__next,
	.main-slider__prev {
		width: 28px;
		height: 44px;
	}
	.main-slider__next {
		right: 12px;
	}
	.main-slider__prev {
		left: 12px;
	}
}
@media (min-width: 1200px) {
	.main-slider__next,
	.main-slider__prev {
		width: 30px;
		height: 46px;
	}
	.main-slider__next {
		right: 14px;
	}
	.main-slider__prev {
		left: 14px;
	}
	.main-slider__slide-btn {
		bottom: 12px;
		left: 12px;
	}
}
@media (min-width: 1530px) {
	.main-slider__next,
	.main-slider__prev {
		width: 34px;
		height: 52px;
	}
	.main-slider__next {
		right: 18px;
	}
	.main-slider__prev {
		left: 18px;
	}
	.main-slider__slide-btn {
		bottom: 16px;
		left: 16px;
	}
}
/* main slider ends */

/* sales-title starts */
.sales-title {
	height: 90px;
	position: relative;
}
.salses-img {
	height: 100%;
}
.salses-img img {
	margin-left: 10px;
	height: 100%;
}
.sales-btn {
	position: absolute;
	bottom: 0;
	right: 0;
}
.sales-btn a {
	display: inline-block;
	border: 2px solid var(--color-border);
	background: var(--color-main-pink);
	color: var(--text-color-white);
	text-transform: uppercase;
	font-weight: bold;
	padding: 8px 18px;
}
@media (min-width: 576px) {
	.sales-title {
		height: 130px;
	}
	.salses-img img {
		margin-left: 40px;
	}
}
@media (min-width: 768px) {
	.sales-title {
		height: 170px;
	}
	.salses-img img {
		margin-left: 70px;
	}
}
@media (min-width: 992px) {
	.sales-title {
		height: 180px;
	}
	.salses-img img {
		margin-left: 60px;
	}
}
@media (min-width: 1200px) {
	.sales-title {
		height: 220px;
	}
	.salses-img img {
		margin-left: 80px;
	}
}
@media (min-width: 1530px) {
	.sales-title {
		height: 250px;
	}
	.salses-img img {
		margin-left: 100px;
	}
}
/* sales-title ends */

/* product-cards-grid starts */
.product-cards-grid {
	width: 100%;
	padding-top: 30px;
}
.product-cards-grid__inner {
	display: grid;
	gap: 10px;
}
.product-cards-grid__inner--3-columns {
	grid-template-columns: repeat(2, 1fr);
}
.product-cards-grid__inner--4-columns {
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 576px) {
	.product-cards-grid__inner {
		gap: 20px;
	}
}
@media (min-width: 768px) {
	.product-cards-grid__inner--3-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	.product-cards-grid__inner--4-columns {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 992px) {
	.product-cards-grid {
		padding-top: 45px;
	}
	.product-cards-grid__inner {
		gap: 30px;
	}
	.product-cards-grid__inner--3-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	.product-cards-grid__inner--4-columns {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1200px) {
	.product-cards-grid__inner {
		gap: 60px;
	}
}
@media (min-width: 1530px) {
	.product-cards-grid {
		padding-top: 60px;
	}
	.product-cards-grid__inner {
		gap: 60px;
	}
}
@media (min-width: 1920px) {
	.product-cards-grid__inner {
		gap: 90px;
	}
}
/* product-cards-grid ends */

/* product card starts */
.product-card__image {
	background: #ffffff;
	border: 2px solid var(--color-border);
	border-top-left-radius: 40px;
	overflow: hidden;
}
.product-card__image img {
	transition: 0.8s;
}
.product-card__image:hover img {
	transform: scale(1.06);
}
.product-card__code {
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
}
.product-card__size {
	text-align: center;
	font-weight: bold;
}
.product-card__price {
	margin: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.6em;
}
.product-card__btn-to-cart, 
.product-card__btn-to-favourite {
	text-align: center;
}
.product-card__btn-to-cart {
	margin-bottom: 10px;
}
.product-card__btn-to-favourite button {
	background: none;
	outline: none;
	border: none;
	cursor: pointer;
}
.favourite {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url('../images/static/favourite.png');
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.6s;
}
.favourite:hover {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url('../images/static/favourite_active.png');
	background-repeat: no-repeat;
	background-size: contain;
}
.favourite.active {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url('../images/static/favourite_active.png');
	background-repeat: no-repeat;
	background-size: contain;
}
@media (min-width: 768px) {
	.favourite {
		width: 50px;
		height: 50px;
	}
	.favourite:hover {
		width: 50px;
		height: 50px;
	}
	.favourite.active {
		width: 50px;
		height: 50px;
	}
}
@media (min-width: 1200px) {
	.product-card__image {
		border-top-left-radius: 60px;
	}
}
@media (min-width: 1530px) {
	.favourite {
		width: 60px;
		height: 60px;
	}
	.favourite:hover {
		width: 60px;
		height: 60px;
	}
	.favourite.active {
		width: 60px;
		height: 60px;
	}
}
/* product card ends */

/* about us starts */
.about-us {
	padding-top: 10px;
}
@media (min-width: 576px) {
	.about-us {
		padding-top: 20px;
	}
}
@media (min-width: 1200px) {
	.about-us {
		padding-top: 30px;
	}
}
@media (min-width: 1530px) {
	.about-us {
		padding-top: 60px;
	}
}
/* about us ends */

/* watched-products starts */
.watched-products {
	margin-bottom: 30px;
}
.watched-products__image {
	height: 70px;
	transform: translateY(-40px);
}
.watched-products__image img {
	height: 100%;
}
.more-watched {
	margin-top: 15px;
	text-align: right;
}
.more-watched img {
	height: 40px;
}
@media (min-width: 576px) {
	.watched-products__image {
		height: 95px;
		transform: translateY(-50px);
	}
	.more-watched img {
		height: 50px;
	}
}
@media (min-width: 992px) {
	.watched-products__image {
		height: 130px;
	}
	.more-watched img {
		height: 60px;
	}
}
@media (min-width: 1200px) {
	.watched-products__image {
		height: 140px;
	}
	.watched-products__image img {
		height: 100%;
	}
	.more-watched {
		margin-top: 20px;
	}
	.more-watched img {
		height: 70px;
	}
}
@media (min-width: 1530px) {
	.watched-products__image {
		height: 180px;
		transform: translateY(-40px);
	}
	.more-watched {
		margin-top: 30px;
	}
	.more-watched img {
		height: 80px;
	}
}
/* watched-products ends */

/* footer starts */
.footer {
	display: block;
	padding: 30px 0 20px 0;
}
footer {
	width: 100%;
	min-height: 400px;
	background: var(--color-main-pink);
	position: relative;
	color: var(--text-color-white);
}
footer::before {
	content: "";
	display: block;
	width: 100%;
	height: 10px;
	background: var(--color-bg-pink);
	position: absolute;
	top: -10px;
	left: 0;
}
footer::after {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background: url('../images/static/balls-bg-3.png');
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.footer__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
}
.footer__form {
	width: 100%;
	margin-bottom: 15px;
}
.form__title {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 8px;
}
.form__subtitle {
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 8px;
}
.form__fields {
	width: 100%;
}
.form__input {
	width: 100%;
	overflow: hidden;
}
.form__error {
	margin-bottom: 10px;
}
.form__input--border {
	border: 2px solid var(--color-border);
}
.form__input > span {
	padding: 8px 18px;
	background: #ffffff;
	border: none;
}
.form__input input {
	border: none;
	outline: none;
	background: #ffffff;
	padding: 8px 18px;
	width: 100%;
}
.form__input textarea {
	border: none;
	outline: none;
	background: #ffffff;
	padding: 8px 18px;
	width: 100%;
	height: 100px;
	resize: none;
}
.form__input select {
	border: none;
	outline: none;
	background: #ffffff;
	padding: 8px 18px;
	width: 100%;
}
.form__input.form__input--pink select {
	background: var(--color-main-pink);
	color: var(--text-color-white);
	border: 2px solid var(--color-border);
}
.form__input input[type="submit"] {
	text-transform: uppercase;
	font-weight: bold;
	color: var(--text-color-brown);
	font-size: 1.6rem;
	cursor: pointer;
}
.footer__map {
	background: #ffffff;
	width: 100%;
	border: 2px solid #ffffff;
	border-top-left-radius: 40px;
	border-bottom-right-radius: 40px;
	overflow: hidden;
	margin-bottom: 15px;
}
.map {
	width: 100%;
	height: 280px;
}
.map iframe {
	width: 100%;
	height: 100%;
}
.footer__contacts {
	width: 100%;
}
.contacts__title {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 10px;
}
.contacts__list li {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 6px;
}
.contacts__list img {
	width: 16px;
}
.contacts__list span {
	font-weight: bold;
	font-size: 1.2em;
}
.contacts__list li span:first-child {
	margin-right: 10px;
}
.footer__text {
	width: 100%;
	font-weight: bold;
	text-align: center;
	margin: 15px 0;
}
.by-main-page {
    padding-top: 10px;
}
.by-main-page svg {
	height: 18px;
}
@media (min-width: 992px) {
	.footer {
		padding: 30px 0 20px 0;
	}
	footer::after {
		height: 300px;
	}
	.footer__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: stretch;
	}
	.footer__form {
		width: 30%;
		margin-bottom: initial;
	}
	.form__subtitle {
		margin-bottom: 10px;
	}
	.form__fields {
		width: 100%;
	}
	.form__input {
		width: 100%;
		overflow: hidden;
	}
	.form__input textarea {
		height: 140px;
	}
	.form__input input[type="submit"] {
		font-size: 1.8rem;
	}
	.footer__map {
		width: 36%;
		margin-bottom: initial;
	}
	.map {
		width: 100%;
		min-height: 300px;
		height: 100%;
	}
	.footer__contacts {
		width: 25%;
	}
	.contacts__list li {
		margin-bottom: 10px;
	}
	.contacts__list span {
		font-size: initial;
	}
	.contacts__list img {
		width: 18px;
	}
	.footer__text {
		width: 100%;
		font-weight: bold;
		text-align: center;
		margin: 15px 0;
	}
	.by-main-page {
		padding-top: initial;
	}
	.by-main-page svg {
		height: 20px;
	}
}
@media (min-width: 1200px) {
	.footer {
		padding: 60px 0 20px 0;
	}
	footer::after {
		height: 300px;
	}
	.form__title {
		font-size: 2.2rem;
	}
	.form__subtitle {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.form__input input[type="submit"] {
		font-size: 1.8rem;
	}
	.contacts__title {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.footer__text {
		margin: 30px 0;
	}
	.by-main-page svg {
		height: 20px;
	}
}
@media (min-width: 1530px) {
	.by-main-page svg {
		height: 22px;
	}
}
/* footer ends */

/* categories page starts */
.category-title {
	margin: 0 0 15px 0;
}
.category-filters {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.category-filters__inner {
	width: 320px;
}
.pagination {
	margin: 15px 0;
	text-align: center;
}
@media (min-width: 576px) {
	.category-title {
		margin: 15px 0;
	}
	.pagination {
		margin: 20px 0;
	}
}
@media (min-width: 768px) {
	.category-title {
		margin: 30px 0;
	}
}
@media (min-width: 992px) {
	.pagination {
		margin: 30px 0;
	}
}
/* categories page ends */

/* product page starts */
.product-page {
	margin: 30px 0;
	display: flex;
	flex-direction: column;
}
.product-page__swiper {
	width: 100%;
	overflow: hidden;
}
.product-swiper {
	border: 2px solid var(--color-border);
	border-top-left-radius: 40px;
	overflow: hidden;
	background: #ffffff;
}
.product-page__info {
	width: 100%;
}
.product-page__title {
	margin-bottom: 6px;
}
.product-page__code {
	margin-bottom: 30px;
}
.product-page__characteristics {
	margin-bottom: 30px;
}
.product-page__price {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 2.4em;
}
.product-page__count {
	margin-bottom: 30px;
}
.product-page__btns-block {
	display: flex;
	flex-direction: row;
}
.product-page__btn-to-cart {
	margin-right: 30px;
}
.title-delimiter {
	text-align: center;
}
.title-delimiter span {
	width: 80%;
	font-size: 1.2em;
}
@media (min-width: 768px) {
	.product-page {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 30px 0 60px 0;
	}
	.product-page__swiper {
		width: 40%;
	}
	.product-swiper {
		border-top-left-radius: 60px;
	}
	.product-page__info {
		width: 56%;
	}
}
/* product page ends */

/* 404 page starts */
.block-404 {
	margin: 30px 0;
	height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
.title-404 {
	margin-bottom: 15px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14.4rem;
}
.subtitle-404 {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 2.8rem;
	text-align: center;
}
.text-graditude {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 1.8rem;
	text-align: center;
}
@media (min-width: 768px) {
	.title-404 {
		margin-bottom: 30px;
		font-size: 18rem;
	}
	.subtitle-404 {
		margin-bottom: 30px;
		font-size: 4rem;
	}
	.text-graditude {
		margin-bottom: 30px;
		font-size: 2.4rem;
	}
}
/* 404 page ends */

/* cart page starts */
.cart-page {
	margin: 30px 0;
}
.products-lines > div{
	margin-bottom: 30px;
}
.product-line {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}
.product-line__image {
	width: 100px;
	flex: 0 0 auto;
	background: #ffffff;
	border: 2px solid var(--color-border);
	border-top-left-radius: 30px;
	overflow: hidden;
	margin-right: 15px;
}
.product-line__center {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.product-line__center-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 10px;
}
.product-line__center-bottom {
	display: flex;
	flex-direction: column;
}
.product-line__title a {
	font-size: 1.2em;
}
.product-line__counter {
	margin-bottom: 10px;
}
.product-line__price,
.product-line__sum {
	font-weight: bold;
	font-size: 1.2em;
}
.product-line__price {
	margin-bottom: 10px;
}
.product-line__delete {
	margin-left: 10px;
}
.product-line__delete button{
	outline: none;
	background: var(--color-main-pink);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.product-line__delete button svg {
	width: 10px;
	height: 10px;
}
.cart-page__total {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	margin-bottom: 15px;
}
.cart-page__inner {
	font-weight: bold;
}
.cart-page__inner span:first-child {
	font-size: 1.2em;	
	text-transform: uppercase;
	margin-right: 10px;
}
.cart-page__summa {
	background: #ffffff;
	border: 2px solid var(--color-border);
	font-size: 1.4em;
	padding: 6px 18px;
}
@media (min-width: 576px) {
	.product-line {
		align-items: stretch;
	}
	.product-line__image {
		width: 110px;
	}
	.product-line__center-bottom {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
	.product-line__counter {
		margin-bottom: initial;
	}
	.product-line__price {
		margin-bottom: initial;
	}
}
@media (min-width: 768px) {
	.product-line__image {
		width: 120px;
		margin-right: 30px;
		border-top-left-radius: 40px;
	}
}
@media (min-width: 992px) {
	.product-line__image {
		width: 140px;
	}
	.product-line__delete button{
		width: 26px;
		height: 26px;
	}
	.product-line__delete button svg {
		width: 14px;
		height: 14px;
	}
}
@media (min-width: 1200px) {
	.product-line__image {
		width: 150px;
	}
}
@media (min-width: 1530px) {
	.product-line__image {
		width: 160px;
	}
}
/* cart page ends */

/* order page starts */
.order-page {
	margin: 45px 0 30px 0;
	position: relative;
}
.order-page__balls {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	margin: 0 -10px;
	width: calc(100% + 20px);
	height: 100px;
	background: url('../images/static/balls-bg-3.png');
	background-size: cover;
	background-repeat: no-repeat;
}
.orger-page__image {
	padding-top: 30px;
	margin-bottom: 30px;
}
.orger-page__image img {
	margin-left: 10px;
	width: 260px;
}
.order-page__title {
	width: 100%;
	margin-bottom: 10px;
}
.order-page__title > * {
	width: 100%;
	text-transform: uppercase;
}
.order-page__form {
	margin-bottom: 30px;
}
.order-page__make-order {
	text-align: right;
	margin-bottom: 30px;
}
@media (min-width: 576px) {
	.orger-page__image img {
		margin-left: 50px;
		width: 320px;
	}
	.order-page__balls {
		margin: 0 -20px;
		width: calc(100% + 40px);
		height: 100px;
	}
}
@media (min-width: 768px) {
	.order-page__balls {
		margin: 0 -30px;
		width: calc(100% + 60px);
		height: 160px;
	}
}
@media (min-width: 992px) {
	.order-page {
		margin: 60px 0 30px 0;
	}
	.order-page__balls {
		margin: 0 -50px;
		width: calc(100% + 100px);
		height: 200px;
	}
	.orger-page__image img {
		margin-left: 100px;
		width: 500px;
	}
	.order-page__forms {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	.order-page__title {
		margin-bottom: 30px;
	}
	.order-page__form {
		width: 31%;
	}
	.order-page__make-order input {
		width: 31%;
	}
}
@media (min-width: 1200px) {
	.order-page__balls {
		margin: 0 -80px;
		width: calc(100% + 160px);
	}
	.orger-page__image {
		padding-top: 60px;
		margin-bottom: 60px;
	}
	.orger-page__image img {
		margin-left: 160px;
		width: 600px;
	}
}
/* order page ends */

/*accordion css starts*/
.accordion-btn {
	outline: none;
	cursor: pointer;
}
.accordion-sibling-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.8s ease-out;
}
/*accordion css ends*/

/* user page starts */
.user-page {
	margin: 30px 0;
}
.user-history {
	position: relative;
}
.user-history__image {
	padding-top: 30px;
	text-align: center;
	margin: 30px 0;
}
.user-history__image img {
	width: 120px;
}
.user-history__item {
	margin-bottom: 30px;
}
.user-info__btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.user-info__btn img {
	width: 16px;
	transform: rotate(0deg);
	transition: 0.8s ease-out;
}
.user-info__btn.active img {
	transform: rotate(180deg);
}
.user-info__block {
	padding-top: 30px;
}
.user-history__order-details {
	margin: 15px 0;
}
.user-history__order-details > div {
	text-align: right;
	font-size: 1.2em;
	font-weight: bold;
}
.user-info__repeat-btn {
	cursor: pointer;
}
@media (min-width: 576px) {
	.user-history__image img {
		width: 150px;
	}
}
@media (min-width: 768px) {
	.user-history__image img {
		width: 190px;
	}
}
@media (min-width: 992px) {
	.user-history__image img {
		width: 210px;
	}
	.user-history__order-details {
		margin: 30px 0;
	}
}
@media (min-width: 1200px) {
	.user-history__image img {
		width: 230px;
	}
}
/* user page ends */

.page-content {
	margin: 30px 0;
}

/* login page starts */
.login-more {
	margin-top: 30px;
}
.login-more a {
	font-weight: bold;
	transition: 0.6s;
}
.login-more a:hover {
	color: var(--text-color-pink);
}
/* login page ends */











@media (min-width: 576px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
@media (min-width: 1530px) {

}
@media (min-width: 1770px) {

}