/*
 * =============================================================================
 * WOLLUX — Product Single Page Stylesheet
 * =============================================================================
 *
 * Shortcode : [wollux_product_page]
 * File      : assets/css/wollux-product-page.css
 *
 * Accent color: #489000 — matches category-grid, project-grid, team-grid.
 * Note: product-grid.css uses #2ecc71 (legacy). This file intentionally
 * aligns with the majority pattern for site-wide consistency.
 *
 * All visual values are defined as CSS custom properties below.
 * Override via Elementor Custom CSS or a parent selector without touching
 * this file:
 *   .wollux-pp { --wollux-pp-accent: #yourcolor; }
 *
 * Breakpoints: 1024px (tablet), 768px (mobile), 480px (small mobile)
 * =============================================================================
 */


/* =============================================================================
 * 1. DESIGN TOKENS
 * ============================================================================= */

:root {
	--wollux-pp-accent:           #489000;
	--wollux-pp-accent-dark:      #3a7200;
	--wollux-pp-accent-light:     #edf7e0;
	--wollux-pp-black:            #000;
	--wollux-pp-text-primary:     #1a1a1a;
	--wollux-pp-text-secondary:   #666660;
	--wollux-pp-text-muted:       #999993;
	--wollux-pp-border:           #e8e8e4;
	--wollux-pp-surface:          #f8f8f6;
	--wollux-pp-placeholder-bg:   #ededea;
	--wollux-pp-card-radius:      12px;
	--wollux-pp-card-shadow:      0 2px 10px rgba(0, 0, 0, 0.06);
	--wollux-pp-card-shadow-hover:0 8px 24px rgba(0, 0, 0, 0.12);
	--wollux-pp-transition:       0.22s ease;
	--wollux-pp-star-filled:      #f5a623;
	--wollux-pp-star-empty:       #d8d8d4;
	--wollux-pp-section-gap:      4rem;
}


/* =============================================================================
 * 2. MAIN WRAPPER
 * ============================================================================= */

.wollux-pp {
	font-family: inherit;
	color: var(--wollux-pp-text-primary);
	max-width: 100%;
}

.wollux-pp__section {
	margin-bottom: var(--wollux-pp-section-gap);
	padding-left: 6rem;
	padding-right: 6rem;
}

.wollux-pp__section-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--wollux-pp-text-primary);
	margin: 0 0 1.25rem;
	line-height: 1.3;
	text-transform: none !important;
}

.wollux-pp__section--faq .wollux-pp__section-title {
	max-width: 800px;
	margin: 0 auto 1.25rem;
}


/* =============================================================================
 * 3. BUTTONS
 * ============================================================================= */

.wollux-pp__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-decoration: none;
	border-radius: 8px;
	padding: 0.65rem 1.25rem;
	transition: background-color var(--wollux-pp-transition),
	            color var(--wollux-pp-transition),
	            border-color var(--wollux-pp-transition);
	cursor: pointer;
	white-space: nowrap;
}

.wollux-pp__btn--primary {
	background: var(--wollux-pp-accent);
	color: #fff !important;
	border: 2px solid var(--wollux-pp-accent);
}

.wollux-pp__btn--primary:hover,
.wollux-pp__btn--primary:focus-visible {
	background: var(--wollux-pp-black);
	border-color: var(--wollux-pp-black);
	color: #fff !important;
	text-decoration: none;
}

.wollux-pp__btn--secondary {
	background: transparent;
	color: var(--wollux-pp-accent);
	border: 2px solid var(--wollux-pp-accent);
}

.wollux-pp__btn--secondary:hover,
.wollux-pp__btn--secondary:focus-visible {
	background: var(--wollux-pp-accent);
	color: #fff;
	text-decoration: none;
}

.wollux-pp__btn--sm {
	font-size: 0.8125rem;
	padding: 0.45rem 0.9rem;
}

.wollux-pp__btn .ti {
	font-size: 1rem;
	line-height: 1;
}


/* =============================================================================
 * 4. STICKY BAR
 * ============================================================================= */

.wollux-pp__sticky-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid var(--wollux-pp-border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity 0.28s ease, transform 0.28s ease;
	pointer-events: none;
}

.wollux-pp__sticky-bar--visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.wollux-pp__sticky-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.6rem 1.5rem;
	max-width: 1400px;
	margin: 0 auto;
}

