/* Product Page - Start */
section.product-box {
	padding: 0px 0 70px 0;
	overflow: visible;
}

section.product-box .onsale {
	display: none;
}

/* Product Gallery - Start */
section.product-box .product-gallery {
	position: sticky;
	top: calc(var(--header-height) + 30px);
	display: flex;
	gap: 15px;
	padding-right: 30px;
}
.product-box .product-gallery .product-tags-or-badges {
	left: initial;
	top: 24px;
	right: 24px;
	z-index: 31;
	align-items: flex-end;
}

section.product-box .swiper-wrapper {
	height: fit-content !important;
}

section.product-box .gallery-top {
	width: calc(100% - 120px);
	height: fit-content;
}

section.product-box .gallery-top .swiper-slide img {
	width: 100%;
	height: calc(100dvh - var(--header-height) - 30px - 30px);
	max-height: calc(100vh - var(--header-height) - 30px - 30px);
	object-fit: cover;
	object-position: 50% 0%;
	border-radius: var(--radius-large);
	cursor: zoom-in;
	transition: all 0.3s ease;
}

section.product-box .gallery-thumbs {
	width: calc(80px + 0px);
	height: fit-content;
	max-height: calc(100vh - var(--header-height) - 30px - 30px - 0px);
	overflow: auto !important;
	padding-right: 3px !important;
}

@media (pointer: fine) {
	section.product-box .gallery-thumbs::-webkit-scrollbar {
		width: 3px;
	}
}

section.product-box .gallery-thumbs .swiper-slide {
	height: fit-content !important;
	margin-bottom: 0px !important;
	overflow: hidden;
	border-radius: 0px;
	cursor: pointer;
}
section.product-box .gallery-thumbs .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(255 255 255 / 10%);
	opacity: 0;
	transition: all 0.6s ease;
	z-index: 1;
}
section.product-box .gallery-thumbs .swiper-slide.swiper-slide-thumb-active::before {
	opacity: 1;
}
section.product-box .gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 77px;
	cursor: pointer;
	filter: grayscale(1);
	transition: all 0.6s ease;
}
section.product-box .gallery-thumbs .swiper-slide.swiper-slide-thumb-active img {
	filter: grayscale(0) brightness(1.1);
}
section.product-box .gallery-thumbs .swiper-slide:hover img {
	filter: grayscale(0) brightness(1.1);
}

/* Десктоп: thumbs поверх основного фото */
@media (min-width: 1280px) {
	section.product-box .gallery-thumbs .swiper-wrapper {
		transform: translate3d(0px, 0px, 0px) !important;
	}
	section.product-box .gallery-thumbs {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 30px;
		z-index: 20;
	}
	section.product-box .gallery-thumbs {
		max-height: calc(100vh - var(--header-height) - 30px - 30px - 40px);
		margin: auto 0;
		height: fit-content;
	}
	section.product-box .gallery-top {
		width: calc(100% - 0px);
	}
}

@media (min-width: 769px) and (max-width: 1279px) {
	section.product-box .gallery-thumbs .swiper-wrapper {
		overflow-y: auto !important;
	}
}

@media (max-width: 768px) {
	section.product-box .gallery-top .swiper-slide img,
	section.product-box .gallery-top .swiper-slide video,
	section.product-box .gallery-top .swiper-slide iframe,
	section.product-box .gallery-top .swiper-slide .video-facade {
		height: calc(100vw - var(--container-indent));
	}

	section.product-box .product-gallery {
		position: relative;
		top: 0;
		display: flex;
		gap: 10px;
		padding-right: 0;
		flex-direction: column-reverse;
	}

	section.product-box .gallery-thumbs {
		width: 100%;
		height: auto;
	}

	section.product-box .gallery-top {
		width: 100%;
		height: auto;
	}
}
/* Product Gallery - End */

/* Gallery Thumbs Navigation */
.gallery-thumbs-nav {
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background: #fff;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.gallery-thumbs-nav:hover {
	background: #f5f5f5;
}
.gallery-thumbs-nav img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	transition: all 0.3s ease;
}
.gallery-thumbs-prev img {
	transform: rotate(-90deg);
}
.gallery-thumbs-next img {
	transform: rotate(90deg);
}

