main {
    margin: 24px 0;
}

.custom-product-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	gap: 24px 24px;
	width: 100%;
	align-items: flex-start;
}


/*Мини каторчка товара*/
.custom-product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #D4D4D8;
    cursor: pointer;
    width: calc(1 / 3 * 100% - (1 - 1 / 3) * 24px);
    box-shadow: 0px 8px 18px -6px #18274B1F;
}

span.onsale {
    display: none;
}

.custom-product-image {
    height: 200px;
}

.custom-product-image img {
    height: 100%;
    object-fit: cover;
}

.custom-product-title__info {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.woocommerce-loop-product__title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 44px;
}

.mini-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 17px;
    color: #71717A;
    font-weight: 400;
    align-items: center;
    margin-bottom: 12px;
    height: 20px;
}

.feature_item-ellipse {
    width: 4px;
    height: 4px;
    display: block;
    background-color: #71717A;
    border-radius: 100%;
}

.addit-mini {
	display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    height: 34px;
}

.addit-mini-note {
    background-color: #E0F2FE;
    padding: 7px 10px;
    border-radius: 30px;
    color: #0EA5E9;
    font-size: 12px;
    line-height: 15px;
}

.addit-mini-note-feedback {
    background-color: #F4F4F5;
    padding: 7px 10px;
    border-radius: 30px;
    color: #000000;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    gap: 2px;
    font-weight: 700;
}

.symbols_star {
    display: block;
    width: 15px;
    height: 15px;
}

.product-price_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
	margin-bottom: 12px;
}

.main-prise {
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
}

.sale-prise {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: #71717A;
    text-decoration: line-through;
}

.discount-percentage {
    font-size: 14px;
    font-weight: 400;
    background-color: #0EA5E9;
    color: #fff;
    padding: 6px 8px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 50px;
}



.custom-add-to-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.custom-add-to-cart-btn .icon-cart-default {
    fill: #71717A; /* Серый цвет по умолчанию */
    transition: fill 0.3s ease; /* Плавный переход цвета */
}

.custom-add-to-cart-btn.added .icon-cart-default {
    fill: #fb923c; /* Оранжевый цвет после добавления в корзину */
}

.custom-add-to-cart-btn .hidden {
    opacity:0;
}

.custom-add-to-cart-btn .spinner {
	width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #fb923c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
	top: 4px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.product-buttons_box {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.added_to_cart.wc-forward {
    display: none;
}



.woocommerce-catalog-container {
    display: flex;
    position: relative;
	gap:24px;
}

/*Фильтр для каталога*/
/*Фильтр для каталога*/
/*Фильтр для каталога*/

.catalog-filters {
    width: 290px;
    background-color: #ffffff;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    height: max-content;
	padding: 12px;
	flex-shrink: 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
	border-bottom: 1px solid #ddd;
}


.filter-group-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    height: 24px;
    margin: 12px 0;
	user-select: none;
}

.filter-group-head__name {
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
}

.filter-group-head__icon {
    display: flex;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}


.filter-options {
    display: flex;
    flex-direction: column;
    padding-left: 3px;
    gap: 5px;
    margin-bottom: 12px;
}


.filter-group-head__icon img {
    transition: transform 0.2s ease-in-out;
	transform: rotate(-90deg);
}

.filter-group.open .filter-group-head__icon img {
    transform: rotate(0deg);
}


.filter-group.open .filter-options {
	display: flex;
}


.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}


.custom-checkbox input {
    display: none;
}


.custom-checkbox-box {
    width: 18px;
    height: 18px;
    border: 2px solid #71717A;
    border-radius: 4px;
    background-color: white;
    position: relative;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}