.wollux-pp__sticky-tagline {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.wollux-pp__sticky-tagline-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wollux-pp-text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wollux-pp__sticky-tagline-sub {
	font-size: 0.8125rem;
	color: var(--wollux-pp-text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* =============================================================================
 * 5. HERO SECTION
 * ============================================================================= */

.wollux-pp__section--hero {
	padding-top: 1.5rem;
}

.wollux-pp__hero-grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 6rem;
	align-items: center;
}

.wollux-pp__hero-grid--no-image {
	grid-template-columns: 1fr;
}

.wollux-pp__hero-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Hero breadcrumb */
.wollux-pp__breadcrumb-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wollux-pp__breadcrumb-item {
	display: flex;
	align-items: center;
	font-size: 0.8125rem;
	color: var(--wollux-pp-text-muted);
}

.wollux-pp__breadcrumb-item a {
	color: var(--wollux-pp-text-muted);
	text-decoration: none;
}

.wollux-pp__breadcrumb-item a:hover {
	color: var(--wollux-pp-accent);
	text-decoration: underline;
}

.wollux-pp__breadcrumb-item--current {
	color: var(--wollux-pp-text-muted);
	font-weight: 500;
}

.wollux-pp__breadcrumb-sep {
	margin: 0 0.375rem;
	color: var(--wollux-pp-text-muted);
}

.wollux-pp__cat-pill {
	display: inline-flex;
}

.wollux-pp__cat-pill a {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wollux-pp-accent-dark);
	background: var(--wollux-pp-accent-light);
	border-radius: 100px;
	padding: 0.25rem 0.875rem;
	text-decoration: none;
	transition: background-color var(--wollux-pp-transition);
}

.wollux-pp__cat-pill a:hover {
	background: #d6efbd;
}

.wollux-pp__h1 {
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wollux-pp-text-primary);
	margin: 0;
	max-width: 700px;
}

.wollux-pp__subtitle {
	font-size: 1.0625rem;
	font-weight: 400;
	color: var(--wollux-pp-text-secondary);
	margin: 0;
	line-height: 1.5;
}

.wollux-pp__intro {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wollux-pp-text-secondary);
}

.wollux-pp__intro p {
	margin: 0 0 0.5em;
}

.wollux-pp__intro p:last-child {
	margin-bottom: 0;
}

/* USP pills inside hero */
.wollux-pp__usp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wollux-pp__usp-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--wollux-pp-accent-dark);
	background: var(--wollux-pp-surface);
	border-radius: 100px;
	padding: 0.3rem 0.75rem;
}

.wollux-pp__usp-pill .ti {
	font-size: 0.9rem;
}

/* CTA buttons row */
.wollux-pp__hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

/* Hero image */
.wollux-pp__hero-image {
	border-radius: var(--wollux-pp-card-radius);
	overflow: hidden;
}

.wollux-pp__hero-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}



/* =============================================================================
 * 7. GALLERY — infinite marquee slider
 * ============================================================================= */

/* Edge-to-edge: breaks out of Elementor container, no side padding */
.wollux-pp__section--gallery {
	padding-left: 0;
	padding-right: 0;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
}

.wollux-pp__gal {
	overflow: hidden;
}

/* Marquee track — width driven by content, animated by JS-set duration */
.wollux-pp__gal-track {
	display: flex;
	gap: 0.625rem;
	width: max-content;
	animation: wollux-gallery-scroll 40s linear infinite;
}

.wollux-pp__gal-track:hover {
	animation-play-state: paused;
}

@keyframes wollux-gallery-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Square image tile — hard resets needed to override Elementor button styles */
.wollux-pp__gal-item {
	flex-shrink: 0;
	/* Desktop: ~5 tiles across the full viewport width */
	width: calc((100vw - 4 * 0.625rem) / 5);
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--wollux-pp-card-radius);
	border: none !important;
	padding: 0 !important;
	margin: 0;
	cursor: zoom-in;
	background: var(--wollux-pp-placeholder-bg) !important;
	box-shadow: none !important;
	outline: none;
}

.wollux-pp__gal-item:focus-visible {
	outline: 2px solid var(--wollux-pp-accent);
	outline-offset: 2px;
}

