@import url("https://fonts.googleapis.com/css2?family=Ysabeau+Infant:wght@300;400;500;600;700;800;900&display=swap");

/* START MY RESET */
:root {
	--black-color: #000;
	--dark-color: #131313;

	--white-color: #fff;
	--light-color: #fcfbfa;

	--grey-color: #414141;
	--light-grey-color: #d9d9d9;

	--container-width: 1400px;
	--section-margin: 120px;
}

* {
	margin: 0;
	padding: 0;
	font-family: "Ysabeau Infant", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
}

*:focus {
	outline: none;
}

html,
body {
	width: 100%;
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;

	background-color: var(--light-color);
	color: var(--dark-color);
}

main {
	flex: auto;
}

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--dark-color);
}
a:focus,
a:hover {
	color: var(--dark-color);
}

strong {
	font-weight: 700;
}

b {
	font-weight: 500;
}

/* p {
  margin: 0;
} */

img {
	width: 100%;
	height: auto;
}

input,
textarea,
select {
	vertical-align: middle;
	padding: 0;
	box-sizing: border-box;
	resize: none;

	border: 1px solid transparent;
	color: #000;
	background-color: transparent;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
	color: #000;
	font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
	color: #4b4b4b;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-background-clip: text;
	-webkit-text-fill-color: #000000;
	transition: background-color 5000s ease-in-out 0s;
	box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
	transition: opacity 0.4s;
}

.hover:hover {
	opacity: 0.5;
}

.container {
	display: block;
	position: relative;
	width: var(--container-width);
	padding: 0;
	margin: 0 auto;
	height: 100%;
}
.container::before,
.container::after {
	display: none !important;
}

body::-webkit-scrollbar {
	width: 12px; /* ширина всей полосы прокрутки */
}

body::-webkit-scrollbar-track {
	background: var(--grey-color); /* цвет зоны отслеживания */
}

body::-webkit-scrollbar-thumb {
	background-color: var(--dark-color); /* цвет бегунка */
	border-radius: 2; /* округлось бегунка */
}

/* END MY RESET */

/* START MY MAIN STYLES */
.burger,
.menu {
	display: none;
}
section {
	overflow: hidden;
}
.section-margin {
	margin-top: var(--section-margin);
}
.paper-texture {
	background-image: url(../image/my-img/paper-texture.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #fff;
}
.underline {
	text-decoration: underline;
	text-decoration-thickness: from-font;
}
.uppercase {
	text-transform: uppercase;
	text-underline-offset: 3px;
}
.hero {
	height: 100vh;
}
.hero__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.hero__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	width: 100%;
}
.hero__logo {
	width: 60%;
}
.hero__title {
	font-size: 28px;
	font-weight: 300;
	line-height: 130%;
	letter-spacing: -1.4px;
	text-align: right;
}
.hero__link {
	position: absolute;
	bottom: -40px;
	left: 0;
	font-size: 18px;
	font-weight: 600;
}
.hero__image {
	width: 40%;
}

