/* =========================================================
   SINGLE PRODUCT PAGE
   Premium spec page — matches the homepage's established
   design language (floating badges, hover-zoom, sticky
   sidebar, scroll-reveal). Uses CSS variables from style.css
   only — no variables redefined. Transitions only — no
   keyframes.
========================================================= */


/* ---------------------------------------------------------
   Breadcrumb
--------------------------------------------------------- */
.single-product__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-xs);
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-lg) var(--container-padding-inline) 0;
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

.single-product__breadcrumb a {
	color: var(--color-text-secondary);
	transition: color var(--transition-base);
}

.single-product__breadcrumb a:hover {
	color: var(--color-accent);
}


/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.single-product__header {
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-lg) var(--container-padding-inline) 0;
}

.single-product__category {
	display: inline-flex;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-accent-dark);
}

.single-product__title {
	margin-top: var(--space-xs);
	font-family: var(--font-family-heading);
	font-size: var(--font-size-4xl);
	font-weight: var(--font-weight-bold);
	line-height: var(--line-height-tight);
	letter-spacing: var(--letter-spacing-tight);
	color: var(--color-text-primary);
}

.single-product__short-desc {
	margin-top: var(--space-md);
	max-width: var(--container-sm);
	font-size: var(--font-size-lg);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
}


/* ---------------------------------------------------------
   Layout — Media + Details
--------------------------------------------------------- */
.single-product__layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-2xl);
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-2xl) var(--container-padding-inline) 0;
	align-items: start;
}


/* ---------------------------------------------------------
   Media — Image with Floating Badges + Hover Zoom
--------------------------------------------------------- */
.single-product__media {
	position: relative;
	grid-column: 1;
	grid-row: 1 / 3;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-color: var(--color-background-alt);
	box-shadow: var(--shadow-md);
}

.single-product__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.single-product__media:hover .single-product__image {
	transform: scale(1.04);
}

.single-product__badge,
.single-product__status {
	position: absolute;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	padding: var(--space-xxs) var(--space-md);
	border-radius: var(--radius-full);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
}

.single-product__badge {
	top: var(--space-lg);
	left: var(--space-lg);
	background-color: var(--color-accent);
	color: var(--color-text-inverse);
}

.single-product__status {
	top: var(--space-lg);
	right: var(--space-lg);
	background-color: var(--color-background);
	color: var(--color-text-primary);
	box-shadow: var(--shadow-sm);
}


/* ---------------------------------------------------------
   Details Sidebar — Sticky on Scroll
--------------------------------------------------------- */
.single-product__details {
	grid-column: 2;
	grid-row: 2;
	position: sticky;
	top: var(--space-xl);
	transition: opacity var(--transition-slow), transform var(--transition-slow);
}


/* ---------------------------------------------------------
   Gallery Thumbnails
--------------------------------------------------------- */
.single-product__gallery {
	display: grid;
	grid-column: 2;
	grid-row: 1;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 80px;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.single-product__gallery-thumb {
	width: 100%;
	height: 100%;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	overflow: hidden;
	cursor: pointer;
	background: none;
	transition: border-color var(--transition-base), opacity var(--transition-base), transform var(--transition-fast);
}

.single-product__gallery-thumb:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.single-product__gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-slow);
}

.single-product__gallery-thumb:hover img {
	transform: scale(1.08);
}

.single-product__gallery-thumb:hover,
.single-product__gallery-thumb:focus-visible {
	border-color: var(--color-border);
	transform: translateY(-2px);
}

.single-product__gallery-thumb.is-active {
	border-color: var(--color-accent);
}


/* ---------------------------------------------------------
   Colour Swatches
--------------------------------------------------------- */
.single-product__colors {
	margin-bottom: var(--space-lg);
}

.single-product__colors-label {
	display: block;
	margin-bottom: var(--space-sm);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.single-product__colors-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.single-product__color-swatch {
	display: inline-block;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: var(--radius-full);
	border: 2px solid var(--color-background);
	box-shadow: 0 0 0 1px var(--color-border);
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.single-product__color-swatch.is-active {
	box-shadow: 0 0 0 2px var(--color-accent);
	transform: scale(1.08);
}

.single-product__color-swatch:hover {
	transform: scale(1.12);
	box-shadow: 0 0 0 1px var(--color-accent);
}


/* ---------------------------------------------------------
   Specifications — Premium Stat-Card Grid
--------------------------------------------------------- */
.single-product__specs {
	padding: var(--space-xl);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.single-product__specs-title {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}

.single-product__specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

.single-product__spec-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-xxs);
	padding: var(--space-md);
	border-radius: var(--radius-md);
	background-color: var(--color-background-alt);
	transition: background-color var(--transition-base);
}

.single-product__spec-card:hover {
	background-color: var(--color-background);
	box-shadow: var(--shadow-sm);
}

.single-product__spec-label {
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.single-product__spec-value {
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}


/* ---------------------------------------------------------
   CTA Actions
--------------------------------------------------------- */
.single-product__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
}

.single-product__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-sm) var(--space-xl);
	border-radius: var(--radius-full);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	text-decoration: none;
	border: 1px solid transparent;
	transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.single-product__cta:hover,
.single-product__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.single-product__cta--primary {
	background-color: var(--color-accent);
	color: var(--color-text-inverse);
	border-color: var(--color-accent);
}

.single-product__cta--primary:hover,
.single-product__cta--primary:focus-visible {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
}

.single-product__cta--secondary {
	background-color: var(--color-primary);
	color: var(--color-text-inverse);
	border-color: var(--color-primary);
}

.single-product__cta--tertiary {
	background-color: transparent;
	color: var(--color-text-primary);
	border-color: var(--color-border);
}

.single-product__cta--tertiary:hover,
.single-product__cta--tertiary:focus-visible {
	background-color: var(--color-background-alt);
}

.single-product__cta--whatsapp {
	background-color: #25d366;
	color: var(--color-text-inverse);
	border-color: #25d366;
}


/* ---------------------------------------------------------
   Description Content
--------------------------------------------------------- */
.single-product__content {
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-2xl) var(--container-padding-inline) 0;
	font-size: var(--font-size-md);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
}


/* ---------------------------------------------------------
   Related Models
--------------------------------------------------------- */
.single-product__related {
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-3xl) var(--container-padding-inline);
}

.single-product__related-title {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}

.single-product__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
	margin-top: var(--space-lg);
}

.single-product__related-card {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow var(--transition-base), transform var(--transition-base), opacity var(--transition-slow);
}