.wollux-pp__gal-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Respect reduced-motion: freeze the animation, hide duplicates */
@media (prefers-reduced-motion: reduce) {
	.wollux-pp__gal-track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
		padding: 0 1.5rem;
	}

	.wollux-pp__gal-item[aria-hidden="true"] {
		display: none;
	}

	.wollux-pp__gal-item {
		width: calc((100vw - 4 * 0.625rem) / 5);
	}
}


/* =============================================================================
 * 8. ADVANTAGES + SPECS
 * ============================================================================= */

.wollux-pp__adv-specs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
}

.wollux-pp__col--full {
	grid-column: 1 / -1;
}

/* Advantages */
.wollux-pp__col-advantages {
	background: var(--wollux-pp-surface);
	border-radius: var(--wollux-pp-card-radius);
	padding: 3rem 2rem;
}

.wollux-pp__col-advantages .wollux-pp__section-title {
	font-size: 1rem;
}

.wollux-pp__adv-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wollux-pp__adv-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.wollux-pp__adv-num {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--wollux-pp-accent);
	color: var(--wollux-pp-accent);
	font-size: 0.6875rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1rem;
}

.wollux-pp__adv-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wollux-pp-text-primary);
}

/* Specs table */
.wollux-pp__spec-table {
	display: flex;
	flex-direction: column;
}

.wollux-pp__spec-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.6rem 0.75rem;
	border-bottom: 1px solid var(--wollux-pp-border);
}

.wollux-pp__spec-row:last-child {
	border-bottom: none;
}

.wollux-pp__spec-row:nth-child(odd) {
	background-color: var(--wollux-pp-surface);
}

.wollux-pp__spec-label {
	font-size: 0.875rem;
	color: var(--wollux-pp-text-secondary);
	flex-shrink: 0;
}

.wollux-pp__spec-value {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wollux-pp-text-primary);
	text-align: right;
}


/* =============================================================================
 * 9. SECTORS
 * ============================================================================= */

.wollux-pp__sectors-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.wollux-pp__sector-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	background: var(--wollux-pp-surface);
	border-radius: 10px;
	padding: 0.875rem 1rem;
	min-width: 110px;
	text-align: center;
}

.wollux-pp__sector-icon {
	font-size: 1.625rem;
	color: var(--wollux-pp-accent);
	line-height: 1;
}

.wollux-pp__sector-label {
	font-size: 0.8125rem;
	color: var(--wollux-pp-text-primary);
	line-height: 1.3;
}


/* =============================================================================
 * 10. REFERENCES
 * ============================================================================= */

.wollux-pp__refs-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.wollux-pp__refs-header .wollux-pp__section-title {
	margin-bottom: 0;
}

.wollux-pp__refs-all-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: var(--wollux-pp-accent);
	text-decoration: none;
	white-space: nowrap;
}

.wollux-pp__refs-all-link:hover {
	text-decoration: underline;
}

.wollux-pp__refs-all-link .ti {
	font-size: 0.875rem;
}

/* Full-bleed section — breaks out of Elementor container */
.wollux-pp__section--references {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: var(--e-global-color-primary);
	padding-top: 6rem;
	padding-bottom: 6rem;
	padding-left: calc(50vw - 50% + 2rem);
	padding-right: calc(50vw - 50% + 2rem);
}

.wollux-pp__section--references .wollux-pp__section-title {
	color: #ffffff;
}

.wollux-pp__section--references .wollux-pp__refs-all-link {
	color: #ffffff;
}

.wollux-pp__section--references .wollux-pp__refs-all-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* Re-center inner content within a readable max-width */
.wollux-pp__section--references .wollux-pp__refs-header,

/* Cards: styled entirely by wollux-project-grid.css (loaded as dependency) */
.wollux-pp__refs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}


/* =============================================================================
 * 11. TESTIMONIALS
 * ============================================================================= */