.custom-checkbox input:checked + .custom-checkbox-box {
    background-color: #0EA5E9;
    border-color: #0EA5E9;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' width='26' height='26'%3e%3cpath d='m22.566 4.73-1.793-1.218a1.088 1.088 0 0 0-1.507.285l-8.79 12.96-4.038-4.038a1.085 1.085 0 0 0-1.532 0l-1.535 1.535a1.09 1.09 0 0 0 0 1.535L9.582 22c.348.348.895.613 1.387.613s.988-.308 1.308-.773L22.855 6.234a1.082 1.082 0 0 0-.289-1.504z' transform='scale(9.84615)' fill='%23fff' stroke-miterlimit='10' font-family='none' font-weight='none' font-size='none' text-anchor='none' style='mix-blend-mode:normal'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}


.catalog-filters__title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
}

.price-filter__input {
    font-size: 16px;
    line-height: 19px;
    border-radius: 6px;
    border: 1px solid #71717A;
    padding: 16px 12px;
    outline: none;
}

.filter__input--box {
    display: flex;
    max-width: 100%;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
	margin-bottom: 16px;
}

.price-filter__input {
    font-size: 16px;
    line-height: 19px;
    border-radius: 6px;
    border: 1px solid #D4D4D8;
    padding: 14px 12px;
    outline: none;
    width: calc(1 / 2 * 100% - (1 - 1 / 2) * 24px);
    color: #71717A;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 3px solid #0EA5E9!important;
    background: #ffffff!important;
    border-radius: 50px;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 3px solid #0EA5E9!important;
    background: #ffffff!important;
}

.ui-slider-horizontal {
    height: .4em!important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.45em!important;
}

.ui-widget-header {
    background: #0EA5E9!important;
}

.ui-widget.ui-widget-content {
    border: 1px solid #0ea5e9!important;
}

.catalog-filters__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.catalog-filters__buttons .main-button {
    width: 100%;
    margin: 0;
    max-width: 100%;
    padding: 12px;
    height: 54px;
}

.filters__buttons {
    background-color: #FB923C;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-radius: 60px;
    transition: .25s;
    border: 1px solid #FB923C;
    height: 54px;
    width: 100%;
	cursor:pointer;
}

.filters__buttons.reset-button {
    background-color: #D4D4D8;
    border: 1px solid #D4D4D8;
}

.filters__buttons:hover {
	background-color: #0EA5E9;
    border-color: #0EA5E9;
}

.filters__buttons.reset-button:hover {
    background-color: #b4b4b4;
    border: 1px solid #b4b4b4;
}

.management_system {
    position: absolute;
    display: flex;
    top: 16px;
    left: 16px;
    gap: 8px;
}

.catalog-main_box {
    width: 100%;
}

.woocommerce-pagination {
    width: 100%;
    background-color: #fff;
    border-radius: 60px;
    border: 1px solid #D4D4D8;
    margin: 16px 0;
    height: 64px;
}

ul.page-numbers {
    display: flex;
    gap: 12px;
    list-style: none;
    align-items: center;
    justify-content: center;
    height: 100%;
}
	



/* Добавляем SVG-иконки стрелок */
.woocommerce nav.woocommerce-pagination ul .prev::before,
.woocommerce nav.woocommerce-pagination ul .next::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.0303 7.46967C13.7374 7.17678 13.2626 7.17678 12.9697 7.46967L8.96967 11.4697C8.67678 11.7626 8.67678 12.2374 8.96967 12.5303L12.9697 16.5303C13.2626 16.8232 13.7374 16.8232 14.0303 16.5303C14.3232 16.2374 14.3232 15.7626 14.0303 15.4697L10.5607 12L14.0303 8.53033C14.3232 8.23744 14.3232 7.76256 14.0303 7.46967Z' fill='%237DD3FC'/%3e%3c/svg%3e ");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Поворот стрелки вперед */
.woocommerce nav.woocommerce-pagination ul .next::before {
    transform: rotate(180deg);
}


.page-numbers {
    display: block;
    color: #71717A;
    font-size: 16px;
    line-height: 19.2px;
}

.page-numbers.current {
    color: #0EA5E9;
}

.custom-sorting {
	position: relative;
    display: inline-block;
}

.sorting-dropdown {
    position: relative;
    width: 100%;
}

.sorting-button {
    width: 100%;
    padding: 12px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
	min-width: 180px;
}