.hero__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.hero__text {
	text-align: justify;
	margin-top: 10px;
	font-size: 18px;
	font-weight: 200;
	line-height: 100%; /* 18px */
}
.hero__subtitle {
	font-size: 18px;
	font-weight: 500;
}
.hero__bottom div {
	width: 35%;
}
.banner {
	padding: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
}
.banner__image {
	position: relative;
}
.banner__content {
	padding: 60px 0 100px;
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	width: 100%;
}
.banner__title {
	text-align: center;
	font-size: 48px;
	font-weight: 200;
	letter-spacing: -2.4px;
}
.banner__link {
	font-size: 18px;
	font-weight: 600;
}
.title {
	font-size: 48px;
	font-weight: 200;
	letter-spacing: -2.4px;
}
.catalog__list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 50px;
}
.catalog__image {
	aspect-ratio: 1;
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
}
.catalog__sub_title {
	margin: 10px 0;
	color: var(--black-color);
	font-size: 20px;
	font-weight: 300;
	line-height: 130%;
}
.catalog__link {
	color: var(--grey-color);
	font-size: 18px;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header {
	padding: 18px 0;
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
}
.header__icon {
	width: 21px;
	height: 21px;
}
.header__right {
	display: flex;
	align-items: center;
	gap: 40px;
}
.header__link {
	margin-right: 40px;
	font-weight: 300;
	cursor: pointer;
}
.header-search {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-search input {
	text-transform: uppercase;
	width: 70px;
	background-color: transparent;
}
.header-icons {
	display: flex;
	gap: 10px;
}
.header-icons__link {
	display: block;
	position: relative;
}

.header-dropdown__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header-dropdown__sub_link {
	font-size: 18px;
	color: var(--black-color);
	font-weight: 300;
	line-height: 150%;
	text-transform: capitalize;
	white-space: nowrap;
}
.header-dropdown__left {
	display: flex;
	gap: 150px;
}
.header-dropdown__right {
	width: 25%;
}
.header-dropdown__lists {
	position: relative;
}
.header-dropdown {
	padding: 75px 75px 140px calc((100vw - var(--container-width)) / 2);
	background-color: var(--light-color);
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: -100%;
	opacity: 0;
	z-index: -5;
	pointer-events: none;
	left: 0;
	width: 100%;
	overflow: hidden;
	transition: all 0.6s;
}

.header-dropdown.active {
	top: 0;
	opacity: 1;
	pointer-events: all;
	z-index: 0;
}
.header-dropdown__sub_list {
	position: absolute;
	opacity: 0;
	top: 0;
	z-index: 1;
	transition: all 0.4s;
}
.header-dropdown__sub_list.active {
	opacity: 1;
	z-index: 2;
}
.header-dropdown__link {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--black-color);
}
.header-dropdown__link:hover,
.header-dropdown__link.active {
	font-weight: 600;
}

.my-slider-arrows__item {
	cursor: pointer;
	width: 40px;
	height: 40px;
	padding: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	border-radius: 50%;
}
.my-slider__top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.my-product {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.my-product__image {
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
}
.my-product__title {
	font-size: 18px;
	font-weight: 600;
}
.my-product__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.my-product__icon {
	width: 21px;
	height: 21px;
}
.my-product__icons {
	display: flex;
	gap: 10px;
}
.my-product__price {
	font-size: 18px;
	font-weight: 700;
}
.my-product__tag {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: var(--black-color);
	color: var(--light-color);
}
.my-product__tag span {
	margin: 5px;
	font-size: 14px;
	text-transform: capitalize;
}
.my-slider-arrows__item-next {
	rotate: 180deg;
}
.my-slider-arrows {
	display: flex;
	align-items: center;
	gap: 20px;
}
.my-slider__pagination {
	margin: 40px 0 20px;
	background-color: var(--light-grey-color);
	height: 2px;
}
.instagram__bottom {
	background-color: var(--light-grey-color);
	height: 2px;
}
.my-insta-pagSwiper,
.my-slider__paginationSwiper {
	height: 100%;
}
.swiper-scrollbar-drag {
	background-color: var(--black-color);
}
.my-product__icon {
	cursor: pointer;
}

/*? NEW STYLES ?*/
.my-product-cart__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.my-product-cart__image {
	background-color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
}
.my-product-cart__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.my-product-cart__title {
	font-size: 32px;

	font-weight: 200;
}
.my-product-cart__slug {
	font-size: 18px;

	font-weight: 500;
}
.my-product-cart__rate {
	margin: 10px 0 25px;
	display: flex;
	gap: 10px;
	align-items: center;
}
.rate__number {
	color: var(--grey-color);
	font-size: 18px;
	text-transform: capitalize;
}
.my-product-cart-price {
	display: flex;
	align-items: center;
	gap: 10px;
}
.my-product-cart-price__value {
	font-size: 24px;
	font-weight: 700;
}
.my-product-cart-price__discount {
	text-decoration: line-through;
}
.my-product-cart__isEmpty {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 30px 0;
}
.my-product-cart__isEmpty p {
	color: #38504d;
	font-size: 18px;
	font-weight: 500;
}
.min-cart-summ {
	background: #f7f7f7;
	padding: 10px 15px;

	font-size: 20px;
	font-weight: 600;
}
.my-product-cart__counter {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 30px;
}
.my-product-cart__grey {
	color: #a8a8a8;
	font-size: 18px;
}
.my-product-cart__modal {
	display: flex;
	cursor: pointer;
	gap: 10px;
	align-items: center;
}
.my-product-cart__modal p {
	color: #363636;
	font-size: 20px;
}
.my-product-cart__bottomm {
	margin-top: 45px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.my-product-cart__black {
	font-weight: 600;
	display: inline;
	margin-right: 7px;
}
.my-product-cart__list {
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.my-product-cart__list-row {
	display: flex;
	gap: 10px;
	align-items: center;
}
.my-product-cart__list-img {
	width: 38px;
}
.my-product-cart {
	margin-top: 30px;
}
.my-product-cart__list__right {
	display: flex;
	gap: 10px;
	align-items: end;
}
.my-product-cart__list__right .my-product-cart__grey {
	flex: 1;
}
.transparent {
	color: transparent;
	background-color: transparent;
}
.my-product-cart__counter {
	margin-top: 25px;
}
.my-product-cart {
	margin-bottom: 80px;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.my-breadcrumb {
	display: flex;
	gap: 20px;
}
.my-breadcrumb li {
	position: relative;
}
.my-breadcrumb li:after {
	content: "/";
	top: 0;
	position: absolute;
	right: -12px;
	display: block;
}
button.my-product__link,
button.my-product__icon,
.header-search button {
	background: transparent;
	border: none;
}
#search {
	margin-bottom: 0;
}
.main-margin {
	margin-top: 170px;
	/* margin-top: 70px; */
}
.my-prod-list__inner {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 20px;
}
.my-prod-list__top {
	display: flex;
	justify-content: end;

	margin-bottom: 20px;
}
.my-prod-list__sort {
	width: 30%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.my-prod-list {
	margin-top: 50px;
}
.price-old {
	text-decoration: line-through;
	color: #a8a8a8;
	font-size: 16px;
}
.my-info {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.my-prod-list__bottom {
	margin-top: 30px;
}
/* .btn-default {
  color: var(--dark-color);
  text-shadow: none;
  background: var(--light-grey-color);
  background-image: none;
  background-repeat: repeat-x;
  border-color: none;
  border-radius: 0 !important;
}

.btn-primary {
  color: var(--white-color);
  text-shadow: none;
  background: var(--dark-color);
  background-repeat: repeat-x;
  border-color: var(--dark-color);
  transition: all 0.4s;
  border-radius: 0 !important;
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background: var(--grey-color);
} */

/*! BTN MY */
.btn {
	padding: 12px 30px;
	font-size: 18px;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none;
	transition: all 0.4s;
	text-transform: uppercase;
}
.btn-xs {
	font-size: 14px;
}
.btn-sm {
	font-size: 16px;
}
.btn-lg {
	padding: 12px 90px;
	font-size: 18px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
	font-size: 18px;
}
.btn-group > .btn-xs {
	font-size: 14px;
}
.btn-group > .btn-sm {
	font-size: 16px;
}
.btn-group > .btn-lg {
	font-size: 18px;
}
.btn-default {
	color: #fff;
	text-shadow: none;
	background-color: #000;
	background-image: none;
	background-repeat: repeat-x;
	border-color: transparent;
}
.btn-primary {
	color: #fff;
	text-shadow: none;
	background-color: #000;
	background-image: none;
	background-repeat: repeat-x;
	border-color: transparent;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
	background: #000 !important;
	opacity: 0.6;
	background-position: 0 -15px;
}
.btn-link {
	color: #000;
}
/*! BTN MY END */

.ocf-offcanvas .ocfilter-mobile-handle {
	top: 150px !important;
}
#content {
	min-height: auto;
}
.my-product-cart__input {
	max-width: 120px;
	border: 1px solid #eaeaea;
	padding: 10px 30px;
	font-size: 20px;
	font-weight: 600;
}
/* .my-product-cart__input::-webkit-outer-spin-button,
.my-product-cart__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.my-product-cart__input[type="number"] {
	-moz-appearance: textfield;
} */
.my-product-cart__quantity {
	margin: 25px 0;
	display: flex;
	gap: 20px;
	align-items: center;
}
.my-product-cart__grey p,
.my-product-cart__isEmpty p,
.my-product-cart p,
.my-product-cart__quantity label {
	margin: 0;
}
.my-prod-tab__list {
	display: flex;
	gap: 20px;
}
.my-prod-tab li {
	font-size: 20px;
	font-weight: 200;
}
.my-prod-tab li.active {
	text-decoration: underline;
}
.my-prod-tab .tab-pane {
	font-size: 18px;
}
.about-hero__image {
	margin: 50px auto 30px;
	display: block;
	width: 60%;
}
.about-hero__title {
	color: var(--dark-color);
	font-size: 32px;
	font-weight: 200;
	text-align: center;
	margin-bottom: 30px;
}
.about-hero__images {
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.about-customer__image {
	position: absolute;
	bottom: -50px;
	left: -150px;
	z-index: 1;
}
.about-customer__item img {
	z-index: 2;
}
.about-customer__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}
.about-customer__item {
	display: flex;
	flex-direction: column;
	z-index: 2;
	position: relative;
}
.about-customer {
	overflow: visible;
}
.about-customer__text {
	font-size: 18px;
	font-weight: 300;
}
.about-customer__text-big {
	font-size: 24px;
	font-weight: 500;
}
.about-customer__item:last-child {
	align-self: flex-end;
}
.instagram__top {
	margin-bottom: 24px;
}
.my-instaSwiper .swiper-slide {
	aspect-ratio: 1;
}
.my-instaSwiper .swiper-slide img {
	height: 100%;
	object-fit: cover;
}
.instagram {
	margin-bottom: 150px;
}
.instagram__bottom {
	margin-top: 20px;
}
.contact-section {
	margin-top: 50px;
	margin-bottom: 100px;
}
.contact-section__inner {
	display: grid;
	grid-template-columns: 4fr 5fr;
	gap: 100px;
}
.contact-section__item {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;
}
.contact-section__text {
	margin: 20px 0 40px;
}
.contact-section__black {
	color: var(--dark-color);
}
.input__wrap {
	width: 100%;
	margin-bottom: 20px;
}
.form__btn {
	margin-top: 20px;
}
.contact-section__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.contact-section__column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-section__it {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contact-section__grey {
	color: #bfbfbf;
	font-size: 14px;
	font-weight: 200;
}
.contact-section__phone {
	margin-top: 5px;
}
.contact-section-social {
	display: flex;
	gap: 40px;
}
.contact-section-social__item {
	font-size: 20px;
	color: var(--dark-color);
}
.contact__input {
	border: 1px solid transparent;
	box-shadow: none;
	border-bottom: 1px solid;
	width: 100%;
	border-radius: 0;
	padding: 10px 0;
}
.footer {
	padding: 70px 0 50px;
	margin: 0;
	border: none;
	background: none;
	color: #000;
}
.footer__bottom {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
}
.footer__list {
	display: flex;
	flex-direction: column;
}
.footer__list-10 {
	gap: 10px;
}
.footer__list-15 {
	gap: 15px;
}
.footer__link {
	font-weight: 300;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #000;
}
footer a:hover {
	color: #000;
}
.footer__form {
	width: 100%;
}

.footer__title {
	font-size: 20px;
	margin-bottom: 15px;
}
.footer__text {
	margin-bottom: 40px;
	font-weight: 300;
}
.noUi-connect {
	background: #000000 !important;
	box-shadow: none !important;
}
.ocfilter-option label small {
	background-color: #000000 !important;
	color: #ffffff !important;
}
.my-product-category__description {
	font-size: 18px;
}
.my-register__title {
	font-size: 32px;
}
.my-register__text {
	font-weight: 300;
	margin-bottom: 20px;
}
.my-register {
	padding: 100px 0;
}

/* why us section */
.why-us {
	height: min-content;
}

.why-us__inner {
	padding: 120px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.why-us__l {
	display: flex;
	flex-direction: column;
}
.why-us__title {
	color: #131313;
	font-family: "Ysabeau Infant";
	font-size: 48px;
	font-style: normal;
	font-weight: 200;
	line-height: 130%; /* 62.4px */
	letter-spacing: -2.4px;
	text-transform: uppercase;
	position: relative;
	margin-right: 10px;
}
.why-us__title::before {
	content: "";
	background-color: #000;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: -22px;
	transform: translateY(-50%);
}

.why-us__title-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-end;
	max-width: 475px;
}
.why-us__text {
	color: #131313;
	text-align: justify;
	font-family: "Ysabeau Infant";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}
.why-us__text .why-us__nbsp {
	display: inline-block;
	width: 45%;
}
.why-us__images {
	margin-top: 15px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.why-us__img1 {
	width: 291px;
	height: 342px;
}
.why-us__img2 {
	margin-top: -170px;
	width: 285px;
	height: 342px;
	align-self: flex-end;
}
.why-us__r {
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.why-us__grid {
	display: grid;
	grid-template: 1fr 1fr / 1fr 1fr;
	max-width: 684px;
	width: 100%;
	position: relative;
}
.why-us__grid-center {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.why-us__grid-center svg {
	width: 100%;
	height: 100%;
}
:root {
	--why-us-vertical: 42px;
	--why-us-side: 30px;
}
.why-us__card {
	display: flex;
	gap: 10px;
}
.why-us__card1 {
	padding-bottom: var(--why-us-vertical);
	padding-right: var(--why-us-side);
}
.why-us__card2 {
	padding-bottom: var(--why-us-vertical);
	padding-left: var(--why-us-side);
}
.why-us__card3 {
	padding-top: var(--why-us-vertical);
	padding-right: var(--why-us-side);
}
.why-us__card4 {
	padding-top: var(--why-us-vertical);
	padding-left: var(--why-us-side);
}

.why-us__card-num,
.why-us__card-title {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	text-transform: uppercase;
	margin-top: 0;
}
.why-us__card-content {
	max-width: 282px;
}
.why-us__card-text {
	margin-top: 20px;
	color: #131313;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 19.8px */
}
.why-us__link {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	text-transform: uppercase;
	transition: opacity 0.5s;
}
.why-us__link:hover {
	opacity: 0.6;
}

.cross__hor,
.cross__vert {
	position: absolute;
	top: 0;
	left: 0;
}
.cross__vert {
	height: 100%;
	width: 2px;
	background-color: #d9d9d9;
	left: 50%;
	transform: translateX(-50%);
}
.cross__hor {
	width: 100%;
	height: 2px;
	background-color: #d9d9d9;
	top: 50%;
	transform: translateY(-50%);
}

.why-us__doub {
	max-width: 490px;
}
/* why us section */
/* modals */
.mk-modal {
	z-index: -10;
	opacity: 0;
	background: rgba(0, 0, 0, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	transition: all 0.3s;
}
.mk-modal.active {
	z-index: 1000;
	opacity: 1;
}
.modal-content {
	border-radius: 20px;
	background: #fcfbfa;
	padding: 40px;
	position: relative;
}
.closeModal-js {
	position: absolute;
	right: 20px;
	top: 20px;
}
.modal-title {
	color: #bfbfbf;
	font-family: "Ysabeau Infant";
	font-size: 16px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	margin-bottom: 10px;
	display: block;
}
.modal-content__self {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.phone_modal .modal-content__self {
	display: grid;
	grid-template-columns: auto auto;
	column-gap: 80px;
	row-gap: 15px;
}
.address_modal .modal-content__self {
	max-width: 180px;
}

.modal-black-text {
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}
.closeModal-js {
	cursor: pointer;
}
.phone__modal-link {
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%; /* 23.4px */
}
/* modals */

/* cart styling */
.mk-table {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mk-table thead tr {
	width: 100%;
	padding-bottom: 10px;
	border-bottom: 1px solid #eaeaea;
	display: grid;
	grid-template-columns: 123px 1fr 1fr 1fr 1fr 1fr 1.3fr;
	gap: 30px;
}
.mk-table thead tr td {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 14px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	text-align: center;
}
.mk-table tbody {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mk-table__row {
	border-bottom: 1px solid #eaeaea;
	padding: 10px 0px;
	display: grid;
	grid-template-columns: 123px 1fr 1fr 1fr 1fr 1fr 1.3fr;
	gap: 30px;
	align-items: center;
}
.mk-cart-btn-group button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f7f7f7;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	outline: none;
}
.mk-cart-btn-group {
	display: flex;
	gap: 15px;
	align-items: center;
	justify-content: flex-end;
}
.mk-table__row img {
	width: 123px;
	height: 123px;
	object-fit: cover;
}
.mk-table thead tr td.name-placeholder {
	text-align: left;
}
.mk-table__row td {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.mk-table__row td.total-price {
	font-weight: 600;
}

.mk-table__row .input-group {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mk-table__row .input-group input {
	max-width: 136px;
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.mk-table__wrap {
	margin-top: 50px;
}
.mk-bottom-btns {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.mk-total-table {
	max-width: 450px;
	margin-left: auto;
}
/* cart styling */

/* checkout styles */
div.quickcheckout-content {
	padding: 0;
	border: none;
	background: transparent;
}

div#payment-address div.quickcheckout-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 20px;
}
div#payment-address label {
	display: none;
}
div#payment-address {
	max-width: 473px;
}
div#payment-address div.quickcheckout-content input,
div#payment-address div.quickcheckout-content input::placeholder {
	color: #4b4b4b;
	font-family: "Ysabeau Infant";
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%;
	border: none;
	outline: none;
	border-radius: unset;
	box-shadow: none;
	background: transparent;
	height: auto;
}
div#payment-address div.quickcheckout-content input {
	color: #000;
	padding: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #848484;
}
div#payment-address div.quickcheckout-content > div {
	padding: 0;
}
.qc-step {
	margin-bottom: 30px;
}
.mk-checkout-shipping {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.mk-checkout-label {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin: 0;
}
.mk-checkout-input {
	width: 15px;
	height: 15px;
	margin: 0px !important;
	accent-color: #000000;
}
.shipping-method {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
#totals-wrap b {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 14px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
}
#totals-wrap span {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
#totals-wrap .total-wrap {
	padding: 15px 0;
	border-bottom: 1px solid #eaeaea;
}
.mk-quickcheckout-table .mk-quickcheckout-body td.image img {
	width: 123px;
	border: none;
}
.mk-quickcheckout-body tr td {
	place-content: center;
	text-align: center !important;
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.mk-quickcheckout-table .mk-quickcheckout-body td {
	border: none;
}
table.quickcheckout-cart.mk-quickcheckout-table {
	background-color: transparent;
	border: none;
	margin-bottom: 0;
}
.quickcheckout-cart.mk-quickcheckout-table thead td {
	background-color: transparent;
	border-bottom: 1px solid #eaeaea;
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 14px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	text-align: center !important;
}
.mk-quickcheckout-body tr td.name,
.quickcheckout-cart.mk-quickcheckout-table thead td.name {
	text-align: left !important;
}
.quickcheckout-cart.mk-quickcheckout-table thead td.total {
	text-align: right !important;
}
.mk-quickcheckout-table .mk-quickcheckout-body td.total {
	font-weight: 600;
	text-align: right !important;
}
.quickcheckout-cart.mk-quickcheckout-table thead td.image {
	opacity: 0;
}
.mk-quickcheckout-body tr {
	padding: 10px 0;
	border-bottom: 1px solid #eaeaea;
}
/* checkout styles */

ul.pagination > li > a,
ul.pagination > li > span {
	color: #000000;
}
ul.pagination > .active > span {
	background-color: #000;
	pointer-events: none;
}
.quickcheckout-content label {
	font-size: 16px;
}
span.mk-cart-total {
	position: absolute;
	top: -5px;
	right: -4px;
}
.payment-instruction {
	width: 100%;
	background-color: #d1d1d1;
	padding: 10px;
	border-radius: 10px;
	display: none;
}
.payment-instruction.active {
	display: block;
}

/* start information text styles */
.information-text p,
.information-text__text {
	margin: 0;
	padding: 0;
	font-family: "Ysabeau Infant", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
}

.information-text__block {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.information-text h2,
.information-text__heading {
	margin: 0;
	padding: 0;
	font-family: "Ysabeau Infant", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
}
.information-text__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style-type: "- ";
	list-style-position: inside;
}
.information-text a,
.information-text__link {
	margin: 0;
	padding: 0;
	font-family: "Ysabeau Infant", sans-serif;
	font-weight: 800;
	font-style: normal;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	color: #000;
}
.information-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0;
	padding: 0;
	font-family: "Ysabeau Infant", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
}
/* start information text styles */

/* start Simple module customization */
#simple_login_header > img {
	width: auto;
	height: auto;
}
.simple__mk-title {
	margin-bottom: 40px;
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 32px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	text-transform: uppercase;
}
.simple-content .simplecheckout .checkout-heading {
	background-color: transparent;
	border: none;
	padding: 0px;
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	max-width: 475px;
}
#simplecheckout_payment_form h2,
.simple-content .simplecheckout .checkout-heading > span {
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
#simplecheckout_payment label,
#simplecheckout_shipping label {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 16px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}
.simplecheckout-button-block {
	background: transparent !important;
}

.simplecheckout-cart .input-group-btn {
	display: none;
}
div.simplecheckout-warning-block {
	color: #000;
	font-size: 18px;
	font-weight: 600;
}
.select2.select2-container {
	width: 100% !important;
}
#simplecheckout_shipping_address .simplecheckout-block-content,
#simplecheckout_customer .simplecheckout-block-content {
	max-width: 470px;
}
.simplecheckout-block-content .form-group {
	display: flex;
	align-items: center;
}
.simplecheckout-block-content .form-group .control-label {
	width: 120px;
	overflow: hidden;
	color: #272727;
	font-family: "Ysabeau Infant";
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%; /* 18.2px */
	text-align: left;
}
.simplecheckout-block-content .form-group .control-label::before {
	display: none;
}
.simplecheckout .simplecheckout-cart th,
.simplecheckout .simplecheckout-cart th > span {
	color: #000;
	font-family: "Ysabeau Infant";
	font-size: 14px;
	font-style: normal;
	font-weight: 200 !important;
	line-height: normal;
	border: none;
}
table.simplecheckout-cart {
	border: none !important;
}
.simplecheckout-cart td.image img {
	width: 123px;
}
.simplecheckout-cart tr {
	border-bottom: 1px solid #eaeaea;
	background: transparent;
	padding-bottom: 10px;
}
.simplecheckout .simplecheckout-cart th {
	background: transparent;
}

.simplecheckout-cart-total#total_sub_total,
.simplecheckout-cart-total#total_shipping,
.simplecheckout-cart-total#total_total {
	border: none;
	border-bottom: 1px solid #eaeaea;
}
.simplecheckout .form-group .input-group-btn button.btn {
	padding: 0;
	font-size: 12px;
	height: 34px;
	padding: 0px 10px;
}
@media screen and (max-width: 768px) {
	.simple-content .simplecheckout .checkout-heading {
		max-width: 100%;
	}
	#simplecheckout_shipping_address .simplecheckout-block-content,
	#simplecheckout_customer .simplecheckout-block-content {
		max-width: 100%;
	}
	.form-group div.col-sm-8 {
		flex: 1;
	}
	.simple__mk-title {
		margin-top: 25px;
		font-size: 24px;
	}
	.select2-container .select2-selection--single .select2-selection__rendered {
		width: calc(90%);
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 10px;
	}
}
/* end Simple module customization */

.mk-forgot-pass {
	display: block;
	width: 100%;
	text-align: left;
}
.mk-forgot-pass,
div#simple_login_header {
	padding-bottom: 5px;
}

/* mkey product input */
.my-product-cart__quantity-input {
	display: flex;
	align-items: stretch;
	gap: 2px;
}
.my-product-cart__quantity-input .quantity-btn {
	font-size: 16px;
	padding: 12px 20px;
}
.my-product-cart__quantity-input .my-product-cart__input {
	padding: 12px 20px;
}
/* mkey product input */

.toast-notify {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1055;
	background-color: #28a745;
	color: white;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-20px);
}

.toast-notify.show {
	opacity: 1;
	transform: translateY(0);
}

.toast-notify a {
	font-weight: 800;
	color: var(--light-color);
}

.swiper-wrap {
	width: 100%;
	max-width: 470px;
}
.swiper-wrap img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.swiper-thumbs-wrap {
	width: fit-content;
	margin-top: 30px;
	max-width: 100%;
	padding: 10px;
}
.my-product-cart__image {
	flex-direction: column;
}
.swiper-thumbs .swiper-slide {
	width: 96px;
	height: 96px;
	border: 1px solid #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-thumbs .swiper-slide img {
	width: 80%;
	height: auto;
	object-fit: contain;
}

.my-product__quantity {
	display: inline-flex;
	align-items: center;
	margin-bottom: 10px;
}

.my-product__quantity input[type="number"] {
	width: 50px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 32px;
	font-size: 16px;
	margin: 0 5px;
	-moz-appearance: textfield; /* Убирает стрелки в Firefox */
}

.my-product__quantity input[type="number"]::-webkit-inner-spin-button,
.my-product__quantity input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none; /* Убирает стрелки в Chrome */
	margin: 0;
}

.qty-btn {
	background-color: #333;
	color: #fff;
	border: none;
	width: 32px;
	height: 32px;
	font-size: 20px;
	line-height: 28px;
	cursor: pointer;
	border-radius: 4px;
	user-select: none;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease;
}

.qty-btn:hover {
	background-color: #555;
}
.my-product__sku {
	font-size: 14px;
	margin: 0;
	color: #a8a8a8;
	font-weight: 500;
}

#product-compare .img-thumbnail {
	max-width: 335px;
}