@media (min-width: 1280px) {
	.gallery-thumbs-nav {
		display: flex;
		width: 77px;
		height: 77px;
	}
	.gallery-thumbs-nav.gallery-thumbs-prev {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}
	.gallery-thumbs-nav.gallery-thumbs-next {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

/* Product Gallery Video - Start */
.product-box .gallery-thumbs .video-slide-thumb {
	position: relative;
}
.product-box .gallery-thumbs .video-thumb-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 24px;
	background: rgba(255, 0, 0, 0.9);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
}
.product-box .gallery-thumbs .video-thumb-icon::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	margin-left: 2px;
}
.product-box .gallery-top .video-slide-main {
	position: relative;
	overflow: hidden;
}
.product-box .gallery-top .video-facade {
	position: relative;
	width: 100%;
	height: calc(100dvh - var(--header-height) - 30px - 30px);
	max-height: calc(100vh - var(--header-height) - 30px - 30px);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-box .gallery-top .video-preview-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: var(--radius-small);
	transition: all 0.3s ease;
}
.product-box .gallery-top .video-facade:hover .video-preview-image {
	transform: scale(1.02);
}
.product-box .gallery-top .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: all 0.3s ease;
	opacity: 0.9;
}
.product-box .gallery-top .video-facade:hover .video-play-button {
	transform: translate(-50%, -50%) scale(1.1);
	opacity: 1;
}
.product-box .gallery-top .video-play-button svg {
	width: 68px;
	height: 48px;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.product-box .gallery-top .video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	border-radius: var(--radius-small);
	overflow: hidden;
	background: #000;
	z-index: 5;
}
.product-box .gallery-top .gallery-video-iframe,
.product-box .gallery-top .gallery-video-mp4 {
	width: 100%;
	height: 100%;
	border: none;
	object-fit: contain;
}
.product-box .gallery-top .video-slide-main.video-playing .video-facade {
	visibility: hidden;
}
.product-box .gallery-top .video-slide-main.video-playing .video-container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-box .gallery-top .video-slide-main img {
	cursor: pointer;
}
@media (max-width: 1279px) {
	.product-box .gallery-top .video-preview-image {
		height: calc(100vw - var(--container-indent));
	}
	.product-box .gallery-top .video-play-button svg {
		width: 50px;
		height: 36px;
	}
	.product-box .gallery-thumbs .video-thumb-icon {
		width: 28px;
		height: 20px;
	}
	.product-box .gallery-thumbs .video-thumb-icon::after {
		border-width: 4px 0 4px 6px;
	}
}
/* Product Gallery Video - End */

/* Product Base - Start */
section.product-box .product-details .product-top-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section.product-box .product-details .product-top-meta .product-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}
section.product-box .product-details .product-top-meta .star-rating {
	display: flex;
	gap: 2px;
	font-size: 14px;
	line-height: 14px;
}
section.product-box .product-details .product-top-meta .star {
	color: var(--border);
}
section.product-box .product-details .product-top-meta .star.filled {
	color: var(--black);
}
section.product-box .product-details .product-top-meta .rating-count {
	font-size: 13px;
	line-height: 13px;
	color: var(--gray);
}
section.product-box .product-details .product-top-meta .sku {
	font-size: 13px;
	line-height: 13px;
	color: var(--gray);
}
section.product-box .product-details h1.product_title {
	font-family: var(--font-family-1);
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	color: var(--black);
	max-width: calc(100% - 160px);
	margin-bottom: 20px;
}

section.product-box .stock-status {
	position: absolute;
	top: 49px;
	right: 0;
	font-size: 16px;
	line-height: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
}
section.product-box .stock-status span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
section.product-box .stock-status.in-stock span {
	background: var(--primary);
}
section.product-box .stock-status.out-of-stock span {
	background: #e53935;
}
section.product-box .stock-status.on-backorder span {
	background: #ff9800;
}

section.product-box .woocommerce-product-rating,
section.product-box .product-details form.cart,
section.product-box .product-details .quantity,
section.product-box .product-details .compare-btn,
section.product-box .product-details .wishlist-btn,
section.product-box .product-details .product_meta,
section.product-box .product-details .woocommerce-product-details__short-description {
	display: none;
}

@media (max-width: 1680px) {
	section.product-box .product-details h1.product_title {
		font-size: 26px;
		line-height: 32px;
	}
}

@media (max-width: 1279px) {
	section.product-box .product-details h1.product_title {
		font-size: 24px;
		line-height: 28px;
		max-width: calc(100% - 140px);
	}

	section.product-box .stock-status {
		right: 15px;
		font-size: 14px;
		line-height: 14px;
	}
}