.sorting-button .sorting-label {
    flex-grow: 1;
    text-align: left;
}


.sorting-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #D4D4D8;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    border-radius: 15px;
    overflow: hidden;
    z-index: 10;
	margin-top:6px;	
}

.sorting-options li {
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    line-height: 19px;
}

.sorting-options li:hover, .sorting-options li.active {
    background: #f5f5f5;
}

.dropdown-icon {
    transition: transform 0.3s ease;
	margin-top: 3px;
    margin-left: 4px;
}

.sorting-dropdown.open .dropdown-icon {
    transform: rotate(180deg); 
}

.show-more-container {
    text-align: center;
    margin: 32px 0 16px;
}

#show-more {
    display: inline-block;
    background: #FB923C;
    height: 62px;
    border-radius: 60px;
    padding: 12px;
    font-size: 18px;
    line-height: 19px;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    font-weight: 700;
}

#show-more:hover {
    background: #0EA5E9;
}

.filters-sort__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.catalog-filters__head {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

	
@media screen and (max-width: 1279px) {
    .filter-open__button {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 0 12px;
        background-color: #fb923c;
        color: #fff;
        font-size: 16px;
        line-height: 19px;
        font-weight: 700;
        border-radius: 15px;
        cursor: pointer;
        height: 45px;
    }

    .catalog-filters {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        transition: right 0.3s ease-in-out;
        z-index: 100001;
        padding: 0px;
        overflow-y: auto;
        border: none;
        border-radius: 0;
    }

    .catalog-filters.active {
        right: 0; 
    }
	
	.close-filters {
		display: block;
		width: 24px;
		height: 24px;
		margin-right: 6px;
		cursor: pointer;
	}
	
	.filters__buttons.reset-button {
		display: none;
	}
	
	.popup-filters__clear {
		margin-left: auto;
		color: #FB923C;
		font-size: 18px;
		line-height: 21px;
		cursor: pointer;
	}
	
    .catalog-filters__head {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
        height: 80px;
        box-shadow: 0px 8px 8px -4px #18274B14;
        padding: 0 24px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 199;
        background-color: #fff;
    }
	
	.filter-group {
		margin: 0 24px;
	}
	
	#filter-form {
		margin-top: 90px;
	}
	
	.catalog-filters__buttons {
		position: fixed;
		width: 100%;
		bottom: 0;
		padding: 0 24px;
		box-shadow: 0px -8px 8px -4px #18274B14;
		background-color: #fff;
		z-index: 199;
		margin-top: 0;
		height: 112px;
		display: flex;
		justify-content: center;
	}
	
	.filter-group.last-filter-group {
		margin-bottom: 140px;
	}

}

@media (min-width: 1280px) {
    .filter-open__button, .popup-filters__clear, .close-filters {
        display: none; 
    }	
}

@media screen and (max-width: 1024px) {
	.custom-product-card {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 24px);
	}
	
	.custom-product-image {
		height: 240px;
	}
}

@media screen and (max-width: 768px) {
	.mini-features, .addit-mini, .discount-percentage {
		display: none;
	}
	
	.custom-product-image {
		height: 200px;
	}
	
	.custom-product-box {
		gap: 18px 18px;
	}
	
	.custom-product-card {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 18px);
	}
	
	.woocommerce-loop-product__title {
		-webkit-line-clamp: 3;
		font-size: 14px;
		line-height: 17px;
		height: 51px;
		margin-bottom: 8px;
	}
	
	.custom-product-title__info {
		padding: 12px 6px;
	}
	
	.main-prise {
		font-size: 19px;
		line-height: 21px;
	}
	
	.sale-prise {
		font-size: 12px;
		line-height: 14px;
	}
	
	.product-price_box {
		margin-bottom: 8px;
	}
	
	.filters-sort__box {
		display: flex;
        gap: 10px;
        margin-bottom: 16px;
        flex-direction: row;
	}
	
	.catalog-filters__title {
		font-size: 16px;
		line-height: 19px;
	}
	
	.popup-filters__clear {
		font-size: 16px;
		line-height: 19px;
	}
}