.single-product__related-card:hover,
.single-product__related-card:focus-visible,
.single-product__related-card.is-active,
.single-product__related-card.is-touched {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.single-product__related-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.single-product__related-card:hover .single-product__related-image,
.single-product__related-card.is-active .single-product__related-image,
.single-product__related-card.is-touched .single-product__related-image {
	transform: scale(1.06);
}

.single-product__related-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-xxs);
	padding: 0 var(--space-md) var(--space-md);
}

.single-product__related-name {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}

.single-product__related-highlight {
	font-size: var(--font-size-xs);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-muted);
}

.single-product__related-cta {
	margin-top: var(--space-xxs);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	color: var(--color-accent-dark);
}


/* ---------------------------------------------------------
   JS State Class Support — Scroll Reveal
   Progressive enhancement via the CSS `scripting` media
   feature, matching the strategy already established across
   the homepage sections: the pre-reveal hidden state only
   ever applies in browsers that report scripting as enabled.
   If JavaScript is disabled, content stays fully visible —
   never blocked on scroll.
--------------------------------------------------------- */
@media (scripting: enabled) {

	.single-product__details:not(.is-revealed) {
		opacity: 0;
		transform: translateY(24px);
	}

	.single-product__related-card:not(.is-revealed) {
		opacity: 0;
		transform: translateY(24px);
	}
}


/* ---------------------------------------------------------
   Responsive — Tablet
--------------------------------------------------------- */
@media (max-width: 1024px) {

	.single-product__layout {
		grid-template-columns: 1fr;
	}

	.single-product__media,
	.single-product__gallery,
	.single-product__details {
		grid-column: 1;
		grid-row: auto;
	}

	.single-product__details {
		position: static;
	}

	.single-product__title {
		font-size: var(--font-size-3xl);
	}

	.single-product__related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ---------------------------------------------------------
   Responsive — Mobile
--------------------------------------------------------- */
@media (max-width: 576px) {

	.single-product__title {
		font-size: var(--font-size-2xl);
	}

	.single-product__short-desc {
		font-size: var(--font-size-md);
	}

	.single-product__specs-grid {
		grid-template-columns: 1fr;
	}

	.single-product__cta {
		width: 100%;
	}

	.single-product__related-grid {
		grid-template-columns: 1fr;
	}

	.single-product__badge,
	.single-product__status {
		top: var(--space-sm);
	}

	.single-product__badge {
		left: var(--space-sm);
	}

	.single-product__status {
		right: var(--space-sm);
	}
}


/* =========================================================
   PREMIUM LANDING-PAGE SECTIONS
   Every rule below is additive — nothing above this point
   was changed. Uses CSS variables from style.css only.
========================================================= */


/* ---------------------------------------------------------
   Hero — Headline + Quick Stats (new elements only)
--------------------------------------------------------- */
.single-product__headline {
	margin-top: var(--space-sm);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-medium);
	color: var(--color-accent-dark);
}

.single-product__quick-stats {
	display: flex;
	gap: var(--space-lg);
	margin-top: var(--space-lg);
	padding: var(--space-md) 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.single-product__quick-stat {
	display: flex;
	flex-direction: column;
}

.single-product__quick-stat-value {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text-primary);
}

.single-product__quick-stat-label {
	margin-top: var(--space-xxs);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}


/* ---------------------------------------------------------
   Battery Type Dropdown
--------------------------------------------------------- */
.single-product__battery-type {
	margin-top: var(--space-lg);
}

.single-product__battery-type-label {
	display: block;
	margin-bottom: var(--space-xxs);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.single-product__battery-type-select {
	width: 100%;
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background-color: var(--color-background);
	font-size: var(--font-size-md);
	color: var(--color-text-primary);
	cursor: pointer;
	transition: border-color var(--transition-base);
}

.single-product__battery-type-select:hover,
.single-product__battery-type-select:focus-visible {
	border-color: var(--color-accent);
	outline: none;
}


/* ---------------------------------------------------------
   Key Specs Preview (sidebar)
--------------------------------------------------------- */
.single-product__key-specs {
	margin-top: var(--space-lg);
	padding: var(--space-lg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background-color: var(--color-background-alt);
}

.single-product__key-specs-label {
	display: block;
	margin-bottom: var(--space-sm);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-semibold);
	letter-spacing: var(--letter-spacing-wide);
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.single-product__key-specs-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}

.single-product__key-specs-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--space-md);
	padding-bottom: var(--space-xs);
	border-bottom: 1px dashed var(--color-border);
	font-size: var(--font-size-sm);
}

.single-product__key-specs-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.single-product__key-specs-list li span {
	color: var(--color-text-muted);
}

.single-product__key-specs-list li strong {
	color: var(--color-text-primary);
	text-align: right;
}

.single-product__key-specs-link {
	display: inline-block;
	margin-top: var(--space-md);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-accent-dark);
	text-decoration: none;
}

.single-product__key-specs-link:hover {
	text-decoration: underline;
}


/* ---------------------------------------------------------
   Shared Section Wrapper Pattern
--------------------------------------------------------- */
.single-product__intro,
.single-product__benefits,
.single-product__comfort-safety,
.single-product__who-for,
.single-product__warranty,
.single-product__faq,
.single-product__compare {
	max-width: var(--container-lg);
	margin-inline: auto;
	padding: var(--space-3xl) var(--container-padding-inline) 0;
}

.single-product__section-title {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text-primary);
	text-align: center;
}


/* ---------------------------------------------------------
   Introduction
--------------------------------------------------------- */
.single-product__intro p {
	max-width: var(--container-md);
	margin-inline: auto;
	font-size: var(--font-size-lg);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
	text-align: center;
}


/* ---------------------------------------------------------
   Why This Model — Benefits
--------------------------------------------------------- */
.single-product__benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
	margin-top: var(--space-xl);
	counter-reset: gpipl-benefit-count;
}

.single-product__benefit-card {
	position: relative;
	padding: var(--space-xl);
	padding-top: calc(var(--space-xl) + var(--space-md));
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--color-background) 0%, var(--color-background-alt) 100%);
	overflow: hidden;
	counter-increment: gpipl-benefit-count;
	transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.single-product__benefit-card::after {
	content: counter(gpipl-benefit-count, decimal-leading-zero);
	position: absolute;
	top: var(--space-md);
	right: var(--space-lg);
	font-family: var(--font-family-heading);
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-border);
	line-height: 1;
}

.single-product__benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background-color: var(--color-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-slow);
}

.single-product__benefit-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: var(--color-accent);
}

.single-product__benefit-card:hover::before {
	transform: scaleX(1);
}

.single-product__benefit-title {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}

.single-product__benefit-text {
	margin-top: var(--space-sm);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
}