@media (max-width: 768px) {
	section.product-box .product-details h1.product_title {
        max-width: calc(100% - 95px);
	}

	section.product-box .col-50 {
		position: relative;
		width: calc(100% - 0px);
	}

	section.product-box .stock-status {
		position: absolute;
		top: 30px;
		right: 0;
		margin-bottom: 20px;
	}
	section.product-box .buy-group .col-left .items-group {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}
/* Product Base - End */

/* Short Desc Group - Start */
section.product-box .short-desc-group {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

section.product-box .short-desc-group .short-desc {
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

section.product-box .sale-timer {
	flex-shrink: 0;
	width: 300px;
	padding: 20px;
	background: var(--light-gray);
	border-radius: var(--radius-medium);
	text-align: center;
}

section.product-box .sale-timer-title {
	font-family: var(--font-family-2);
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 15px;
}

section.product-box .sale-timer-blocks {
	display: flex;
}

section.product-box .sale-timer-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

section.product-box .sale-timer-block + .sale-timer-block {
	border-left: 1px solid var(--border);
}

section.product-box .sale-timer-value {
	font-family: var(--font-family-2);
	font-size: 28px;
	font-weight: 500;
	line-height: 1.0;
}

section.product-box .sale-timer-label {
	font-size: 13px;
	color: var(--gray);
	margin-top: 3px;
}
/* Short Desc Group - End */

@media (max-width: 1279px) {
	section.product-box .short-desc-group {
		flex-direction: column;
	}

	section.product-box .sale-timer {
		width: 100%;
	}
}

/* Product Options - Start */
section.product-box .variation-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--blocks-indent);
	margin-top: 30px;
}
section.product-box .variation-group:not(:has(.option-block)) {
	display: none;
}
/* Product Options - End */

/* Buy Group - Start */
section.product-box .buy-group {
	position: relative;
	display: flex;
	width: 100%;
	margin-top: 25px;
}

section.product-box .buy-group .col-left {
	display: flex;
	flex-direction: column;
	width: 80%;
}

section.product-box .buy-group .price {
	position: relative;
	display: flex;
	width: fit-content;
	margin-bottom: 5px;
	font-family: var(--font-family-2);
	font-size: 25px;
	line-height: 35px;
	font-weight: 500;
	color: var(--black);
}

section.product-box .buy-group .price ins {
	text-decoration: none;
}

section.product-box .buy-group .price del {
	display: flex;
	align-items: center;
	color: #d3d3d3;
	font-size: 20px;
	line-height: 31px;
	font-weight: 600;
	text-decoration-line: line-through;
	margin-right: 10px;
}

section.product-box .buy-group .price .per-product {
	margin-left: 5px;
}

section.product-box .buy-group .col-left .items-group {
	align-items: center;
	gap: 15px;
}

section.product-box .buy-group .col-left .items-group .btn {
	height: var(--btn-height);
}
section.product-box .btn-cart.in-cart:not(.go-variation-in-cart) {
	pointer-events: none !important;
}

/* Compare & Wishlist icon buttons */
section.product-box .buy-group .items-group .add-to-compare-btn,
section.product-box .buy-group .items-group .add-to-wishlist-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
}
section.product-box .buy-group .items-group .add-to-compare-btn img,
section.product-box .buy-group .items-group .add-to-wishlist-btn img {
	height: 22px;
}
section.product-box .buy-group .items-group .add-to-compare-btn img + img,
section.product-box .buy-group .items-group .add-to-wishlist-btn img + img {
	position: absolute;
	opacity: 0;
	transition: all 0.3s ease;
}

/* Активные состояния для wishlist и compare */
section.product-box .buy-group .items-group .add-to-wishlist-btn.in-wishlist-already img:first-child,
section.product-box .buy-group .items-group .add-to-compare-btn.in-compare-already img:first-child {
	opacity: 0;
}
section.product-box .buy-group .items-group .add-to-wishlist-btn.in-wishlist-already img:last-child,
section.product-box .buy-group .items-group .add-to-compare-btn.in-compare-already img:last-child {
	opacity: 1;
}


section.product-box p.stock {
	display: none;
}

@media (max-width: 1279px) {
	section.product-box .buy-group {
		flex-direction: column;
		justify-content: flex-start;
	}

	section.product-box .buy-group .col-left {
		width: 100%;
	}

	section.product-box .items-group .btn {
		width: 100%;
	}
}
/* Buy Group - End */