@media screen and (max-width: 568px) {
    .custom-product-image {
       height: 115px;
    }
	
	.custom-product-box {
        gap: 10px 10px;
    }
	
	.custom-product-card {
        width: calc(1 / 2 * 100% - (1 - 1 / 2) * 10px);
    }
	
	.management_system {
		top: 12px;
		left: 12px;
		gap: 6px;
	}
	
	.management_system-item img {
		height: 18px;
	}
}	



/*Страница товара*/



/*swiper*/
.product-gallery-box {
    max-width: 400px;
}

.single-product__box {
    border-radius: 15px;
    background-color: #fff;
    padding: 24px;
    display: flex;
    gap: 24px;
}

.product-gallery-main {
    margin-bottom: 12px;
}

.product-gallery-main .swiper-slide {
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #D4D4D8;
}

.product-gallery-main .swiper-slide a {
    height: 100%;
    display: block;
}

.product-gallery-main .swiper-slide a img{
    height: 100%;
}

.fancybox__container {
	z-index: 199999!important;
}


.product-gallery-thumbs .swiper-slide {
    width: 64px;
    height: 64px;
    border-radius: 15px;
    border: 1px solid #D4D4D8;
    overflow: hidden;
}

.swiper-backface-hidden .swiper-slide img{
    height: 100%;
}

.product-gallery-button__box {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.product-gallery-button {
    display: flex;
    height: 44px;
    width: 44px;
    border-radius: 100%;
    border: 1px solid #000;
    background-color: #ffffff30;
	cursor: pointer;
}

.product-gallery-main-next {
    transform: rotateY(180deg);
}

.product-gallery-button:hover {
	background-color: #000;
}

.product-gallery-button:hover img{
	-webkit-filter: invert(100%);
    filter: invert(100%);
}

.product-gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid #0EA5E9;
}


.single-product-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 16px;
}

.addit-single {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.addit-single-note {
    background-color: #E0F2FE;
    padding: 8px 24px;
    border-radius: 30px;
    color: #0EA5E9;
    font-size: 14px;
    line-height: 17px;
}

.note-right__box {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
}

.addit-single-note-feedback {
    background-color: #F4F4F5;
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    gap: 4px;
}


.share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background-color: #FB923C;
    border: none;
	cursor:pointer;
}

.share-button.active{
    background-color: #000;
}

.single-main__box {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
	margin-bottom: 16px;
}

.single-add-to-cart__box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.single-price_box {
    display: flex;
    gap: 12px;
    background-color: #F4F4F5;
    height: 64px;
    align-items: center;
    padding: 0 24px;	
    border-radius: 60px;
	width: 100%;
}

.single-price_box--center {
    display: flex;
    background-color: #F4F4F5;
    height: 64px;
    align-items: center;
    padding: 0 24px;
    border-radius: 60px;
    width: 100%;
    justify-content: center;
}

.single-main-prise {
    color: #0EA5E9;
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
}

.single-sale-prise {
    font-size: 18px;
    line-height: 21px;
    color: #71717A;
    text-decoration: line-through;
}

.single-add-to-cart-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    border-radius: 60px;
    border: none;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    background-color: #FB923C;
    color: #fff;
	cursor:pointer;
	width: 200px;
}

.single-discount-percentage {
    font-size: 18px;
    line-height: 21px;
    margin-left: auto;
}

.single-add-to-cart__box .favourite-icon {
    display: flex;
    width: 64px;
    height: 64px;
    background-color: #F4F4F5;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
}

.single-add-to-cart-btn.added {
    background-color: #0EA5E9;
}

.single-product-description {
    font-size: 16px;
    line-height: 22px;
}

.single-product-description p {
    margin-bottom: 12px;
}







.single-product-features {
    border-radius: 15px;
    background-color: #fff;
    padding: 24px;
    margin-top: 24px;
}