.wollux-pp__testi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.wollux-pp__testi-card {
	background: #fff;
	border: 1px solid var(--wollux-pp-border);
	border-radius: var(--wollux-pp-card-radius);
	padding: 1.5rem;
	box-shadow: var(--wollux-pp-card-shadow);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.wollux-pp__testi-quote-mark {
	font-size: 4rem;
	line-height: 0.8;
	color: var(--wollux-pp-accent);
	font-family: Georgia, serif;
	margin-bottom: -0.5rem;
}

.wollux-pp__testi-rating {
	display: flex;
	gap: 0.2rem;
}

.wollux-pp__testi-star {
	font-size: 1.1rem;
}

.wollux-pp__testi-star--filled {
	color: var(--wollux-pp-star-filled);
}

.wollux-pp__testi-star--empty {
	color: var(--wollux-pp-star-empty);
}

.wollux-pp__testi-content {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wollux-pp-text-secondary);
	border: none;
	padding: 0;
}

.wollux-pp__testi-content p {
	margin: 0;
}

.wollux-pp__testi-footer {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-top: auto;
	padding-top: 0.625rem;
	border-top: 1px solid var(--wollux-pp-border);
}

.wollux-pp__testi-author {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--wollux-pp-text-primary);
}

.wollux-pp__testi-company {
	font-size: 0.8125rem;
	color: var(--wollux-pp-text-muted);
}


/* =============================================================================
 * 12. FAQ ACCORDION
 * =============================================================================
 * Styled entirely by wollux-faq.css (enqueued alongside this file).
 * The FAQ section in [wollux_product_page] uses the identical wollux-faq__*
 * class names and Material Icons markup as the standalone [wollux_faq]
 * shortcode — no extra rules needed here.
 * ============================================================================= */


/* =============================================================================
 * 13. DOWNLOADS
 * ============================================================================= */

.wollux-pp__dl-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.wollux-pp__dl-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.875rem 1rem;
	background: var(--wollux-pp-surface);
	border: 1px solid var(--wollux-pp-border);
	border-radius: 10px;
}

.wollux-pp__dl-left {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.wollux-pp__dl-icon {
	font-size: 1.625rem;
	color: var(--wollux-pp-accent);
	flex-shrink: 0;
	line-height: 1;
}

.wollux-pp__dl-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.wollux-pp__dl-title {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--wollux-pp-text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wollux-pp__dl-fileinfo {
	font-size: 0.75rem;
	color: var(--wollux-pp-text-muted);
}


/* =============================================================================
 * 14. CTA BLOCK
 * ============================================================================= */

.wollux-pp__section--cta {
	background: var(--wollux-pp-surface);
	border-radius: var(--wollux-pp-card-radius);
	padding: 6rem 2rem;
	text-align: center;
}

.wollux-pp__cta-inner {
	max-width: 560px;
	margin: 0 auto;
}

.wollux-pp__cta-headline {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--wollux-pp-text-primary);
	margin: 0 0 0.5rem;
	line-height: 1.3;
	text-transform: none !important;
}

.wollux-pp__cta-subline {
	font-size: 0.9375rem;
	color: var(--wollux-pp-text-secondary);
	margin: 0 0 1.5rem;
	line-height: 1.6;
}

.wollux-pp__cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}


/* =============================================================================
 * 15. RELATED PRODUCTS
 * ============================================================================= */

.wollux-pp__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.wollux-pp__related-card {
	border-radius: var(--wollux-pp-card-radius);
	overflow: hidden;
	transition: box-shadow var(--wollux-pp-transition), transform var(--wollux-pp-transition);
	background: #fff;
}

.wollux-pp__related-card:hover {
	box-shadow: var(--wollux-pp-card-shadow-hover);
	transform: translateY(-3px);
}

.wollux-pp__related-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wollux-pp__related-img-wrap {
	position: relative;
	padding-top: 75%; /* 4:3 aspect ratio */
	overflow: hidden;
	background: var(--wollux-pp-placeholder-bg);
}

.wollux-pp__related-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}

.wollux-pp__related-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--wollux-pp-text-muted);
	font-size: 2rem;
}

.wollux-pp__related-body {
	padding: 0.875rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.wollux-pp__related-cat {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wollux-pp-accent);
}

.wollux-pp__related-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--wollux-pp-text-primary);
	margin: 0;
	line-height: 1.4;
}


/* =============================================================================
 * 16. LIGHTBOX
 * ============================================================================= */

.wollux-pp__lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.22s ease;
}

.wollux-pp__lightbox--open {
	opacity: 1;
	pointer-events: auto;
}

.wollux-pp__lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
}

