.inter-normal {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
* {
	color: #000;
	margin: 0;
	font-size: 18px;
}
body {
	background: #f0f0ef;
}
h1, h2, h3 {
	font-weight: 700;
}
h1 {
	font-size: 48px;
	margin-bottom: 40px;
}
h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 40px;

}
h3 {
	font-size: 28px;
	font-weight: 500;
}
a {
	text-decoration: none;
}
.header {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
section {
	margin-bottom: 40px;
}
.container {
	width: 100%;
	height: 100%;
	max-width: 1280px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header__inner {
	width: 100%;
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.header__inner-left {
	width: 8%;
}
.header__inner-right {
	width: 10%;
}
.header__inner-center {
	width: 50%;
}
.logo > img {
	width: 100%;
}
.menu {
	font-size: 16px;
}
.menu__list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
}
.menu__item {
	list-style: none;
}
.menu__link {
	text-decoration: none;
}
.menu__link:hover {
	border-bottom: 3px solid #000;
}
.header__inner-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__link {
	text-decoration: none;
}
.header__link > img {
	width: 40px;
}
.main {
	width: 100%;
	min-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.main__section {
	background-image: url('../img/main-bg.png');
	background-size: cover; /* Растянуть картинку на весь блок */
	background-position: center; /* Центрировать */
	background-repeat: no-repeat; /* Не повторять картинку */
	width: 100%;
	height: 80vh;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main__section-inner {
	width: 50%;
	height: 50%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	/* From https://css.glass */
	background: rgba(255, 255, 255, 0.7);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.main__block-h1 {
	color: #41534c;
	font-size: 60px;
	margin-bottom: 0;
}
.main__block-p {
	text-align: center;
}
.button {
	text-decoration: none;
	width: 150px;
	padding: 10px;
	border-radius: 25px;
	text-align: center;
	font-weight: 700;
	color: #fff;
	/* From https://css.glass */
	background: rgba(65, 83, 76, 1);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(65, 83, 76, 0.3);
}
.main__products__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main__products__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-bottom: 3px solid #000;
	border-radius: 16px 16px 0 0;
}
.main__product-content {
	width: 100%;
	max-width: 100%;
	height: 150px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.main__product-title {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 20px;
}
.main__product-link {
	width: 230px;
}
.benefits__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.benefits__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.benefits__blocks {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.benefits__block {
	width: 100%;	
	display: flex;
	flex-direction: column;
	align-items: center;		
}
.benefits__content {
	width: 100%;
	max-width: 100%;
	height: 180px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;	
}
.benefits_title {
	font-size: 20px;
	font-weight: 700;
}
.benefits_img {
	display: flex;	
	justify-content: center;	
	height: 100px;	
}
.form__section {
	background-image: url('../img/form-bg.png');
	background-size: cover; /* Растянуть картинку на весь блок */
	background-position: center; /* Центрировать */
	background-repeat: no-repeat; /* Не повторять картинку */
	width: 100%;
	height: 80vh;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form__section-inner {
	width: 70%;
	height: 70%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	/* From https://css.glass */
	background: rgba(0, 0, 0, 0.65);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(0, 0, 0, 0.3);
}
.form__section-inner {
	text-align: center;
}
.form__block-h2 {
	font-size: 30px;
	color: #fff;
}
.form__block-p {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
.form-link {
	width: 100%;
	cursor: pointer;
	margin-top: 40px;
	box-shadow: 0 4px 30px rgba(255, 255, 255, 0.25);
}
form {
	width: 75%;
	height: 60%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
label {
	color: #fff;
}
input {
	width: 50%;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 700;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(65, 83, 76, 0.3);
}
.faq__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.faq__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
#parent {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.faq__block {
	margin-bottom: 10px;
	    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 3px solid rgba(65, 83, 76, 0.3);
}
.faq__block .faq__link {
	display: block;
	position: relative;
	padding: 10px;
	color: #000;
	font-size: 20px;
	font-weight: 600;
	text-decoration: none;
	background: #f8f8f8;
	cursor: pointer;
	    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.faq__link::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background-image: url("../img/eye-closed.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.faq__link.active::after {
  background-image: url("../img/eye-open.png");
}
.faq__block .faq__link:hover a {
	background: #f2f2f2;
}

.faq__block:not(.active) .faq__text {
	display: none;
}
.faq__block .faq__text {
	border-top: none;
	padding: 10px;
	height: auto;
}

.footer {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 3px solid #000;
}
.footer__inner {
	width: 100%;
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.footer__inner-left {
	width: 18%;
}
.footer__inner-right {
	width: 8%;
}
.footer__inner-center {
	width: 50%;
}
.news__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.news__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.news-content {
	width: 100%;
	max-width: 100%;
	height: 150px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.news-title {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 20px;
}
.news-price {
display: -webkit-box;        /* Включаем flexbox */
  -webkit-line-clamp: 2;       /* Количество строк */
  -webkit-box-orient: vertical;/* Вертикальная ориентация */
  overflow: hidden;            /* Скрытие лишнего */
}
.news-link {
	width: 250px;
}
.news-blocks {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 16px;
	width: 100%;
	flex-wrap: wrap;
}

.news-blocks img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-bottom: 3px solid #000;
	border-radius: 16px 16px 0 0;
}
.news-block {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	margin-bottom: 40px;
}
.new__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.new__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.new-main-blocks>* {
	margin-bottom: 20px;
}
.new-main-blocks>img {
	width: 100%;
}
.contacts__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.contacts__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.contacts__blocks {
	width: 100%;
	min-height: 55vh;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.contacts__left, .contacts__right {
	width: 48%;
	height: 507px;
	background-color: #000;
	  background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 3px solid rgba(65, 83, 76, 0.3);
}
.map {
	border-radius: 16px;
}
.contacts__left {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 10px;
}
.contacts-h2 {
	font-size: 30px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.contacts__blocks p {
	font-size: 16px;
	margin-bottom: 10px;
}
.contacts__left > div {
	display: flex;
	width: 31%;
	flex-direction: column;
}
.cat__section {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cat__section-inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.cat-content {
	width: 100%;
	max-width: 100%;
	height: 150px;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.cat-title {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 20px;
}
.cat-price {
display: -webkit-box;        /* Включаем flexbox */
  -webkit-line-clamp: 2;       /* Количество строк */
  -webkit-box-orient: vertical;/* Вертикальная ориентация */
  overflow: hidden;            /* Скрытие лишнего */
}
.cat-link {
	width: 250px;
}
.cat-blocks {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 16px;
	width: 78%;
	flex-wrap: wrap;
	margin-bottom: -40px;
}

.cat-blocks img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-bottom: 3px solid #000;
	border-radius: 16px 16px 0 0;
}
.cat-block {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 16px;
	margin-bottom: 40px;
}
.category__img-block {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 40px;
}
.category__img-block>img {
	width: 100%;
	object-fit: cover;
}
.catalog__inner {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
}
.catalog-seo {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.catalog-seo__inner {
	width: 100%;
	max-width: 100%;
	padding: 32px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	box-sizing: border-box;
}

.catalog-seo__title {
	margin-bottom: 24px;
	font-size: 32px;
	line-height: 1.2;
	color: #41534c;
}

.catalog-seo__content {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.catalog-seo__content p {
	margin: 0;
	font-size: 17px;
	line-height: 1.7;
	color: #222;
}
.aside {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 28%;
	margin-right: 20px;
	height: 92vh;
	background: #fff;
	position: sticky;
	top: 0;
	left: 0;
	scroll-behavior: smooth;
	padding: 24px 20px;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	overflow-y: scroll;
}

.aside__links {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.aside__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 16px;
	background: #f7f7f5;
	border: 1px solid rgba(65, 83, 76, 0.15);
	border-radius: 14px;
	font-weight: 600;
	transition: 0.25s ease;
	box-sizing: border-box;
}

.aside__link:hover {
	background: #41534c;
	color: #fff;
	transform: translateX(4px);
}

.aside__link.active {
	background: #41534c;
	color: #fff;
	border-color: #41534c;
}

.aside__h3 {
	margin-bottom: 18px;
}
.catalog-filter {
	width: 100%;
	padding-top: 10px;
	border-top: 1px solid rgba(65, 83, 76, 0.12);
}

.catalog-filter__top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	gap: 12px;
}

.catalog-filter__reset {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #41534c;
	padding: 0;
}

.catalog-filter__form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.catalog-filter__group {
	width: 100%;
	background: #f7f7f5;
	border: 1px solid rgba(65, 83, 76, 0.12);
	border-radius: 16px;
	padding: 16px;
	box-sizing: border-box;
}

.catalog-filter__toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: transparent;
	border: none;
	padding: 0;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	text-align: left;
	position: relative;
}

.catalog-filter__toggle::after {
	content: "+";
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #41534c;
}

.catalog-filter__content {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-filter {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.price-filter__inputs {
	display: flex;
	gap: 12px;
}

.price-filter__field {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.price-filter__field label {
	color: #000;
	font-size: 14px;
	font-weight: 600;
}

.price-filter__field input {
	width: 100%;
	box-sizing: border-box;
	font-size: 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid rgba(65, 83, 76, 0.18);
	box-shadow: none;
}

.price-filter__range {
	position: relative;
	height: 6px;
	background: rgba(65, 83, 76, 0.12);
	border-radius: 999px;
	overflow: hidden;
}

.price-filter__range-line {
	position: absolute;
	left: 20%;
	right: 20%;
	top: 0;
	bottom: 0;
	background: #41534c;
	border-radius: 999px;
}

.filter-check {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	position: relative;
}

.filter-check input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}

.filter-check__box {
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 6px;
	border: 2px solid rgba(65, 83, 76, 0.35);
	background: #fff;
	position: relative;
	transition: 0.2s ease;
	box-sizing: border-box;
}

.filter-check__text {
	font-size: 16px;
	line-height: 1.35;
}

.filter-check input:checked + .filter-check__box {
	background: #41534c;
	border-color: #41534c;
}

.filter-check input:checked + .filter-check__box::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.catalog-filter__actions {
	margin-top: 6px;
}

.catalog-filter__submit {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	cursor: pointer;
}
.product-page {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-page__inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 32px;
}

.product-page__left {
	width: 58%;
}

.product-page__right {
	width: 42%;
}

.product-gallery {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-gallery__img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
}

.product-card {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	padding: 28px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-card__article {
	font-size: 16px;
	color: #5e665d;
	margin-bottom: 16px;
}

.product-card__title {
	font-size: 48px;
	line-height: 1.1;
	margin-bottom: 18px;
}

.product-card__price {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 30px;
}

.product-card__options {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-bottom: 32px;
}

.product-card__option {
	width: 100%;
}

.product-card__label {
	font-size: 20px;
	margin-bottom: 12px;
}

.product-card__value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	background: #000;
	color: #fff;
	font-weight: 600;
	border-radius: 12px;
}

.product-qty {
	display: inline-flex;
	align-items: center;
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	overflow: hidden;
}

.product-qty__btn {
	width: 48px;
	height: 48px;
	border: none;
	background: #fff;
	font-size: 26px;
	cursor: pointer;
}

.product-qty__input {
	width: 70px;
	height: 48px;
	border: none;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	background: #fff;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
}

.product-card__actions {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 28px;
}

.product-card__btn {
	width: 100%;
	min-height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
	padding: 14px 18px;
}

.product-card__btn--primary {
	background: #41534c;
	color: #fff;
	border: 1px solid rgba(65, 83, 76, 0.3);
}

.product-card__btn--dark {
	background: #000;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.3);
}

.product-card__desc {
	width: 100%;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.product-card__desc p {
	font-size: 22px;
	line-height: 1.5;
}

.cart-page {
	width: 100%;
	min-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-page__inner {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.cart-page__title {
	margin-bottom: 32px;
}

.cart-page__layout {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
}

.cart-page__items {
	width: 68%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cart-item {
	width: 100%;
	display: flex;
	gap: 20px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	padding: 20px;
	box-sizing: border-box;
}

.cart-item__image {
	width: 220px;
	min-width: 220px;
	height: 220px;
	border-radius: 14px;
	overflow: hidden;
	background: #f7f7f5;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item__content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 18px;
}

.cart-item__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}

.cart-item__article {
	font-size: 14px;
	color: #6b726a;
	margin-bottom: 10px;
}

.cart-item__title {
	font-size: 30px;
	margin-bottom: 0;
	line-height: 1.2;
}

.cart-item__remove {
	background: transparent;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #a33;
	padding: 0;
}

.cart-item__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.cart-item__meta p,
.cart-item__meta span {
	font-size: 16px;
}

.cart-item__meta span {
	font-weight: 700;
}

.cart-item__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(65, 83, 76, 0.12);
	flex-wrap: wrap;
}

.cart-item__label {
	font-size: 14px;
	color: #6b726a;
	margin-bottom: 8px;
}

.cart-item__price,
.cart-item__sum {
	font-size: 24px;
	font-weight: 700;
}

.cart-summary {
	width: 32%;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
	border: 3px solid rgba(65, 83, 76, 0.15);
	padding: 24px;
	box-sizing: border-box;
	position: sticky;
	top: 20px;
}

.cart-summary__title {
	font-size: 32px;
	margin-bottom: 24px;
}

.cart-summary__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	gap: 16px;
}

.cart-summary__row--total {
	padding-top: 18px;
	margin-top: 18px;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.cart-summary__row--total span {
	font-size: 28px;
	font-weight: 700;
}

.cart-summary__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
}

.cart-summary__btn {
	width: 100%;
	min-height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 14px;
	font-weight: 700;
	padding: 14px 16px;
	box-sizing: border-box;
}

.cart-summary__btn--light {
	background: #fff;
	border: 1px solid rgba(65, 83, 76, 0.18);
	color: #000;
}

.cart-summary__btn--dark {
	background: #41534c;
	border: 1px solid rgba(65, 83, 76, 0.3);
	color: #fff;
}