/* Scroll Price - Start */
section.product-box .mob.scroll-price {
	position: fixed;
	bottom: 0;
	left: 0;
	background: #fafbff;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 20px;
	align-items: center;
	box-shadow: 0px 0px 24px 0px #8e8e8e33;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease-in-out;
	z-index: 99999;
}

section.product-box .mob.scroll-price.active {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

section.product-box .mob.scroll-price .price {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-top: 3px;
}

section.product-box .mob.scroll-price .btn {
	min-width: 50%;
}

@media (max-width: 1279px) {
	body.product-template-default #scrollToTopBtn,
	body.single #scrollToTopBtn,
	body.single-product #scrollToTopBtn {
		display: none !important;
	}
}
/* Scroll Price - End */

/* ===== Expert & Contact Block - Start ===== */
.product-info-blocks {
	margin-top: 25px;
}
.product-info-blocks > .col-50 {
	width: calc(50% - 10px);
}
.expert-block {
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
img.expert-photo {
	width: 60px;
	height: 60px;
	object-fit: cover;
	margin-bottom: 15px;
}
.expert-text {
	font-weight: 500;
	margin-bottom: 8px;
}
.expert-label {
	color: var(--gray);
	margin-top: auto;
}
.contact-block {
	padding: 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.contact-title {
	font-weight: 500;
	font-size: 1.1em;
	margin-bottom: 10px;
}
.contact-text {
	font-size: 14px;
	margin-bottom: 15px;
}
.product-contact-social {
	margin-top: auto;
}
.product-contact-social .icon-element.r-max {
	--icon-multiplier: 2.2;
}
.product-contact-social .icon-element img {
	filter: brightness(0) invert(1);
}
@media (max-width: 1279px) {
	.product-info-blocks > .col-50 {
		width: 100%;
	}
}
/* ===== Expert & Contact Block - End ===== */

/* ===== Product Features - Start ===== */
.product-features {
	margin-top: 25px;
}
.product-features .h5 {
	margin-bottom: 15px;
}
.product-features-list > .col-33 {
	width: calc(33.33% - 14px);
}
.product-feature-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
}
.product-feature-item img.icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
}
@media (max-width: 1279px) {
	.product-features-list > .col-33 {
		width: 100%;
	}
}
/* ===== Product Features - End ===== */

/* ===== Product Tabs Section - Start ===== */

/* Секция табов */
.product-tabs-section {
	margin-top: 40px;
}

/* Навигация табов */
.product-tabs-section .product-tabs .tabs-navigation {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.product-tabs-section .product-tabs .tab-nav-item {
	position: relative;
	flex: 1;
	text-align: center;
	padding: 15px 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--gray);
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	border-right: 1px solid var(--border);
}

.product-tabs-section .product-tabs .tab-nav-item:last-child {
	border-right: none;
}

.product-tabs-section .product-tabs .tab-nav-item:hover {
	color: var(--black);
}

.product-tabs-section .product-tabs .tab-nav-item.active {
	color: var(--black);
	font-weight: 500;
	background: var(--light-gray);
}

/* Контент табов */
.product-tabs-section .product-tabs .tabs-content {
	display: flex;
	flex-direction: column;
}

.product-tabs-section .product-tabs .tab {
	border: none;
	padding: 0;
	cursor: default;
}

.product-tabs-section .product-tabs .tab .tab-title {
	display: none;
}

.product-tabs-section .product-tabs .tab .tab-content {
	display: none !important;
	padding-top: 0;
}

.product-tabs-section .product-tabs .tab.active .tab-content {
	display: block !important;
}

/* Таблица атрибутов */
img.tab-attributes-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.product-tabs-section .product-tabs .tab-content .h3 {
	margin-bottom: 10px;
}

.product-tabs-section .product-tabs .tab-content table {
	display: flex;
	width: 100%;
}