/* ---------------------------------------------------------
   Inline Enquiry ("Register Your Interest" style)
--------------------------------------------------------- */
.single-product__inline-enquiry {
	position: relative;
	margin-top: var(--space-3xl);
	overflow: hidden;
	background-color: var(--color-background-dark);
}

.single-product__inline-enquiry-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

.single-product__inline-enquiry::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to right, var(--color-background-dark) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.15) 100%);
}

.single-product__inline-enquiry-form {
	position: relative;
	z-index: 2;
	max-width: var(--container-xl);
	margin-inline: auto;
	padding: var(--space-2xl) var(--container-padding-inline);
}

.single-product__inline-enquiry-form .form-enquiry {
	box-shadow: none;
	overflow: visible;
	border-radius: 0;
}

.single-product__inline-enquiry-form .form-enquiry__intro {
	background-color: transparent;
	padding: var(--space-lg);
}

.single-product__inline-enquiry-form .form-enquiry__panel {
	max-width: 420px;
	margin-left: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}


/* ---------------------------------------------------------
   Lifestyle Showcase
--------------------------------------------------------- */
.single-product__showcase {
	margin-top: var(--space-3xl);
	max-width: var(--container-xl);
	margin-inline: auto;
	padding-inline: var(--container-padding-inline);
}

.single-product__showcase-image {
	width: 100%;
	height: auto;
	max-height: 640px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	display: block;
}


/* ---------------------------------------------------------
   Comfort & Safety — Dark Image Highlight Cards
--------------------------------------------------------- */
.single-product__comfort-grid {
	display: flex;
	gap: var(--space-lg);
	margin-top: var(--space-xl);
	overflow-x: auto;
	scroll-snap-type: x proximity;
	padding-bottom: var(--space-sm);
}

.single-product__comfort-card {
	position: relative;
	flex: 0 0 280px;
	height: 340px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	scroll-snap-align: start;
	background-color: var(--color-background-dark);
}

.single-product__comfort-card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	transition: transform var(--transition-slow), opacity var(--transition-base);
}

.single-product__comfort-card:hover .single-product__comfort-card-bg {
	transform: scale(1.06);
	opacity: 0.4;
}

.single-product__comfort-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--color-background-dark) 10%, transparent 70%);
}

.single-product__comfort-card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: var(--space-lg);
}

.single-product__comfort-title {
	font-family: var(--font-family-heading);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-inverse);
}

.single-product__comfort-text {
	margin-top: var(--space-sm);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-relaxed);
	color: rgba(255, 255, 255, 0.8);
}


/* ---------------------------------------------------------
   Who Is It For
--------------------------------------------------------- */
.single-product__who-for {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: var(--space-2xl);
	align-items: center;
	max-width: var(--container-xl);
	margin: var(--space-3xl) auto 0;
	padding-inline: var(--container-padding-inline);
}

.single-product__who-for-media {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background-color: var(--color-background-alt);
}

.single-product__who-for-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-product__who-for-content {
	min-width: 0;
}

.single-product__section-title--left {
	text-align: left;
}

.single-product__who-for-text {
	margin: var(--space-md) 0 0;
	font-size: var(--font-size-lg);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
	text-align: left;
}

.single-product__who-for-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xl);
	margin-top: var(--space-xl);
}

.single-product__who-for-highlight {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.single-product__who-for-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background-color: var(--color-background-alt);
	color: var(--color-accent);
	flex: 0 0 auto;
}

.single-product__who-for-highlight-text {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-primary);
}


/* ---------------------------------------------------------
   Specifications — Brochure link addition
--------------------------------------------------------- */
.single-product__specs-brochure {
	display: inline-flex;
	margin-top: var(--space-lg);
}


/* ---------------------------------------------------------
   Mid-Page Demo CTA Banner
--------------------------------------------------------- */
.single-product__mid-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--space-lg);
	max-width: var(--container-lg);
	margin: var(--space-3xl) auto 0;
	padding: var(--space-xl) var(--space-2xl);
	background-color: var(--color-background-alt);
	border-radius: var(--radius-lg);
	text-align: center;
}

.single-product__mid-cta-text {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-medium);
	color: var(--color-text-primary);
}


/* ---------------------------------------------------------
   Hover-Zoom (in-place magnify)
   Desktop/mouse only — hover has no meaning on touch devices,
   and the lightbox (tap-to-fullscreen) already covers mobile.
--------------------------------------------------------- */
.single-product__zoom-wrap {
	position: relative;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.single-product__zoom-overlay {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-size: 200%;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition-fast);
}

.single-product__zoom-overlay.is-active {
	opacity: 1;
}

@media (max-width: 900px), (hover: none) {

	.single-product__zoom-wrap {
		cursor: default;
	}

	.single-product__zoom-overlay {
		display: none;
	}
}


/* ---------------------------------------------------------
   Image Zoom Trigger + Lightbox
--------------------------------------------------------- */
.single-product__zoom-trigger {
	position: absolute;
	right: var(--space-lg);
	bottom: var(--space-lg);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: var(--radius-full);
	background-color: var(--color-background);
	color: var(--color-text-primary);
	box-shadow: var(--shadow-md);
	cursor: pointer;
	transition: background-color var(--transition-base), transform var(--transition-fast);
}

.single-product__zoom-trigger:hover,
.single-product__zoom-trigger:focus-visible {
	background-color: var(--color-accent);
	color: var(--color-text-inverse);
	transform: scale(1.06);
}

.single-product__lightbox {
	position: fixed;
	inset: 0;
	z-index: var(--z-index-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(10, 10, 10, 0.92);
	opacity: 0;
	transition: opacity var(--transition-base);
}

.single-product__lightbox[hidden] {
	display: none;
}

.single-product__lightbox.is-visible {
	opacity: 1;
}

.single-product__lightbox-image {
	max-width: 88vw;
	max-height: 82vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-md);
}

.single-product__lightbox-close {
	position: absolute;
	top: var(--space-lg);
	right: var(--space-lg);
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: var(--radius-full);
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--color-text-inverse);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.single-product__lightbox-close:hover,
.single-product__lightbox-close:focus-visible {
	background-color: rgba(255, 255, 255, 0.24);
}

.single-product__lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: var(--radius-full);
	background-color: rgba(255, 255, 255, 0.12);
	color: var(--color-text-inverse);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	transition: background-color var(--transition-base);
}

.single-product__lightbox-nav:hover,
.single-product__lightbox-nav:focus-visible {
	background-color: rgba(255, 255, 255, 0.24);
}

.single-product__lightbox-nav--prev {
	left: var(--space-lg);
}

.single-product__lightbox-nav--next {
	right: var(--space-lg);
}