.single-product-features-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.single-product-features-list {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.single-product-features-column {
    width: calc(1 / 2 * 100% - (1 - 1 / 2) * 32px);
}


.single-product-feature-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    white-space: pre-wrap;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.single-feature-name {
    color: #000;
    max-width: 50%;
    position: relative;
    z-index: 1;
	background-color: #fff;
	padding-right: 5px;
	font-size: 15px;
    line-height: 18px;
}

.single-feature-parameter {
    max-width: 40%;
    text-align: right;
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-left: 5px;
    font-size: 14px;
    line-height: 17px;
}

.single-feature-dots {
    width: 100%;
    height: 1px;
    position: absolute;
    border-bottom: 1px dotted #bfbfbfba;
    top: 10px;
}

.single-product-reviews {
    border-radius: 15px;
    background-color: #fff;
    padding: 24px;
    margin-top: 24px;
}

.review {
    border: 1px solid #F4F4F5;
    border-radius: 10px;
    margin-top: 16px;
    padding: 16px;
}

.commentlist {
    list-style-type: none;
}

.single-product-comment-author {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.comment-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-note {
    background-color: #F4F4F5;
    padding: 8px 14px;
    border-radius: 30px;
    color: #000000;
    font-size: 15px;
    line-height: 100%;
    display: flex;
    gap: 4px;
    font-weight: 700;
    align-items: center;
}

.review-note .symbols_star {
    width: 20px;
    height: 20px;
}

.single-product-comment-date {
    color: #71717A;
    font-size: 18px;
    line-height: 21px;
}

.single-product-comment-author-name {
    color: #000000;
    font-size: 18px;
    line-height: 21px;
}
.single-product-comment-content {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
}

.single-product-comment-content p{
	margin-bottom: 12px;
}


#review_form_wrapper {
    display: none;
	margin-top: 16px;
    border: 1px solid #F4F4F5;
    padding: 16px;
	border-radius: 10px;
}

.woocommerce-Reviews-title {
    display: none;
}

.leave-review-button__box {
    margin-top: 12px;
    width: 100%;
}

.leave-review-button {
    display: inline-block;
    padding: 12px 22px;
    background-color: #0EA5E9;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 19px;
    transition: background-color 0.3s;
    border-radius: 30px;
	font-weight: 700;
}

.leave-review-button:hover {
    background-color: #fb923c;
}

.single-product-reviews-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 16px;
    display: block;
}

/*Форма оставить отзыв*/


.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-stars input[type="radio"]:checked ~ label,
.rating-stars input[type="radio"]:hover ~ label {
    color: #ffc107;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #ffc107;
}



.comment-notes {
    display: none;
}

.comment-form-cookies-consent {
    display: none;
}


.comment-reply-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 16px;
    display: block;
}

.comment-form {
    display: flex;
    flex-direction: column;
}

.review-user-info {
    display: flex;
    gap: 24px;
}

.comment-form-author, .comment-form-email {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: calc(1 / 2 * 100% - (1 - 1 / 2) * 24px);
}


.comment-form-rating {
    display: none;
}

.comment-form-author #author, .comment-form-email #email {
    border: 1px solid #D4D4D8;
    font-size: 16px;
    line-height: 19px;
    padding: 16px 24px;
    border-radius: 15px;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
	gap: 6px;
}

.comment-form-comment #comment {
    resize: none;
    border: 1px solid #D4D4D8;
    border-radius: 15px;
    padding: 24px;
    height: 120px;
	font-size: 16px;
    line-height: 19px;
}

.custom-comment-form-rating {
    margin-bottom: 16px;
}


.comment-form-author label, .comment-form-email label, .comment-form-comment label{
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
}

.comment-form-author .required, .comment-form-email .required, .comment-form-comment .required, .custom-comment-form-rating .required{
    font-size: 16px;
    color:#0EA5E9;
}

.comment-form #submit {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    border-radius: 60px;
    border: none;
    font-size: 18px;
    line-height: 21px;
    font-weight: 700;
    background-color: #FB923C;
    color: #fff;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
}

.comment-form #submit:hover {
    background-color: #0EA5E9;
}