.product-tabs-section .woocommerce-product-attributes tbody {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.product-tabs-section .woocommerce-product-attributes tbody tr {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: 18px 15px;
	border-bottom: 1px solid var(--border);
}

.product-tabs-section .woocommerce-product-attributes tbody tr th {
	color: var(--black);
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
	min-width: fit-content;
}

.product-tabs-section .woocommerce-product-attributes tbody tr td p {
	font-size: 14px;
	line-height: 21px;
	color: var(--black);
	text-align: right;
}

/* Стили текстовых вкладок */
.product-tabs-section .tab-content.text-box {
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
}

/* Стили для доставки и оплаты */
.product-tabs-section .delivery-box,
.product-tabs-section .payment-box,
.product-tabs-section .exchange-box,
.product-tabs-section .tab-box {
	display: flex;
	flex-direction: column;
	gap: var(--blocks-indent);
	padding: 20px;
	background: var(--light-gray);
	border-radius: 10px;
	margin-bottom: 20px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1279px) {
	.product-tabs-section {
		margin-top: 30px;
	}

	.product-tabs-section .product-tabs .tabs-navigation {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		width: 100%;
	}

	.product-tabs-section .product-tabs .tabs-navigation::-webkit-scrollbar {
		display: none;
	}

	.product-tabs-section .product-tabs .tab-nav-item {
		flex: none;
		font-size: 14px;
		padding: 12px 15px;
	}

	.product-tabs-section .woocommerce-product-attributes tbody tr {
		width: 100%;
	}
	.buy-group .custom-quantity-input {
		width: 100%;
	}
	.buy-group .custom-quantity-input .quantity-btn {
		flex-grow: 1;
		width: auto;
	}
}

/* ===== Product Tabs Section - End ===== */

/* Product Reviews Tab - Start */
.reviews-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
}
.reviews-count {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	background: var(--primary);
	border-radius: 100%;
	color: #fff;
	font-size: 12px;
	line-height: 16px;
	margin-left: 10px;
	margin-right: auto;
	margin-bottom: 6px;
}

section.product-box #reviews.woocommerce-Reviews {
	width: 100%;
}


section.product-box #tab-reviews .reviews-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

section.product-box #tab-reviews .reviews-slider {
	width: 100%;
	margin-bottom: 30px;
}

section.product-box #tab-reviews .reviews-slider .swiper-slide {
	height: auto;
}

section.product-box #tab-reviews .swiper-buttons {
	display: flex;
	gap: 10px;
	margin-top: 30px;
}


section.product-box .woocommerce-noreviews {
	text-align: center;
	color: var(--gray);
	padding: 40px 0;
	font-size: 16px;
}
.reviews-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.reviews-mob-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.reviews-mob-controls .swiper-buttons.outside {
	margin-right: 0;
}

.reviews-slider-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.reviews-slider-wrapper .reviews-slider {
	width: 100%;
}

.reviews-slider-wrapper .reviews-footer {
	flex: 1;
	position: relative;
}

.reviews-slider-wrapper .swiper-buttons.outside {
	position: absolute;
	right: 0;
	bottom: 0;
}

@media (max-width: 1279px) {
	section.product-box #tab-reviews .reviews-header {
		justify-content: center;
		margin-bottom: 20px;
	}

	section.product-box .woocommerce-noreviews {
		padding: 30px 0;
		font-size: 14px;
	}

	.reviews-slider-wrapper .swiper-buttons.outside {
		position: static;
	}
}
/* Product Reviews Tab - End */



/* ===== Аналогічні пропозиції - Start ===== */
section.similar-products {
	padding-top: 80px;
}
section.similar-products .container-similar {
	gap: 30px;
}
section.similar-products .container-similar > .btn {
	margin: 0 auto;
}
@media (max-width: 1279px) {
	section.similar-products {
		padding-top: 40px;
	}
	section.similar-products .container-similar .h2 {
		margin-bottom: 20px;
	}
}
/* ===== Аналогічні пропозиції - End ===== */

/* ===== Дивіться також - Start ===== */
section.also-view-products {
	padding-top: 80px;
}
section.also-view-products .container-also-view {
	gap: 30px;
}
section.also-view-products .container-also-view > .btn {
	margin: 0 auto;
}
@media (max-width: 1279px) {
	section.also-view-products {
		padding-top: 40px;
	}
	section.also-view-products .container-also-view .h2 {
		margin-bottom: 20px;
	}
}
/* ===== Дивіться також - End ===== */

/* ===== Ви переглядали - Start ===== */
section.recently-viewed-products {
	padding-top: 80px;
	padding-bottom: 80px;
}
section.recently-viewed-products .container-recently-viewed {
	gap: 30px;
}
section.recently-viewed-products .container-recently-viewed > .btn {
	margin: 0 auto;
}
@media (max-width: 1279px) {
	section.recently-viewed-products {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	section.recently-viewed-products .container-recently-viewed .h2 {
		margin-bottom: 20px;
	}
}
/* ===== Ви переглядали - End ===== */

/* ===== Тимчасово приховано на запит клієнта (квітень 2026) ===== */
.buy-one-click {
	display: none !important;
}