/* ---------------------------------------------------------
   Warranty Teaser
--------------------------------------------------------- */
.single-product__warranty {
	text-align: center;
}

.single-product__warranty-text {
	max-width: var(--container-md);
	margin: var(--space-md) auto 0;
	font-size: var(--font-size-md);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
}


/* ---------------------------------------------------------
   Product FAQ — native <details>/<summary>, zero JS required
--------------------------------------------------------- */
.single-product__faq-list {
	max-width: var(--container-md);
	margin: var(--space-xl) auto 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.single-product__faq-item {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-md) var(--space-lg);
}

.single-product__faq-question {
	cursor: pointer;
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-medium);
	color: var(--color-text-primary);
	list-style: none;
}

.single-product__faq-question::-webkit-details-marker {
	display: none;
}

.single-product__faq-question::after {
	content: '+';
	float: right;
	font-weight: var(--font-weight-bold);
	color: var(--color-accent);
}

.single-product__faq-item[open] .single-product__faq-question::after {
	content: '\2212';
}

.single-product__faq-answer {
	margin-top: var(--space-sm);
	font-size: var(--font-size-sm);
	line-height: var(--line-height-relaxed);
	color: var(--color-text-secondary);
}


/* ---------------------------------------------------------
   Compare Models
--------------------------------------------------------- */
.single-product__compare {
	text-align: center;
}

.single-product__compare-intro {
	margin-top: var(--space-sm);
	color: var(--color-text-secondary);
}

.single-product__compare-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.single-product__compare-card {
	display: inline-flex;
	align-items: center;
	padding: var(--space-sm) var(--space-lg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--color-text-primary);
	text-decoration: none;
	transition: border-color var(--transition-base), color var(--transition-base), background-color var(--transition-base);
}

.single-product__compare-card:hover,
.single-product__compare-card:focus-visible {
	border-color: var(--color-accent);
	color: var(--color-accent-dark);
	background-color: var(--color-background-alt);
}


/* ---------------------------------------------------------
   Final Lead-Gen CTA Band
--------------------------------------------------------- */
.single-product__final-cta {
	margin-top: var(--space-3xl);
	padding: var(--space-3xl) var(--container-padding-inline);
	background-color: var(--color-background-dark);
	text-align: center;
}

.single-product__final-cta-title {
	max-width: var(--container-md);
	margin-inline: auto;
	font-family: var(--font-family-heading);
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-bold);
	color: var(--color-text-inverse);
}

.single-product__final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
}


/* ---------------------------------------------------------
   Scroll Reveal — new sections join the existing pattern
--------------------------------------------------------- */
@media (scripting: enabled) {

	.single-product__benefit-card:not(.is-revealed),
	.single-product__comfort-card:not(.is-revealed),
	.single-product__compare-card:not(.is-revealed) {
		opacity: 0;
		transform: translateY(24px);
	}
}

.single-product__benefit-card,
.single-product__comfort-card,
.single-product__compare-card {
	transition: opacity var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}


/* ---------------------------------------------------------
   Responsive — Premium Sections
--------------------------------------------------------- */
@media (max-width: 1024px) {

	.single-product__benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {

	.single-product__headline {
		font-size: var(--font-size-lg);
	}

	.single-product__quick-stats {
		gap: var(--space-md);
	}

	.single-product__section-title {
		font-size: var(--font-size-2xl);
	}

	.single-product__benefits-grid {
		grid-template-columns: 1fr;
	}

	.single-product__final-cta-title {
		font-size: var(--font-size-2xl);
	}

	.single-product__final-cta-actions .single-product__cta {
		width: 100%;
	}

	.single-product__inline-enquiry-form {
		padding: var(--space-lg);
	}

	.single-product__inline-enquiry-form .form-enquiry {
		grid-template-columns: 1fr;
	}

	.single-product__inline-enquiry-form .form-enquiry__panel {
		max-width: none;
		margin-left: 0;
		margin-top: var(--space-lg);
	}

	.single-product__who-for {
		grid-template-columns: 1fr;
	}

	.single-product__who-for-media {
		aspect-ratio: 4 / 3;
	}
}

/* =========================================================
   GPIPL EV — PREMIUM PRODUCT V2
   Visual upgrade only. Section order + existing functionality
   remain unchanged.
========================================================= */

/* ---------------- HERO ---------------- */
.single-product__header {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: clamp(460px, 62vw, 720px);
	max-width: none;
	margin: 0;
	padding: clamp(72px, 9vw, 120px) max(var(--container-padding-inline), 6vw) clamp(48px, 7vw, 90px);
	background-color: #0b1515;
	background-image:
		linear-gradient(90deg, rgba(4,14,14,.90) 0%, rgba(4,14,14,.62) 42%, rgba(4,14,14,.18) 78%, rgba(4,14,14,.08) 100%),
		var(--gpipl-hero-bg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.single-product__header::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 75% 30%, rgba(0,199,167,.18), transparent 30%),
		linear-gradient(0deg, rgba(4,14,14,.52), transparent 45%);
	pointer-events: none;
}

.single-product__hero-content {
	position: relative;
	z-index: 2;
	width: min(720px, 100%);
}

.single-product__header .single-product__category {
	color: #58e3ce;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.single-product__header .single-product__title {
	margin-top: 14px;
	color: #fff;
	font-size: clamp(48px, 7vw, 92px);
	line-height: .92;
	letter-spacing: -.055em;
	text-shadow: 0 8px 30px rgba(0,0,0,.22);
}

.single-product__header .single-product__headline {
	margin-top: 20px;
	color: #fff;
	font-size: clamp(20px, 2.2vw, 30px);
	font-weight: 600;
	line-height: 1.2;
	max-width: 600px;
}

.single-product__header .single-product__short-desc {
	margin-top: 16px;
	max-width: 620px;
	color: rgba(255,255,255,.82);
	font-size: 16px;
	line-height: 1.7;
}

.single-product__hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.single-product__hero-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 15px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(12px);
	color: rgba(255,255,255,.76);
	font-size: 12px;
}

.single-product__hero-meta strong {
	color: #fff;
	font-size: 14px;
}

/* Make product stage feel like a premium showroom */
.single-product__layout {
	max-width: var(--container-xl);
	padding-top: clamp(42px, 6vw, 80px);
	padding-bottom: clamp(40px, 5vw, 70px);
}