.woocommerce-verification-required {
    margin: 12px auto;
    width: 100%;
    color: red;
}


.recommended-products-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    gap: 24px;
}


.single-product-recommended-title {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 24px;
}

.single-product-recommended {
    margin: 112px 0;
}

.woocommerce-noreviews {
    color: #727272;
    margin-bottom: 32px;
    font-size: 16px;
}




@media (max-width: 1164px) {
	
	.single-discount-percentage {
		display: none;
	}
	
	.single-price_box {
		display: flex;
		justify-content: center;
	}

}

@media screen and (max-width: 1024px) {
	
	.single-product__box {
		flex-direction: column;
	}
	
	.product-gallery-box {
		max-width: 100%;
	}
	
	.product-gallery-main .swiper-slide {
		height: 380px;
	}
	
	.single-product-features-list {
		flex-direction: column;
		gap: 0;
	}
	
	.single-product-features-column {
		width: 100%;
	}
	
	.single-product-recommended-title {
		font-size: 32px;
		line-height: 42px;
	}
	
	.single-product-recommended {
		margin: 65px 0;
	}
	
	.single-product-recommended .custom-product-card:last-child {
		display:none;
	}
	
}	


@media screen and (max-width: 768px) {
	.recommended-products-wrapper {
		gap: 18px;
	}
	
	.single-product__box {
		padding: 12px;
		gap: 16px;
	}
	
	.product-gallery-button__box {
		display: none;
	}
	
	.product-gallery-main .swiper-slide {
        height: 280px;
    }
	
	.single-product-title {
        font-size: 18px;
        line-height: 21px;
		margin-bottom: 12px;
	}
	
	.addit-single {
		flex-direction: row;
        flex-wrap: wrap;
	}
	
    .note-right__box {
        margin: 0 0 12px 0;
        justify-content: space-between;
        order: 1;
        width: 100%;
    }
	
	.addit-single-note {
		width: calc(1 / 2 * 100% - (1 - 1 / 2) * 6px);
		order: 2;
        text-align: center;
	}
	
	.single-main__box {
		flex-direction: column;
	}
	
	.single-add-to-cart__box {
		width: 100%;
		align-items: center;
	}
	
	.single-add-to-cart-btn {
		width: 100%;
	}
	
	.single-feature-name {
		font-size: 14px;
		line-height: 16px;
	}
	
	.single-product-features-title, .single-product-reviews-title, .single-product-recommended-title {
		font-size: 18px;
		line-height: 21px;
		margin-bottom: 12px;
		font-weight:700;
	}
	
	.single-product-features, .single-product-reviews {
		padding: 12px;
	}
	
	.review {
		padding: 12px;
	}
	
	.single-product-comment-author-name {
		font-size: 16px;
		line-height: 19px;
		font-weight: 700;
	}
	
	.single-product-comment-date {
		font-size: 16px;
		line-height: 19px;
	}
	
	.single-product-comment-content {
		font-size: 14px;
		line-height: 17px;
	}
	
	.comment-reply-title {
		font-size: 16px;
		line-height: 19px;
	}
	
	.single-product-recommended {
        margin: 32px 0;
    }
	
}	

@media screen and (max-width: 568px) {
	.recommended-products-wrapper {
		gap: 10px;
	}
	
	.product-gallery-main .swiper-slide {
        height: 220px;
    }
	

}	
	


.product-sku {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #ffffff54;
    padding: 4px 6px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    color: #71717A;
    font-size: 12px;
    line-height: 17px;
    max-width: 160px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.single-product-sku {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
}

.single-product-sku span {
    color: #71717A;
}

@media screen and (max-width: 768px) {
    .product-sku {
        top: 10px;
        right: 2px;
        max-width: 110px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
        font-size: 10px;
        padding: 2px 6px;
    }
}

.product-final-category {
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #71717A;
}

@media screen and (max-width: 768px) {
	.product-final-category {
		-webkit-line-clamp: 3;
		font-size: 14px;
		line-height: 17px;
		margin-bottom: 8px;
	}
	
}


.product-info {
	width: 100%;
}