.product-catalog__title {
	text-align: center;
	font-weight: bold;
	margin-top: 10px;
}

.product-catalog__photo {
	padding-bottom: 90%;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
}
.blog-single__text a {
	color: #CCB188;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.section-subcat {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.product-catalog__desc {
	text-align: left;
	padding-inline: 10px;
	margin-top: 10px;
}

.product-catalog__footer {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	flex-direction: column;
}
.product-catalog__footer button {
	max-width: 100%;
	width: 100%;
}

.section-products__prosucts {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
@media (max-width: 991.98px) {
	.section-products__prosucts {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767.98px) {
	.section-products__prosucts {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 30px;
	}
	.product-catalog__desc {
		padding: 0;
	}
}
.card-product__button {
	color: #CCB188;
	background-color: #fff;
	border: 1px solid transparent;
	margin-bottom: 7px;
	margin-top: 15px;
	border: 1px solid #CCB188;
}
.card-product__button:hover {
	background-color: #CCB188;
	color: #fff;
}
/* Корзина - custom-cart.php */

.cart-container__cards {
	margin-top: 30px;
	background-color: white;
	padding: 20px;
	border-radius: 20px;
}
.cart-container__card {
	padding: 15px 30px 15px 15px;
	display: flex;
	gap: 3%;

	border-radius: 15px;
	border: 1px solid #CCB18859;
}
.card__image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-bottom: 50px;
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 5px;
	overflow: hidden;
}
.cart-container__totals-count,
.cart-container__totals-summ {
	font-size: 18px;
}
.cart-container__totals {
	margin-top: 30px;
	background-color: white;
	padding: 20px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.cart-container__totals-title {
	font-size: 30px;
	text-transform: uppercase;
	color: #CCB188;
	font-weight: 500;
	margin-bottom: 10px;
}
.cart-container__wrapper {
	display: grid;
	grid-template-columns: auto 25%;
	gap: 30px;
}
.cart-container__actions {
	width: 100%;
}
.cart-container__totals-summ {
	width: 100%;
}

.card__info {
	padding-bottom: 30px;
	display: grid;
	grid-template-columns: auto 17% 15% 17%;

	align-items: flex-start;
	gap: 2%;
	width: 100%;
	position: relative;
}

.remove-item-button {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #b63b3b;
	position: absolute;
	bottom: 0;
	right: 0px;
}
.remove-item-button img {
	max-width: 35px;
}
.card__info-item_name {
	font-size: 21px;
	font-weight: 700;
	text-align: left !important;
}
.card__info-item_name:hover {
	color: #CCB188;
}
.card__info-item_more {
	color: #CCB188;
	text-align: left;
	margin-top: 20px;
}
.card__info-item_more:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.quantity-input {
	text-align: center;
	width: 50px;
	height: 50px;
	font-size: 20px;
	border: 1px solid #CCB1887d;
	border-radius: 7px;
	font-size: 20px;
}
.quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.quantity-button {
	font-size: 50px;
	font-weight: 500;
	line-height: 1;
	color: #CCB188;
}
.quantity-increase {
	font-size: 40px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
	appearance: textfield;
}
.cart-container__header {
	display: grid;
	grid-template-columns: auto 10.7% 14% 14%;
	gap: 2%;
}
.cart-container__header {
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.cart-container__back {
	display: flex;
	align-items: center;
	margin-top: 30px;
	gap: 10px;
	font-size: 20px;
	margin-bottom: 25px;
}
.cart-container__back:hover {
	color: #CCB188;
}
.cart-container__back:hover svg path {
	stroke: #CCB188;
}
.cart-container__back svg {
	transform: scale(-1, 1);
}
.card__info-left {
	display: flex;
	flex-direction: column;
	text-align: left;
	align-items: flex-start;
}
.card__info-item .product-subtotal,
.card__info-item .product-price {
	font-size: 22px;
	position: relative;
	top: 15px;
	font-weight: 700;
}
.card__info-item {
	text-align: center;
}
@media (max-width: 84.375em) {
	.card__image {
		width: 100px;
		height: 100px;
	}
	.quantity-input {
		width: 40px;
		height: 40px;
	}
	.cart-container__header {
		font-size: 15px;
	}
	.card__info-item .product-subtotal,
	.card__info-item .product-price {
		font-size: 20px;
	}
	.card__info-item_name {
		font-size: 20px;
	}
	.cart-container__card {
		gap: 2%;
	}
	.cart-container__card {
		padding-right: 15px;
	}
	.card__info {
		gap: 4%;
		grid-template-columns: auto 18% 17% 18%;
	}
	.cart-container__header {
		gap: 2.5%;
		grid-template-columns: auto 10% 17% 15%;
	}
}
._btn-arrow {
	flex-shrink: 0;
}
._section-another {
	margin-top: 35px;
}
._section-another ._section-title {
	text-align: left;
}
.woocommerce-breadcrumb {
	margin-bottom: 25px;
	color: grey;
}
.woocommerce-breadcrumb a {
	color: #CCB188;
}
.woocommerce-breadcrumb a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
@media (max-width: 991.98px) {
	.cart-container__wrapper {
		grid-template-columns: auto;
		gap: 15px;
	}
	.cart-container__totals {
		margin-top: 0;
	}
}

@media (max-width: 767.98px) {
	.woocommerce-breadcrumb {
		margin-bottom: 15px;
	}
	._section-another {
		margin-top: 20px;
	}
	.cart-container {
		margin-top: 30px;
	}
	.cart-container__header {
		display: none;
	}
	.card__info-item .product-price {
		display: none;
	}
	.card__info-center {
		position: absolute;
		bottom: -9px;
		right: 50px;
	}
	.card__info {
	}
	.card__info-left + .card__info-item {
		display: contents;
	}
	.card__info-item {
		text-align: right;
	}
	.card__info-item .product-subtotal,
	.card__info-item .product-price {
		top: 0;
	}
	.card__info {
		grid-template-columns: auto 30%;
	}
}
@media (max-width: 575.97px) {
	.card__info-item_name {
		font-size: 18px;
		color: #CCB188;
	}
	.card__image {
		width: 75px;
		height: 75px;
	}
	.card__info-item_more {
		display: none;
	}
	.card__info {
		grid-template-columns: auto;
	}
	.card__info-item {
		text-align: left;
	}
	.card__info-item .product-subtotal,
	.card__info-item .product-price {
		font-size: 18px;
		margin-top: 10px;
	}
	.card__info-center {
		position: absolute;
		bottom: -9px;
		right: 40px;
	}
	.cart-container__totals-title {
		font-size: 21px;
		margin-bottom: 10px;
	}
	.cart-container__totals {
		gap: 10px;
	}
	.cart-container__actions {
		margin-top: 10px;
	}
	.cart-container__cards {
		padding: 10px;
		margin-top: 0;
	}
	.cart-container__card {
		padding: 10px;
	}
	.cart-container__card {
		gap: 4%;
	}
	.quantity-input {
		height: 27px;
	}
	.quantity-button {
		font-size: 40px;
	}
	.quantity-increase {
		font-size: 30px;
	}
	.remove-item-button img {
		max-width: 25px;
	}
	.card__info-right {
		margin-top: 10px;
	}
	.quantity-input {
		font-size: 17px;
	}
}
.card__info-item_name {
	/* Ограничиваем высоту элемента до 2 строк */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4; /* Количество строк */
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 768px) {
	.card__info-item_name {
		-webkit-line-clamp: 3; /* Одна строка на разрешении менее 768px */
	}
}

@media (max-width: 480px) {
	.card__info-item_name {
		-webkit-line-clamp: 2; /* Две строки на разрешении менее 480px */
	}
}

.wc-block-components-checkout-place-order-button {
	width: 100% !important;
	max-width: 260px !important;
	width: 260px !important;
	height: 63px !important;
	color: #fff !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	font-weight: 600 !important;
	line-height: 17.6px !important;
	font-size: 16px !important;
	background: #CCB188 !important;
	border-radius: 16px !important;
}
.wc-block-components-checkout-place-order-button:hover {
	background: #3f4f3e !important;
}
.wc-block-components-checkout-place-order-button:focus {
	box-shadow: none !important;
	outline: none !important;
}
.product-catalog__price {
	display: flex;
	gap: 7px;
	align-items: center;
	font-size: 22px;
}
.product-catalog__title {
	font-size: 21px;
	text-align: left;
	padding-inline: 10px;
}

@media (max-width: 767.98px) {
	.product-catalog__title {
		font-size: 20px;
		text-align: left;
		padding-inline: 0;
	}
}
.product-catalog__item {
	background-color: #fff;
	padding: 10px;
	border-radius: 15px;
	display: flex !important
;
	flex-direction: column;
}
.product-catalog__description {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.product-catalog__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* Количество строк */
	overflow: hidden;
	text-overflow: ellipsis;
}
.product-catalog__description p {
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;

	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4; /* Количество строк */
}
@media (max-width: 767.98px) {
	.section-subcat .section-10__new,
	.section-shop .section-10__new {
		min-width: 47%;
	}
	.section-shop.section-10__news {
		gap: 15px 10px;
		margin-top: 30px;
	}
}
@media (max-width: 575.98px) {
	.section-shop.section-10__news {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-catalog__item {
		padding: 7px;
	}
	.section-shop .section-10__new-text {
		font-size: 16px;
	}
	.section-products__prosucts {
		gap: 10px;
	}
	.product-catalog__title {
		font-size: 18px;
		-webkit-line-clamp: 2; /* Количество строк */
	}
	.product-catalog__description p {
		font-size: 16px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3; /* Количество строк */
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.product-catalog__price {
		font-size: 20px;
	}
	.product-catalog__ruble svg {
		max-width: 50px;
	}
}

.product {
	overflow: hidden;
	padding-top: 15px;
	margin-bottom: 30px;
}
.product {
	display: flex;
	gap: 30px;
}

.product__swiper-block {
	display: flex;
	gap: 15px;
	height: 465px;
}

.product__swiper-left {
	width: 130px;
	flex-shrink: 0;
	margin: 0px;
}

.product__swiper-left.swiper {
	margin: 0px;
}

.product-swiper-thumb.swiper {
	width: 520px;
	margin: 0px;
	overflow: hidden;
}

.product__swiper-block .swiper-slide {
	overflow: hidden;
	border-radius: 8px;
	background-color: #c2c2c2;
}

.product__swiper-block .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.product-swiper .swiper-slide {
	cursor: pointer;
}

.product__info {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 12px;
	position: relative;
	padding: 30px;
}

.product__title {
	font-size: 31px;
	line-height: 1.3;
	margin-bottom: 30px;
	font-weight: 700;
	width: 100%;
}
.product__info-main {
	box-shadow: 15px 10px 50px rgba(0, 0, 0, 0.15);
	width: 100%;
	padding: 40px 28px;
	border-radius: 12px;
}
.product__info-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
@media (max-width: 1350px) {
	.product__swiper-block {
		height: 380px;
	}

	.btn-border {
		font-size: 11px;
	}

	.product {
		padding-top: 35px;
	}

	.product-swiper-thumb.swiper {
		width: 400px;
	}

	.product__swiper-left {
		width: 100px;
	}

	.product {
		gap: 20px;
	}

	.product__title {
		font-size: 27px;
		margin-bottom: 25px;
	}

	.product__info-main {
		padding: 25px 15px;
	}

	.price-current {
		font-size: 24px;
	}

	.price-old {
		font-size: 14px;
	}

	.product-add {
		width: 65px;
		height: 42px;
	}

	.product__info-buttons .btn {
		font-size: 11px;
	}

	.product__info-buttons .btn-yellow {
		font-size: 11px;
	}

	input.count-num {
		font-size: 18px;
		width: 35px;
		height: 30px;
	}

	.count {
		font-size: 24px;
	}
}

@media (max-width: 991.98px) {
	.product-swiper-thumb.swiper {
		width: 330px;
	}
	input.count-num {
		font-size: 22px;
		width: 55px;
		height: 40px;
	}

	.count {
		font-size: 28px;
	}

	.price-old {
		font-size: 16px;
	}

	.price-current {
		font-size: 26px;
	}
}

@media (max-width: 767.98px) {
	.product-swiper-thumb.swiper {
		width: 100%;
	}
	.product__swiper-left.swiper {
		max-width: 100%;
	}
	.product-swiper .swiper-slide {
		height: 102px;
	}
	.product {
		flex-direction: column;
	}
	.product__swiper-block {
		height: auto;
		flex-direction: column-reverse;
	}

	.product-swiper-thumb {
		height: 380px;
	}

	.product__swiper-block {
		align-items: center;
	}

	.product {
		padding-top: 15px;
	}

	.product__swiper-left.swiper {
		margin: 0px;
		width: 100%;
		max-width: 100%;
	}

	.product-swiper .swiper-slide {
		height: 112px;
	}

	.product__title {
		font-size: 25px;
		max-width: 450px;
		margin-bottom: 15px;
	}
}
@media (max-width: 575.98px) {
	.product-swiper .swiper-slide {
		height: 92px;
	}
}
@media (max-width: 480px) {
	.product-swiper-thumb.swiper {
		width: 100%;
	}
	.product-swiper .swiper-slide {
		height: 72px;
	}

	.product__info-buttons {
		flex-direction: column;
	}

	.product__info-button {
		width: 100%;
		cursor: pointer;
	}

	.product__title {
		font-size: 22px;
	}

	.product__info-buttons {
		margin-top: 15px;
	}

	.price {
		flex-direction: column-reverse;
		gap: 0px;
	}

	.price-current {
		font-size: 22px;
		line-height: 1.3;
	}
	.card__info {
		padding-bottom: 20px;
	}
	.price-old {
		font-size: 14px;
		line-height: 1.3;
	}

	input.count-num {
		font-size: 20px;
		width: 45px;
		height: 30px;
	}

	.count {
		font-size: 26px;
	}

	.product-add {
		width: 48px;
		height: 36px;
	}
	.product-add img {
		max-width: 20px;
	}

	.product__info-main {
		padding: 5px 0px;
		box-shadow: none;
	}

	.product__info-top {
		gap: 5px;
	}

	.product-swiper-thumb.swiper {
		height: 290px;
		max-width: 100%;
	}
}
.swiper-button-next__product,
.swiper-button-prev__product {
	background-color: #CCB188;
	color: #fff;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
}
.swiper-button-next__product::after,
.swiper-button-prev__product::after {
	font-size: 20px;
	font-weight: 700;
}
.card__info-buttons {
	display: flex;
	gap: 15px;
	flex-direction: row;
	flex-wrap: wrap;
}
.card__info-footer .card-product__button {
	margin: 0;
}
.card__info-footer {
	margin-top: 30px;
}
.single-product .product-price {
	text-align: left;
	font-weight: 500;
	text-align: left;
	font-size: 25px;
}
.product__info {
	justify-content: space-between;
}
.section-characteristics {
	margin-top: 50px;
}
.section-characteristics__table,
.section-description__inner {
	margin-top: 30px;
	padding: 30px;
	background: #ffffff;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	max-width: 100% !important;
}
.section-characteristics tbody,
.section-characteristics tr {
	font-size: 18px !important;
	line-height: calc(28 / 18 * 100%) !important;
}
.section-characteristics th,
.section-characteristics td {
	border: 1px solid rgba(0, 0, 0, 0.06);

	text-align: left;
}
.section-characteristics table {
	border-collapse: collapse;
	width: 100%;
}
.section-characteristics tr:nth-child(even) {
	background: #CCB18826;
}
.section-characteristics tr,
.section-characteristics th,
.section-characteristics td {
	padding: 8px !important;
	width: 50% !important;
}
.section-characteristics tr td:nth-child(odd) {
	font-weight: 700;
}
@media (max-width: 767.98px) {
	.section-characteristics {
		margin-top: 30px;
	}
	.related-products .product-catalog__item {
		min-width: 300px;
	}
}
@media (max-width: 575.98px) {
	.section-characteristics__table,
	.product__info,
	.section-description__inner {
		padding: 15px;
	}

	.section-characteristics__title {
		margin-bottom: 20px;
	}
	.section-characteristics tbody,
	.section-characteristics tr {
		font-size: 16px !important;
	}
	.card__info-buttons {
		gap: 7px;
		flex-wrap: nowrap;
	}
}
.card__link {
	position: relative;
}
.card__link span {
	position: absolute;
	bottom: -5px;
	right: -5px;
	display: flex;
	font-size: 14px;
	align-items: center;
	justify-content: center;
	text-align: center;

	background-color: #fff;
	border-radius: 50%;
	min-width: 25px;
	min-height: 25px;
	padding: 3px;
	line-height: 1;
	border: 1px solid #CCB188;
}
@media (max-width: 1350px) {
	.card__link span {
		bottom: -4px;
		right: -6px;
		min-width: 20px;
		min-height: 20px;
		font-size: 12px;
	}
}
@media (max-width: 479.98px) {
	.header__button {
		width: 120px;
	}
	.card-product__button {
		width: 100%;
		min-width: 50%;
	}
}
.section-characteristics__title {
	text-align: left;
	margin-bottom: 30px;
}
.section-description {
	font-size: 18px;
	line-height: 144.444444%;
}
.section-description h2 {
	margin-top: 30px;
	font-size: 32px;
	font-weight: 400;
	line-height: 125%;
	margin-bottom: 15px;
	font-weight: 700;
}
.section-description b,
.section-description strong {
	font-weight: 700;
}
.section-description ol {
	margin-top: 20px;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 5px;
	margin-left: 18px;
}
.section-description ol,
.section-description ol li {
	list-style-type: auto;
}
.section-description h2 strong {
	font-weight: 600;
}
@media (max-width: 61.9988em) {
	@supports (font-size: clamp(1.25rem, 1.0416666667rem + 1.0416666667vw, 1.6875rem)) {
		.section-description h2 {
			font-size: clamp(1.25rem, 1.0416666667rem + 1.0416666667vw, 1.6875rem);
		}
	}
}
@media (max-width: 47.9988em) {
	.section-description h2 {
		margin-top: 10px;
	}
}
.section-description p {
	margin-top: 10px;
}
.section-description ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 5px;
	margin-top: 20px;
}
.section-description ul li {
	padding-left: 15px;
	position: relative;
}

.section-description ul li:before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fc4c02;
	top: 11px;
	left: 0;
	flex-shrink: 0;
}

.cart-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: #7ad03a;
	color: #fff;
	padding: 15px 20px;
	border-radius: 5px;
	font-size: 16px;
	z-index: 9999;
	display: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header__button:hover {
	color: #fff !important;
}