.single-product__media {
	border-radius: 28px;
	background: linear-gradient(145deg, #f8fbfa, #edf4f2);
	box-shadow: 0 30px 80px rgba(8,35,32,.12);
	border: 1px solid rgba(10,31,30,.06);
}

.single-product__zoom-wrap {
	background: #fff;
	border-radius: 28px;
}

/* ---------------- BATTERY ---------------- */
.single-product__battery-type {
	margin-top: 22px;
	padding: 18px;
	border: 1px solid rgba(10,31,30,.10);
	border-radius: 18px;
	background: linear-gradient(145deg, #fbfdfc, #f3f8f6);
}

.single-product__battery-type-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.single-product__battery-type-label {
	margin: 0;
	color: var(--color-text-primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
}

.single-product__battery-type-note {
	font-size: 11px;
	color: var(--color-text-muted);
}

.single-product__battery-type-select {
	min-height: 52px;
	padding: 0 46px 0 16px;
	border: 1px solid rgba(10,31,30,.12);
	border-radius: 13px;
	background-color: #fff;
	box-shadow: 0 7px 20px rgba(10,31,30,.05);
	font-weight: 650;
}

/* ---------------- SPECIFICATIONS ---------------- */
.single-product__specs {
	max-width: var(--container-xl);
	margin: 0 auto;
	padding: clamp(34px, 5vw, 62px) var(--container-padding-inline);
	border: 0;
	border-top: 1px solid rgba(10,31,30,.08);
	border-bottom: 1px solid rgba(10,31,30,.08);
	border-radius: 0;
	background:
		radial-gradient(circle at 90% 0%, rgba(0,199,167,.10), transparent 28%),
		#f5f8f7;
}

.single-product__specs-title {
	font-size: clamp(28px, 3vw, 42px);
	letter-spacing: -.035em;
}

.single-product__specs-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 28px;
	background: rgba(10,31,30,.09);
	border: 1px solid rgba(10,31,30,.09);
	border-radius: 18px;
	overflow: hidden;
}

.single-product__spec-card {
	min-height: 92px;
	justify-content: center;
	padding: 20px 22px;
	border-radius: 0;
	background: #fff;
}

.single-product__spec-card--featured {
	background: linear-gradient(135deg, #0d211f, #102e2a);
}

.single-product__spec-card--featured .single-product__spec-label,
.single-product__spec-card--featured .single-product__spec-value,
.single-product__spec-card--featured .single-product__spec-note {
	color: #fff;
}

.single-product__spec-label {
	font-size: 10px;
	letter-spacing: .14em;
}

.single-product__spec-value {
	font-size: 15px;
	line-height: 1.35;
}

.single-product__spec-note {
	margin-top: 4px;
	font-size: 11px;
	color: var(--color-text-muted);
}

/* ---------------- CONTENT SECTIONS ---------------- */
.single-product__intro,
.single-product__benefits,
.single-product__comfort-safety,
.single-product__who-for,
.single-product__warranty,
.single-product__faq,
.single-product__compare {
	padding-top: clamp(70px, 8vw, 120px);
	padding-bottom: clamp(70px, 8vw, 120px);
}

.single-product__section-title {
	font-size: clamp(32px, 4vw, 54px);
	letter-spacing: -.045em;
}

.single-product__benefit-card {
	min-height: 220px;
	border-radius: 22px;
	padding: 28px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(10,31,30,.05);
}

/* Inline enquiry */
.single-product__inline-enquiry {
	margin-top: 0;
	min-height: 620px;
	display: flex;
	align-items: center;
}

/* Comfort cards larger and more premium */
.single-product__comfort-card {
	flex-basis: min(360px, 78vw);
	height: 430px;
	border-radius: 24px;
}

/* FAQ cleaner */
.single-product__faq-item {
	border-radius: 14px;
	background: #fff;
}

/* Final CTA */
.single-product__final-cta {
	padding-top: 110px;
	padding-bottom: 110px;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 1024px) {
	.single-product__specs-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.single-product__header {
		min-height: 520px;
		padding: 80px 22px 44px;
		background-position: 62% center;
	}

	.single-product__header .single-product__title {
		font-size: clamp(44px, 14vw, 62px);
	}

	.single-product__header .single-product__headline {
		font-size: 19px;
	}

	.single-product__header .single-product__short-desc {
		font-size: 14px;
	}

	.single-product__specs-grid {
		grid-template-columns: 1fr;
	}

	.single-product__spec-card {
		min-height: 78px;
	}

	.single-product__battery-type-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.single-product__inline-enquiry {
		min-height: 0;
	}
}

/* =========================================================
   GPIPL EV — PRODUCT PAGE V2 / AUTOMOTIVE ART DIRECTION
   Final override layer. Keep existing PHP/JS and section order.
   ========================================================= */

.single-product {
  --gpipl-ink: #0b1211;
  --gpipl-dark: #0c1514;
  --gpipl-dark-2: #111d1b;
  --gpipl-teal: #00c2aa;
  --gpipl-teal-2: #19d8be;
  --gpipl-mist: #f2f7f6;
  --gpipl-line: rgba(11,18,17,.10);
  --gpipl-soft-shadow: 0 24px 70px rgba(7,24,22,.10);
  color: var(--gpipl-ink);
  background: #fff;
}

.single-product__breadcrumb {
  max-width: 1180px;
  padding: 18px 24px 8px;
  font-size: 11px;
  letter-spacing: .04em;
}

/* HERO */
.single-product__header {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  max-width: none;
  margin: 0;
  padding: 90px max(7vw, 48px) 72px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,12,11,.88) 0%, rgba(4,12,11,.62) 38%, rgba(4,12,11,.15) 72%, rgba(4,12,11,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.46)),
    var(--gpipl-hero-bg) center center / cover no-repeat,
    #182321;
}

.single-product__header::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: -2;
  background: var(--gpipl-hero-bg) center / cover no-repeat;
  transform: scale(1.06);
  filter: saturate(.92) contrast(1.03);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.single-product__header:hover::before { transform: scale(1.10); }

.single-product__header::after {
  content: "";
  position: absolute;
  left: 7vw;
  bottom: 42px;
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, var(--gpipl-teal), transparent);
  box-shadow: 0 0 28px rgba(0,194,170,.45);
}

.single-product__hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0;
}

.single-product__header .single-product__category {
  margin-bottom: 14px;
  color: var(--gpipl-teal-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .20em;
}

.single-product__header .single-product__title {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .88;
  letter-spacing: -.055em;
  text-shadow: 0 8px 35px rgba(0,0,0,.28);
}

.single-product__header .single-product__headline {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.18;
}

.single-product__header .single-product__short-desc {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.7;
}

.single-product__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.single-product__hero-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.78);
  font-size: 11px;
}
.single-product__hero-meta strong { color: #fff; }

/* PRODUCT SHOWCASE */
.single-product__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 28px;
  max-width: 1240px;
  padding: 78px 28px 72px;
  align-items: stretch;
}

