.product-logo {
	width: 100%;
	max-width: 230px;
	box-shadow: 1.5px 1.5px 5px 2px rgba(0,0,0,0.1);
	background-color: #e43824;
	border-radius: 10px;
}
@media only screen and (max-width: 767px) {
	.et_pb_image.product-logo {
		align-self: start !important;
		margin-right: auto !important;
	}
}

/* KEY ADVANTAGES - TYPES */

.product-types-wrapper .product-types,
.product-key-advantages .advantages-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
/* 	margin: 30px 0; */
}

.product-types .product-types-box {
	flex: 1 1 calc(33.333% - 20px);
	background-color: #f5f5f5;
	padding: 20px;
	color: #333;
	border-radius: 10px;
	box-sizing: border-box;
}

.product-key-advantages .advantage-box {
	flex: 1 1 calc(33.333% - 20px);
	background: #e43824;
	border: 3px solid #e43824;
	padding: 20px;
	color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
}

.product-types .product-types-box .product-image {
	background-color: #fff;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4/2;
	margin-bottom: 10px;
}

.product-types .product-types-box .product-image img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

.product-types .product-types-box h3 {
	font-size: 24px !important;
	font-weight: 700;
	margin-bottom: 10px;
	color: #e43824 !important;
	max-width: 300px;
	padding-bottom: 0 !important;
}

.product-key-advantages .advantage-box h3 {
	font-size: 24px !important;
	font-weight: 700;
	margin-bottom: 10px;
	color: #fff !important;
	max-width: 300px;
	padding-bottom: 0 !important;
}

.product-types .product-types-box p,
.product-types .product-types-box a {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.product-types .product-types-box a {
	color: #e43824;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.product-key-advantages .advantage-box p,
.product-key-advantages .advantage-box a {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.product-key-advantages .advantage-box a {
	text-decoration: underline;
	font-weight: 700;
	cursor: pointer;
	color: #fff;
}

.product-key-advantages .advantage-box:last-child {
	background: #ffcc00;
	border: 3px solid #e43824;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.product-key-advantages .advantage-box:last-child h3,
.product-key-advantages .advantage-box:last-child p,
.product-key-advantages .advantage-box:last-child a {
	color: #333 !important;
}

.product-key-advantages .advantage-box:last-child h3 {
	font-size: 40px !important;
}

.product-key-advantages .advantage-box a.custom_button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 10px;
	padding: 10px;
	text-decoration: none;
	color: #fff !important;
	background-color: #e43824;
	border: 2px solid #ffcc00;
	transition: 0.3s;
	cursor: pointer;
	font-size: 22px;
}

.product-key-advantages .advantage-box a.custom_button:hover {
	color: #333 !important;
	background-color: #ffcc00;
	border: 2px solid #e43824;
}

@media only screen and (max-width: 1280px) {
	.product-types-wrapper .product-types,
	.product-key-advantages .advantages-wrapper {
		gap: 20px;
	}
	.product-types .product-types-box,
	.product-key-advantages .advantage-box {
		flex: 1 1 calc(50% - 10px);
	}
	.product-key-advantages .advantage-box:last-child h3 {
		font-size: 30px !important;
	}
	.product-types .product-types-box h3,
	.product-key-advantages .advantage-box h3 {
		font-size: 20px !important;
	}
	.product-key-advantages .advantage-box a.custom_button {
		font-size: 18px;
	}
} 

@media only screen and (max-width: 980px) {
	.product-types .product-types-box,
	.product-key-advantages .advantage-box {
		flex: 1 1 100%;
	}
}


/* Gallery */
.product-gallery::after {
	position: absolute;
	content: '';
	background: #e43824;
	background-image: url(/wp-content/uploads/2026/03/wb-bg-500x187-1.webp);
	background-size: 55%;
	background-position: bottom right;
	background-repeat: no-repeat;
	width: 100%;
	height: 300px;
	max-height: 100%;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 12px;
}

/* FAQs */

.product-faqs-accordion {
	display: flex;
	align-items: start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.product-faqs-accordion .faqs-block {
	cursor: pointer;
	border: 3px solid #e43824;
	background-color: #e43824;
	border-radius: 14px;
	padding: 15px;
	width: 48%;
	flex: 1 1 48%;
	margin: 0 1% 25px;
}

.product-faqs-accordion .faqs-block .question {
	transition: 0.3s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-faqs-accordion .faqs-block .question .arrow-down .icon {
/* 	transition: 0.3s; */
	position: relative;
	transform: rotate(0deg);
	fill: #fff;
	stroke: transparent;
	width: 20px;
	max-width: 20px;
	max-height: 20px;
	height: 20px;
	margin-top: 5px;
}

.product-faqs-accordion .faqs-block .question h3 {
	font-weight: 700;
	color: #fff;
	font-size: 18px !important;
	padding: 0;
}

.product-faqs-accordion .faqs-block .answer {
	font-size: 16px !important;
	line-height: 1.4;
	display: none;
}

.product-faqs-accordion .faqs-block .answer p,
.product-faqs-accordion .faqs-block .answer a {
	color: #333 !important;
} 

.product-faqs-accordion .faqs-block .answer a {
	text-decoration: underline;
	font-weight: 600;
}

@media only screen and (max-width: 768px) {
	.product-faqs-accordion .faqs-block {
		border: 2px solid #e43824;
		width: 100%;
		margin: 0 0 15px;
		flex: 1 1 100%;
	}
	.product-faqs-accordion .faqs-block  .question .arrow-down .icon {
		width: 20px;
		max-width: 20px;
		max-height: 20px;
		height: 20px;
	}
	.product-faqs-accordion .faqs-block .question h3 {
		/* 			font-size: 18px; */
	}
	.product-faqs-accordion .faqs-block .answer {
		font-size: 14px !important;
	}
	.product-faqs-accordion .faqs-block.active {
		border: 2px solid #ffcc00;
	}
}

/* Active */
.product-faqs-accordion .faqs-block.active {
	border: 3px solid #ffcc00;
	background-color: #ffcc00;
}

.product-faqs-accordion .faqs-block.active .question {
	margin-bottom: 10px;
}

.product-faqs-accordion .faqs-block.active .question h3 {
	color: #333 !important;
}

.product-faqs-accordion .faqs-block.active .question .arrow-down .icon {
	transform: rotate(180deg);
	fill: #333;
}
/* .product-faqs-accordion .faqs-block.active .answer {
	color: #333 !important;
} */