.pg-slider {
	max-width: 600px;
	margin: 0 auto;
}

.pg-slider__main {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	margin-bottom: 16px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pg-slider__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.pg-slider__thumbs {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: nowrap;
}

.pg-slider__thumb {
	width: calc((100% - 24px) / 3);
	height: auto;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	border: 2px solid transparent;
	background: #FFFFFF!important;
	overflow: hidden;
	transition: border-color 0.2s;
	padding: 0;
}

.pg-slider__thumb:hover,
.pg-slider__thumb.active {
	border-color: #333;
}

.pg-slider__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

/* Icons & Text Grid */
.icons-text-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 40px;
}

@media (max-width: 1024px) {
	.icons-text-grid {
		grid-template-columns: 1fr;
	}
}

.icons-text-grid__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.icons-text-grid__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #c8102e;
}

.icons-text-grid__icon img,
.icons-text-grid__icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.icons-text-grid__text {
	font-size: 14px;
	line-height: 1.4;
	color: #333;
}

/* CTA Button */
.cta-button-wrap {
	margin: 30px 0;
}

.cta-button {
	display: inline-block;
	background: #EC2023;
	color: #fff;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: background 0.2s;
}

.cta-button:hover {
	background: #a00d24;
	color: #fff;
}

/* Specs Table */
.specs-table {
	width: 100%;
}

.specs-table__row {
	display: flex;
	gap: 40px;
	padding: 14px 0;
	border-bottom: 1px solid #e5e5e5;
}

.specs-table__label {
	flex: 0 0 35%;
	font-weight: 700;
	font-size: 14px;
	color: #1a1a1a;
}

.specs-table__value {
	flex: 1;
	font-size: 14px;
	color: #333;
}

/* Icons & Text Highlights (card) */
.icons-text-highlights {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.icons-text-highlights__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.icons-text-highlights__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #c8102e;
}

.icons-text-highlights__icon img,
.icons-text-highlights__icon svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.icons-text-highlights__text {
	font-size: 14px;
	line-height: 1.3;
	color: #333;
}