.single-product__media {
  min-height: 620px;
  border: 1px solid rgba(11,18,17,.07);
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #fff 0%, #f4f8f7 58%, #e9efee 100%);
  box-shadow: var(--gpipl-soft-shadow);
}

.single-product__zoom-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 620px;
  padding: 60px;
}

.single-product__image {
  width: min(100%, 620px);
  height: auto;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(4,25,22,.20));
  transform: translateY(0) scale(.96);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}
.single-product__media:hover .single-product__image {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 38px 32px rgba(4,25,22,.24));
}

.single-product__badge,
.single-product__status {
  padding: 9px 13px;
  border: 1px solid rgba(11,18,17,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  color: var(--gpipl-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.single-product__gallery {
  display: grid;
  grid-template-columns: repeat(4, 72px);
  grid-auto-rows: 72px;
  gap: 9px;
  align-content: start;
  padding: 0;
}
.single-product__gallery-thumb {
  border: 1px solid rgba(11,18,17,.10);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.single-product__gallery-thumb:hover,
.single-product__gallery-thumb.is-active {
  transform: translateY(-3px);
  border-color: var(--gpipl-teal);
  box-shadow: 0 12px 30px rgba(0,194,170,.16);
}

.single-product__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(11,18,17,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--gpipl-soft-shadow);
}

.single-product__quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.single-product__quick-stat {
  padding: 20px;
  border-radius: 18px;
  background: var(--gpipl-mist);
  border: 1px solid rgba(11,18,17,.06);
}
.single-product__quick-stat-value {
  display: block;
  color: var(--gpipl-ink);
  font-family: var(--font-family-heading);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
}
.single-product__quick-stat-label {
  display: block;
  margin-top: 7px;
  color: #75807d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.single-product__battery-type {
  padding: 20px;
  border-radius: 18px;
  background: var(--gpipl-dark);
  color: #fff;
  box-shadow: 0 18px 40px rgba(8,20,19,.15);
}
.single-product__battery-type-label { color: #fff; }
.single-product__battery-type-note { color: rgba(255,255,255,.52); }
.single-product__battery-type-select {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: #172321;
  color: #fff;
}

.single-product__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.single-product__cta {
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.single-product__cta:hover { transform: translateY(-3px); }
.single-product__cta--primary,
.single-product__cta--whatsapp {
  background: var(--gpipl-teal);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,194,170,.24);
}
.single-product__cta--secondary,
.single-product__cta--tertiary {
  border: 1px solid rgba(11,18,17,.12);
  background: #fff;
  color: var(--gpipl-ink);
}

/* SPECIFICATIONS */
.single-product__specs {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 28px 76px;
  border-radius: 0;
  background: var(--gpipl-mist);
}
.single-product__specs-title {
  margin-bottom: 24px;
  font-family: var(--font-family-heading);
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.045em;
}
.single-product__specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.single-product__spec-card {
  min-height: 112px;
  padding: 20px 18px;
  border: 1px solid rgba(11,18,17,.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(11,18,17,.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.single-product__spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,194,170,.34);
  box-shadow: 0 18px 40px rgba(11,18,17,.09);
}
.single-product__spec-card--featured {
  background: var(--gpipl-dark);
  color: #fff;
  border-color: var(--gpipl-dark);
}
.single-product__spec-label {
  display: block;
  margin-bottom: 10px;
  color: #7d8986;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.single-product__spec-card--featured .single-product__spec-label { color: rgba(255,255,255,.52); }
.single-product__spec-value {
  display: block;
  color: var(--gpipl-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.single-product__spec-card--featured .single-product__spec-value { color: #fff; }
.single-product__spec-note { color: #89938f; font-size: 10px; }

/* CONTENT RHYTHM */
.single-product__intro,
.single-product__benefits,
.single-product__comfort-safety,
.single-product__who-for,
.single-product__warranty,
.single-product__faq,
.single-product__compare,
.single-product__related {
  max-width: 1240px;
  margin-inline: auto;
  padding: 96px 28px;
}

.single-product__intro {
  text-align: center;
  max-width: 1000px;
}
.single-product__intro p {
  max-width: 800px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.9;
  color: #687572;
}

.single-product__section-title {
  margin-bottom: 38px;
  font-family: var(--font-family-heading);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.05em;
}

/* WHY CX-1 */
.single-product__benefits {
  background: var(--gpipl-mist);
}
.single-product__benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.single-product__benefit-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(11,18,17,.08);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease, border-color .45s ease;
}
.single-product__benefit-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0,194,170,.12);
  filter: blur(8px);
  transition: transform .5s ease;
}
.single-product__benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,194,170,.28);
  box-shadow: 0 26px 55px rgba(11,18,17,.11);
}
.single-product__benefit-card:hover::before { transform: scale(1.35); }
.single-product__benefit-card::after {
  content: "↗";
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--gpipl-teal);
  font-size: 18px;
}
.single-product__benefit-title {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin-top: 50px;
  font-size: 21px;
  letter-spacing: -.02em;
}
.single-product__benefit-text {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin-top: 12px;
  color: #71807b;
  font-size: 13px;
  line-height: 1.7;
}

/* ENQUIRY */
.single-product__inline-enquiry {
  position: relative;
  min-height: 600px;
  max-width: none;
  margin: 0;
  padding: 90px max(7vw, 28px);
  overflow: hidden;
  background: #101a18;
}
.single-product__inline-enquiry-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: .56;
  transform: scale(1.04);
  filter: saturate(.8);
  transition: transform 1.2s ease;
}
.single-product__inline-enquiry:hover .single-product__inline-enquiry-bg { transform: scale(1.09); }
.single-product__inline-enquiry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,15,14,.94) 0%, rgba(7,15,14,.65) 48%, rgba(7,15,14,.18) 100%);
  pointer-events: none;
}
.single-product__inline-enquiry-form {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
}
.single-product__inline-enquiry-form .form-enquiry__panel {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

/* COMFORT */
.single-product__comfort-safety {
  max-width: none;
  padding: 96px max(7vw, 28px);
  background: #fff;
}
.single-product__comfort-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  max-width: 1160px;
  margin-inline: auto;
}
.single-product__comfort-card {
  position: relative;
  height: 390px;
  min-height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 22px 55px rgba(11,18,17,.13);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.single-product__comfort-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 32px 70px rgba(11,18,17,.19);
}
.single-product__comfort-card-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .8s ease;
}
.single-product__comfort-card:hover .single-product__comfort-card-bg { transform: scale(1.08); }
.single-product__comfort-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.84));
}
.single-product__comfort-card-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
}
.single-product__comfort-title { font-size: 25px; }
.single-product__comfort-text { color: rgba(255,255,255,.74); line-height: 1.65; }