.wollux-pp__lightbox-inner {
	position: relative;
	z-index: 1;
	max-width: calc(100vw - 4rem);
	max-height: calc(100vh - 4rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wollux-pp__lightbox-img {
	max-width: 100%;
	max-height: calc(100vh - 6rem);
	width: auto;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}

.wollux-pp__lightbox-close,
.wollux-pp__lightbox-prev,
.wollux-pp__lightbox-next {
	position: fixed;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.18s ease;
	font-size: 1.25rem;
}

.wollux-pp__lightbox-close:hover,
.wollux-pp__lightbox-prev:hover,
.wollux-pp__lightbox-next:hover {
	background: rgba(255, 255, 255, 0.25);
}

.wollux-pp__lightbox-close:focus-visible,
.wollux-pp__lightbox-prev:focus-visible,
.wollux-pp__lightbox-next:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.wollux-pp__lightbox-close {
	top: 1rem;
	right: 1rem;
}

.wollux-pp__lightbox-prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.wollux-pp__lightbox-next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}


/* =============================================================================
 * 17. RESPONSIVE — TABLET (≤1024px)
 * ============================================================================= */

@media (max-width: 1024px) {
	:root {
		--wollux-pp-section-gap: 3rem;
	}

	.wollux-pp__hero-grid {
		grid-template-columns: 1fr 1fr;
	}

	.wollux-pp__h1 {
		font-size: 1.875rem;
		max-width: none;
	}

	.wollux-pp__related-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Gallery: ~4 tiles on tablet */
	.wollux-pp__gal-item {
		width: calc((100vw - 3 * 0.625rem) / 4);
	}
}


/* =============================================================================
 * 18. RESPONSIVE — MOBILE (≤768px)
 * ============================================================================= */

@media (max-width: 768px) {
	:root {
		--wollux-pp-section-gap: 2.5rem;
	}

	.wollux-pp__section {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	/* Sticky bar: hide sub-tagline on mobile */
	.wollux-pp__sticky-tagline-sub {
		display: none;
	}

	.wollux-pp__sticky-inner {
		padding: 0.5rem 1rem;
	}

	/* Hero: single column, image above content */
	.wollux-pp__hero-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.wollux-pp__hero-image {
		order: -1; /* image first on mobile */
	}

	.wollux-pp__h1 {
		font-size: 1.625rem;
	}

/* Advantages + Specs: single column */
	.wollux-pp__adv-specs-grid {
		grid-template-columns: 1fr;
	}

	/* References: single column */
	.wollux-pp__refs-grid {
		grid-template-columns: 1fr;
	}

	/* Testimonials: single column */
	.wollux-pp__testi-grid {
		grid-template-columns: 1fr;
	}

	/* Gallery: ~2 tiles on mobile */
	.wollux-pp__gal-item {
		width: calc((100vw - 0.625rem) / 2);
	}

	/* CTA */
	.wollux-pp__section--cta {
		padding: 2rem 1.25rem;
	}

	.wollux-pp__cta-headline {
		font-size: 1.25rem;
	}

	/* Related products: horizontal scroll */
	.wollux-pp__related-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 0.875rem;
		padding-bottom: 0.5rem; /* room for scrollbar */
	}

	.wollux-pp__related-card {
		flex-shrink: 0;
		width: 72vw;
		scroll-snap-align: start;
	}

	/* Lightbox nav buttons */
	.wollux-pp__lightbox-prev {
		left: 0.5rem;
	}

	.wollux-pp__lightbox-next {
		right: 0.5rem;
	}
}


/* =============================================================================
 * 19. RESPONSIVE — SMALL MOBILE (≤480px)
 * ============================================================================= */

@media (max-width: 480px) {
	/* Gallery: 2 tiles on small mobile */
	.wollux-pp__gal-item {
		width: calc((100vw - 0.625rem) / 2);
	}

	.wollux-pp__h1 {
		font-size: 1.375rem;
	}

	.wollux-pp__hero-buttons {
		flex-direction: column;
	}

	.wollux-pp__hero-buttons .wollux-pp__btn {
		width: 100%;
		justify-content: center;
	}

	.wollux-pp__cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.wollux-pp__cta-buttons .wollux-pp__btn {
		width: 100%;
		justify-content: center;
	}

	.wollux-pp__related-card {
		width: 82vw;
	}

	.wollux-pp__sector-tile {
		min-width: 88px;
	}
}