/* WHO IS CX-1 */
.single-product__who-for {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 80px;
  align-items: center;
  background: var(--gpipl-mist);
}
.single-product__who-for-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  border-radius: 28px;
  background: radial-gradient(circle, #fff 0%, #e7efed 75%);
  overflow: hidden;
}
.single-product__who-for-media::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 28px;
  bottom: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  filter: blur(18px);
}
.single-product__who-for-image {
  position: relative;
  z-index: 1;
  max-width: 80%;
  filter: drop-shadow(0 30px 28px rgba(4,25,22,.22));
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.single-product__who-for-media:hover .single-product__who-for-image { transform: translateY(-12px) rotate(-1deg) scale(1.03); }
.single-product__who-for-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.single-product__who-for-highlight {
  padding: 14px;
  border: 1px solid rgba(11,18,17,.08);
  border-radius: 15px;
  background: #fff;
  transition: transform .3s ease;
}
.single-product__who-for-highlight:hover { transform: translateY(-5px); }
.single-product__who-for-highlight-icon { color: var(--gpipl-teal); }
.single-product__who-for-highlight-text { display:block; margin-top:8px; font-size:10px; font-weight:700; }

/* WARRANTY */
.single-product__warranty {
  max-width: none;
  text-align: center;
  background: var(--gpipl-dark);
  color: #fff;
}
.single-product__warranty .single-product__section-title { color:#fff; }
.single-product__warranty-text { max-width: 760px; margin-inline:auto; color:rgba(255,255,255,.65); line-height:1.8; }

/* FAQ */
.single-product__faq { max-width: 1080px; }
.single-product__faq-list { border-top: 1px solid var(--gpipl-line); }
.single-product__faq-item {
  border: 0;
  border-bottom: 1px solid var(--gpipl-line);
  border-radius: 0;
  background: transparent;
}
.single-product__faq-question {
  position: relative;
  padding: 23px 48px 23px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.single-product__faq-question::after {
  content: "+";
  position:absolute;
  right: 0;
  top: 16px;
  color: var(--gpipl-teal);
  font-size: 25px;
  font-weight: 300;
}
.single-product__faq-item[open] .single-product__faq-question::after { content: "−"; }
.single-product__faq-answer {
  max-width: 780px;
  padding: 0 0 24px;
  color: #6c7975;
  line-height: 1.8;
}

/* COMPARE / RELATED */
.single-product__compare { background:#fff; text-align:center; }
.single-product__compare-grid {
  max-width: 920px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.single-product__compare-card,
.single-product__related-card {
  border:1px solid rgba(11,18,17,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 38px rgba(11,18,17,.06);
  transition:transform .4s ease, box-shadow .4s ease;
}
.single-product__compare-card:hover,
.single-product__related-card:hover { transform:translateY(-7px); box-shadow:0 25px 55px rgba(11,18,17,.11); }
.single-product__related { padding-top: 20px; }
.single-product__related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.single-product__related-image { aspect-ratio:1.15; object-fit:contain; background:#f3f7f6; }

/* FINAL CTA */
.single-product__final-cta {
  position:relative;
  max-width:none;
  margin:0;
  padding:120px max(7vw,28px);
  overflow:hidden;
  text-align:center;
  background:
    radial-gradient(circle at 20% 40%, rgba(0,194,170,.18), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(0,194,170,.10), transparent 30%),
    linear-gradient(135deg, #0a1513, #17211f);
}
/* FINAL CTA — remove decorative circles */
.single-product__final-cta::before,
.single-product__final-cta::after {
	content: none !important;
	display: none !important;
}

.single-product__final-cta-title {
  position:relative;
  z-index:1;
  color:#fff;
  font-family:var(--font-family-heading);
  font-size:clamp(38px,6vw,78px);
  line-height:.95;
  letter-spacing:-.055em;
}
.single-product__final-cta-actions { position:relative; z-index:1; margin-top:28px; }

/* MOTION */
@media (prefers-reduced-motion: no-preference) {
  .single-product__hero-content,
  .single-product__media,
  .single-product__details,
  .single-product__spec-card,
  .single-product__benefit-card,
  .single-product__comfort-card,
  .single-product__who-for-media,
  .single-product__faq-item,
  .single-product__related-card {
    will-change: transform;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .single-product__layout { grid-template-columns: 1fr; }
  .single-product__media { min-height: 540px; }
  .single-product__zoom-wrap { min-height: 540px; }
  .single-product__gallery { grid-template-columns: repeat(6,72px); }
  .single-product__specs-grid { grid-template-columns: repeat(2,1fr); }
  .single-product__benefits-grid { grid-template-columns: 1fr 1fr; }
  .single-product__who-for { grid-template-columns:1fr; gap:35px; }
}

@media (max-width: 700px) {
  .single-product__breadcrumb { padding-inline:18px; }
  .single-product__header { min-height: 510px; padding:80px 22px 62px; background-position:62% center; }
  .single-product__header::after { left:22px; bottom:32px; }
  .single-product__layout { padding:45px 16px; }
  .single-product__media { min-height: 400px; border-radius:22px; }
  .single-product__zoom-wrap { min-height:400px; padding:30px; }
  .single-product__gallery { grid-template-columns:repeat(4,1fr); grid-auto-rows:auto; }
  .single-product__details { padding:20px; border-radius:22px; }
  .single-product__actions { grid-template-columns:1fr; }
  .single-product__specs,
  .single-product__intro,
  .single-product__benefits,
  .single-product__comfort-safety,
  .single-product__who-for,
  .single-product__warranty,
  .single-product__faq,
  .single-product__compare,
  .single-product__related { padding:70px 18px; }
  .single-product__specs-grid,
  .single-product__benefits-grid,
  .single-product__comfort-grid,
  .single-product__compare-grid,
  .single-product__related-grid { grid-template-columns:1fr; }
  .single-product__benefit-card { min-height:220px; }
  .single-product__comfort-card { height:330px; min-height:330px; }
  .single-product__who-for-highlights { grid-template-columns:1fr; }
  .single-product__final-cta { padding:90px 22px; }
}
/* =========================================================
   SHOWCASE IMAGE — FULLY VISIBLE / NO CROP
   Desktop + Mobile safe override
   ========================================================= */

.single-product__showcase {
    overflow: hidden;
}

.single-product__showcase-image {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    object-fit: contain !important;
    object-position: center center;
    transform: none;
}

/* Desktop */
@media (min-width: 577px) {
    .single-product__showcase-image {
        width: 100%;
        height: auto !important;
        max-height: 720px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .single-product__showcase-image {
        width: 100%;
        height: auto !important;
        max-height: 620px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .single-product__showcase {
        width: 100%;
        overflow: hidden;
    }

    .single-product__showcase-image {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        max-height: none;
        object-fit: contain !important;
        object-position: center center;
        transform: none;
    }
}
/* =========================================================
   MOBILE FIX — WHO IS IT FOR PRODUCT IMAGE
   Keeps the complete vehicle visible without cropping.
   Scoped only to this section.
========================================================= */

@media (max-width: 576px) {

    .single-product__who-for {
        min-width: 0;
        overflow: hidden;
    }

    .single-product__who-for-media {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 14px;
    }

    .single-product__who-for-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center center;
        transform: none;
    }

    .single-product__who-for-media:hover .single-product__who-for-image {
        transform: none;
    }

    .single-product__who-for-content {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
}


/* PRODUCT HERO — prevent background cropping */
.product-hero,
.product-hero-section {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Mobile */
@media (max-width: 767px) {
    .product-hero,
    .product-hero-section {
        background-size: contain !important;
        background-position: center center !important;
    }
}
/* =========================================================
   GPIPL EV — PRODUCT SPECIFIC FINAL CTA BACKGROUND
   Does NOT affect Featured Image or other sections.
========================================================= */

.single-product__final-cta {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	min-height: 620px;

	display: flex;
	align-items: center;
	justify-content: center;

	background:
		linear-gradient(
			90deg,
			rgba(5, 12, 11, .88) 0%,
			rgba(5, 12, 11, .72) 42%,
			rgba(5, 12, 11, .48) 70%,
			rgba(5, 12, 11, .65) 100%
		),
		var(--color-background-dark);
}


/* Product-specific background image */

.single-product__final-cta-bg {
	position: absolute;
	inset: 0;
	z-index: -2;

	background-image: var(--gpipl-final-cta-bg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	transform: scale(1.03);
}


/* Dark premium overlay */

.single-product__final-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;

	background:
		linear-gradient(
			90deg,
			rgba(5, 12, 11, .88),
			rgba(5, 12, 11, .48) 55%,
			rgba(5, 12, 11, .68)
		);
}


/* Keep CTA content above background */

.single-product__final-cta-content {
	position: relative;
	z-index: 2;
	width: 100%;
}


/* Keep existing typography readable */

.single-product__final-cta-title {
	color: #fff;
	text-shadow: 0 5px 25px rgba(0,0,0,.30);
}


/* Mobile */

@media (max-width: 576px) {

	.single-product__final-cta {
		min-height: 600px;

		background-position: center center;
	}

	.single-product__final-cta-bg {
		background-position: 58% center;
	}

	.single-product__final-cta::after {
		background:
			linear-gradient(
				180deg,
				rgba(5,12,11,.82),
				rgba(5,12,11,.68)
			);
	}

}
/* =========================================================
   GPIPL EV — PRODUCT SPECIFIC FINAL CTA BACKGROUND
   Uses the image uploaded from Product Admin.
========================================================= */

.single-product__final-cta {
	position: relative;
	overflow: hidden;
	isolation: isolate;

	min-height: 430px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 80px 28px;

	background:
		linear-gradient(
			90deg,
			rgba(5,12,11,.88) 0%,
			rgba(5,12,11,.68) 42%,
			rgba(5,12,11,.42) 72%,
			rgba(5,12,11,.62) 100%
		),
		#0a1513;
}


/* Uploaded product-specific background */

.single-product__final-cta-bg {
	position: absolute;
	inset: 0;

	z-index: -2;

	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	transform: scale(1.01);
}


/* Dark overlay for readable text */

.single-product__final-cta::after {
	content: "";

	position: absolute;
	inset: 0;

	z-index: -1;

	background:
		linear-gradient(
			90deg,
			rgba(5,12,11,.82) 0%,
			rgba(5,12,11,.50) 55%,
			rgba(5,12,11,.62) 100%
		);

	pointer-events: none;
}


/* CTA content */

.single-product__final-cta-content {
	position: relative;
	z-index: 2;

	width: 100%;
	max-width: 1100px;

	text-align: center;
}


/* Title */

.single-product__final-cta-title {
	position: relative;
	z-index: 2;

	color: #fff;

	text-shadow:
		0 4px 20px rgba(0,0,0,.35);
}


/* Buttons */

.single-product__final-cta-actions {
	position: relative;
	z-index: 2;
}


/* Mobile */

@media (max-width: 576px) {

	.single-product__final-cta {
		min-height: 460px;

		padding: 65px 20px;
	}

	.single-product__final-cta-bg {
		background-position: 60% center;
		background-size: cover;
	}

	.single-product__final-cta::after {
		background:
			linear-gradient(
				180deg,
				rgba(5,12,11,.80),
				rgba(5,12,11,.68)
			);
	}

}
/* =========================================================
   FINAL CTA — CLEAN PRODUCT BACKGROUND
   REMOVE ALL CIRCLES / BOXES / DECORATIONS
========================================================= */

.single-product__final-cta {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;

    min-height: 430px !important;
    padding: 70px 28px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    max-width: none !important;
    margin: 0 !important;

    text-align: center !important;

    background: #101918 !important;
}


/* PRODUCT-SPECIFIC BACKGROUND IMAGE */
.single-product__final-cta-bg {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    z-index: -2 !important;

    background-image: var(--gpipl-final-cta-bg) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    transform: none !important;
}


/* CLEAN DARK OVERLAY */
.single-product__final-cta::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    z-index: -1 !important;

    background: rgba(5, 12, 11, 0.48) !important;

    pointer-events: none !important;
}


/* REMOVE OLD CIRCLE DECORATIONS */
.single-product__final-cta::before {
    content: none !important;
    display: none !important;
}


/* REMOVE ANY OLD GLOW / RADIAL EFFECT */
.single-product__final-cta {
    background-image: none !important;
}


/* TITLE ABOVE IMAGE */
.single-product__final-cta-title {
    position: relative !important;
    z-index: 5 !important;

    max-width: 950px !important;
    margin: 0 auto !important;

    color: #fff !important;

    text-shadow: 0 4px 20px rgba(0,0,0,.55) !important;
}


/* BUTTONS ABOVE IMAGE */
.single-product__final-cta-actions {
    position: relative !important;
    z-index: 5 !important;

    margin-top: 28px !important;
}


/* MOBILE */
@media (max-width: 576px) {

    .single-product__final-cta {
        min-height: 420px !important;
        padding: 60px 20px !important;
    }

    .single-product__final-cta-bg {
        background-position: center center !important;
        background-size: cover !important;
    }

    .single-product__final-cta::after {
        background: rgba(5, 12, 11, 0.52) !important;
    }
}