/**
 * Brave & Luxurious Home Styles
 * Colors Strictly Allowed: #1d1e20, #00aeef, #ffffff (and opacities thereof)
 */

body {
	background-color: #ffffff;
}

/* Base structural layout class */
.home-page.brave-luxury {
	overflow-x: hidden;
	color: #1d1e20;
}

/* ==========================================================================
   FLOATING PILL NAVIGATION
   ========================================================================== */
.floating-nav-wrapper {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 1000;
	pointer-events: none;
	/* Let clicks pass through outside the pill */
}

.pill-nav {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(29, 30, 32, 0.08);
	/* slightly visible */
	padding: 8px 12px;
	border-radius: 100px;
	display: flex;
	gap: 12px;
	box-shadow: 0 20px 40px rgba(29, 30, 32, 0.1);
	pointer-events: auto;
	/* Enable clicks inside the pill */
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.pill-nav::-webkit-scrollbar {
	display: none;
}

.pill-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 100px;
	color: #1d1e20;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: 0.3s;
}

.pill-link svg {
	opacity: 0.6;
	transition: 0.3s;
}

.pill-link:hover,
.pill-link.active {
	background-color: #1d1e20;
	color: #ffffff;
}

.pill-link:hover svg,
.pill-link.active svg {
	opacity: 1;
	color: #00aeef;
}

/* ============================
   Pristine Bright Luxury Hero
   ============================ */
.hero-pristine {
	position: relative;
	padding: 260px 0 120px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #f8fbff;
	perspective: 1000px; /* Base for 3D effects */
	/* Contain mesh blobs + pill-nav scroll on mobile so the viewport never gains a horizontal scrollbar. */
	overflow-x: clip;
}

/* Mesh Gradient Layer */
.hero-mesh-canvas {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	z-index: 0;
	background: #f8fbff;
	overflow: hidden;
}

.mesh-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.4;
	will-change: transform;
	pointer-events: none;
	animation: blobFloat 20s infinite alternate ease-in-out;
}

@keyframes blobFloat {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(50px, 30px) scale(1.1); }
}

.blob-1 {
	width: 800px;
	height: 800px;
	background: #00aeef;
	top: -200px;
	right: -200px;
	opacity: 0.5;
}

.blob-2 {
	width: 700px;
	height: 700px;
	background: #00aeef;
	bottom: -200px;
	left: -200px;
	opacity: 0.4;
}

.blob-3 {
	width: 600px;
	height: 600px;
	background: #1d1e20;
	top: 30%;
	left: 20%;
	opacity: 0.08;
	animation-delay: -5s;
}

.hero-overlay-glass {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: radial-gradient(circle at center, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Page Load Reveal Animations */
.hero-reveal-up {
	opacity: 0;
	transform: translateY(40px);
	animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-reveal-up.delay-1 { animation-delay: 0.1s; }
.hero-reveal-up.delay-2 { animation-delay: 0.2s; }
.hero-reveal-up.delay-3 { animation-delay: 0.3s; }

@keyframes revealUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Category Selection Pill */
.hero-categories {
	position: absolute;
	top: 160px;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	z-index: 50;
}

.hero-nav-hint {
	display: none;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(29, 30, 32, 0.55);
}

.pill-nav-pristine {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
	border-radius: 100px;
	padding: 6px;
	z-index: 60;
	position: relative;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	--pill-x: 0px;
	--pill-w: 0px;
}

.pill-nav-pristine::-webkit-scrollbar { display: none; }

/* Sliding indicator — position driven by JS via --pill-x / --pill-w */
.pill-nav-pristine::before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;
	height: calc(100% - 12px);
	width: var(--pill-w);
	transform: translateX(var(--pill-x));
	background: #00aeef;
	border-radius: 100px;
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.28);
	pointer-events: none;
	z-index: 0;
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.1, 0.64, 1),
		width 0.5s cubic-bezier(0.34, 1.1, 0.64, 1),
		opacity 0.3s ease;
}

.pill-nav-pristine.has-indicator::before {
	opacity: 1;
}

.pill-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	color: #1d1e20;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 100px;
	white-space: nowrap;
	background: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition:
		color 0.45s cubic-bezier(0.2, 0, 0, 1),
		transform 0.18s cubic-bezier(0.2, 0, 0, 1);
}

.pill-item svg {
	opacity: 0.5;
	transition: opacity 0.45s cubic-bezier(0.2, 0, 0, 1);
}

@media (hover: hover) {
	.pill-item:hover:not(.active) {
		color: #00aeef;
	}
	.pill-item:hover:not(.active) svg { opacity: 0.9; }
}

.pill-item:active {
	transform: scale(0.975);
	transition-duration: 0.12s;
}

.pill-item.active {
	color: #ffffff;
}

.pill-item.active svg {
	opacity: 1;
}

/* Fallback when indicator disabled (wrapped mobile layout, or pre-init) */
.pill-nav-pristine:not(.has-indicator) .pill-item.active {
	background: #00aeef;
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.28);
	transition:
		background 0.35s cubic-bezier(0.2, 0, 0, 1),
		box-shadow 0.35s cubic-bezier(0.2, 0, 0, 1),
		color 0.45s cubic-bezier(0.2, 0, 0, 1);
}

/* Mesh Sub-Canvas for other sections */
.mesh-canvas-sub {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.blob-sub-1, .blob-sub-2, .blob-sub-3 {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.15;
	animation: blobDrift 30s infinite alternate ease-in-out;
}

@keyframes blobDrift {
	0% { transform: translate(-10%, -10%); }
	100% { transform: translate(10%, 10%); }
}

.blob-sub-1 {
	width: 600px; height: 600px;
	background: #00aeef;
	top: -100px; right: -100px;
}

.blob-sub-2 {
	width: 500px; height: 500px;
	background: #00aeef;
	bottom: -150px; left: -100px;
	opacity: 0.1;
}

.blob-sub-3 {
	width: 400px; height: 400px;
	background: #1d1e20;
	top: 20%; right: 10%;
	opacity: 0.04;
}

.art-typography-section,
.bento-grid-section.pristine,
.not-included-section,
.periodic-plans-section,
.faq-section {
	position: relative;
	overflow: hidden;
}

/* Ensure container stays on top of mesh */
.container { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr 1.15fr; /* Shift ratio towards calculator */
		gap: 60px;
	}
}

/* Text Side Pristine */
.hero-text-side {
	max-width: 750px;
	position: relative;
	z-index: 2;
	will-change: transform;
}

.tagline-pristine {
	display: flex;
	align-items: center;
	gap: 15px;
}

.tag-line {
	width: 30px;
	height: 2px;
	background: #00aeef;
}

.tag-text {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: #00aeef;
}

.pristine-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	color: #1d1e20;
	line-height: 1.05;
	letter-spacing: -0.04em;
	margin-top: 25px;
	margin-bottom: 35px;
	word-break: keep-all; 
	overflow-wrap: normal;
}

.highlight-solid {
	display: block;
	margin-top: 5px;
	color: #00aeef;
}

.pristine-lead {
	font-size: 19px;
	color: rgba(29, 30, 32, 0.7);
	line-height: 1.7;
	max-width: 550px;
}

/* Calculator Card Pristine */
.calc-card-pristine {
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(32px) saturate(180%);
	-webkit-backdrop-filter: blur(32px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 40px;
	padding: 48px;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	z-index: 5;
	position: relative;
	will-change: transform;
}

.calc-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.calc-title {
	font-size: 24px;
	font-weight: 800;
	color: #1d1e20;
	margin: 0;
}

.calc-badge {
	background: #00aeef;
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

/* Property Toggle — sliding-pill indicator */
.property-toggle {
	position: relative;
	display: flex;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 100px;
	padding: 4px;
	margin-bottom: 35px;
}

.property-toggle[hidden] {
	display: none;
}

.property-toggle::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	height: calc(100% - 8px);
	background: #ffffff;
	border-radius: 100px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	z-index: 0;
	pointer-events: none;
	transition:
		transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1),
		width 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

/* Width based on child count */
.property-toggle:has(.toggle-btn:nth-child(2):last-child)::before {
	width: calc(50% - 4px);
}
.property-toggle:has(.toggle-btn:nth-child(3):last-child)::before {
	width: calc(33.333% - 4px);
}
.property-toggle:has(.toggle-btn:nth-child(4):last-child)::before {
	width: calc(25% - 4px);
}

/* Translate to active slot */
.property-toggle:has(.toggle-btn:nth-child(2).active)::before { transform: translateX(100%); }
.property-toggle:has(.toggle-btn:nth-child(3).active)::before { transform: translateX(200%); }
.property-toggle:has(.toggle-btn:nth-child(4).active)::before { transform: translateX(300%); }

.toggle-btn {
	flex: 1;
	background: transparent;
	border: none;
	padding: 10px;
	color: rgba(29, 30, 32, 0.5);
	font-size: 14px;
	font-weight: 700;
	border-radius: 100px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition:
		color 0.35s cubic-bezier(0.2, 0, 0, 1),
		transform 0.18s cubic-bezier(0.2, 0, 0, 1);
}

@media (hover: hover) {
	.toggle-btn:hover:not(.active) {
		color: rgba(29, 30, 32, 0.85);
	}
}

.toggle-btn:active {
	transform: scale(0.97);
	transition-duration: 0.12s;
}

.toggle-btn.active {
	color: #1d1e20;
}

/* Calculator mode toggle (e.g. Pagal langus / Pagal plotą) */
.calc-mode-toggle {
	position: relative;
	display: flex;
	background: rgba(0, 174, 239, 0.08);
	border-radius: 100px;
	padding: 4px;
	margin-bottom: 18px;
}

.calc-mode-toggle::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	height: calc(100% - 8px);
	width: calc(50% - 4px);
	background: linear-gradient(135deg, #00AEEF, #008BBF);
	border-radius: 100px;
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.35);
	z-index: 0;
	pointer-events: none;
	transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.calc-mode-toggle:has(.calc-mode-btn:nth-child(2).active)::before {
	transform: translateX(100%);
}

.calc-mode-btn {
	flex: 1;
	background: transparent;
	border: none;
	padding: 10px 14px;
	color: rgba(29, 30, 32, 0.6);
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 100px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	transition: color 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.calc-mode-btn.active {
	color: #ffffff;
}

.calc-mode-btn:active {
	transform: scale(0.97);
}

.sqm-hint {
	margin: 10px 0 0;
	font-size: 12.5px;
	color: rgba(29, 30, 32, 0.55);
	line-height: 1.5;
}

/* Input Fields & Sliders */
.calc-inputs {
	display: flex;
	flex-direction: column;
	gap: 25px; /* Adds perfect rigorous gap between slider groups */
}

.input-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	color: #1d1e20;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.label-val {
	color: #00aeef;
}

.label-val--input {
	background: transparent;
	border: none;
	border-bottom: 1.5px solid rgba(0, 174, 239, 0.35);
	color: #00aeef;
	font: inherit;
	font-weight: 700;
	width: 4.5ch;
	text-align: right;
	padding: 0 2px 1px;
	-moz-appearance: textfield;
	appearance: textfield;
	transition: border-color 0.2s;
}

.label-val--input:focus {
	outline: none;
	border-bottom-color: #00aeef;
}

.label-val--input::-webkit-outer-spin-button,
.label-val--input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Inline +/- stepper next to a number input — matches the booking-form
   .stepper visual so quantity selectors look identical across the site:
   white pill with a soft border and filled grey buttons. */
.calc-stepper {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fff;
	border: 1.5px solid #eef2f6;
	border-radius: 12px;
	padding: 3px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.calc-stepper .label-val--input {
	min-width: 4ch;
	width: auto;
	text-align: center;
	border-bottom: none;
	padding: 0 8px;
	color: #1d1e20;
	font-weight: 800;
}

.calc-stepper .qty-btn {
	width: 32px;
	height: 32px;
	font-size: 16px;
	border-radius: 8px;
	border: none;
	background: #f4f7fa;
	color: #555;
}

.calc-stepper .qty-btn:disabled {
	background: #f4f7fa;
}

.custom-slider {
	padding: 10px 0;
	position: relative;
}

.slider-track {
	position: relative;
	height: 4px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	pointer-events: none;
}

.slider-fill {
	position: absolute;
	height: 100%;
	background: #00aeef;
	border-radius: 2px;
}

.slider-thumb {
	position: absolute;
	top: 50%;
	width: 24px;
	height: 24px;
	background: #ffffff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
	border: 2px solid #00aeef;
	pointer-events: none;
	transition: box-shadow 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.custom-slider:has(.real-slider:active) .slider-thumb,
.custom-slider:has(.real-slider:focus-visible) .slider-thumb {
	box-shadow: 0 6px 18px rgba(0, 174, 239, 0.45), 0 0 0 8px rgba(0, 174, 239, 0.12);
}

.real-slider {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	z-index: 10;
	opacity: 0.01;
	cursor: pointer;
}

/* Mess Switch Pristine */
.mess-switch-pristine {
	position: relative;
	display: flex;
	background: rgba(0, 0, 0, 0.04);
	border-radius: 100px;
	padding: 4px;
	margin-top: 15px;
}

.mess-opt {
	flex: 1;
	background: transparent;
	border: none;
	padding: 12px;
	color: rgba(29, 30, 32, 0.5);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
	z-index: 2;
	transition: color 0.35s cubic-bezier(0.2, 0, 0, 1);
}

.mess-opt:active {
	transform: scale(0.97);
	transition-duration: 0.12s;
}

.mess-opt.active {
	color: #1d1e20;
}

.mess-pill {
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(33.333% - 4px);
	height: calc(100% - 8px);
	background: #ffffff;
	border-radius: 100px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	z-index: 1;
	transition: transform 0.45s cubic-bezier(0.34, 1.1, 0.64, 1);
}

.mess-switch-pristine:has(.mess-opt[data-level="medium"].active) .mess-pill { transform: translateX(100%); }
.mess-switch-pristine:has(.mess-opt[data-level="high"].active) .mess-pill { transform: translateX(200%); }

.mess-hint-text {
	font-size: 12px;
	color: rgba(29, 30, 32, 0.5);
	margin-top: 10px;
	font-style: italic;
}

/* Footer / Result Pristine */
.calc-footer {
	margin-top: 35px;
	padding-top: 30px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.calc-footer-estimates {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.price-display {
	display: flex;
	flex-direction: column;
}

.price-label {
	font-size: 11px;
	font-weight: 800;
	color: rgba(29, 30, 32, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.price-total {
	font-size: 42px;
	font-weight: 900;
	color: #1d1e20;
	line-height: 1;
}

.time-display {
	display: flex;
	flex-direction: column;
}

.time-label {
	font-size: 11px;
	font-weight: 800;
	color: rgba(29, 30, 32, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.time-total {
	font-size: 18px;
	font-weight: 700;
	color: rgba(29, 30, 32, 0.65);
	line-height: 1.2;
}

.calc-cta-btn {
	background: #00aeef;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 30px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0, 174, 239, 0.28);
	transition:
		background 0.35s cubic-bezier(0.2, 0, 0, 1),
		box-shadow 0.35s cubic-bezier(0.2, 0, 0, 1),
		transform 0.22s cubic-bezier(0.2, 0, 0, 1);
	will-change: transform;
}

.calc-cta-btn svg {
	transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
}

@media (hover: hover) {
	.calc-cta-btn:hover {
		background: #0ab8f3;
		transform: translateY(-2px);
		box-shadow: 0 16px 34px rgba(0, 174, 239, 0.36);
	}
	.calc-cta-btn:hover svg {
		transform: translateX(4px);
	}
}

.calc-cta-btn:active {
	transform: translateY(0) scale(0.985);
	box-shadow: 0 6px 14px rgba(0, 174, 239, 0.28);
	transition-duration: 0.12s;
}

@media (max-width: 480px) {
	.calc-footer {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	.calc-footer-estimates { align-items: center; }
	.price-display { align-items: center; }
	.time-display { align-items: center; }
	.calc-cta-btn { justify-content: center; }
}

/* ==========================================================================
   HERO — MOBILE OPTIMIZATION
   Make service selection obvious, tighten spacing, keep premium feel.
   Kicks in at 900px so iPads-portrait / large phones landscape also get
   the compact, readable layout (hero-grid already stacks below 1024px).
   ========================================================================== */
@media (max-width: 900px) {
	.hero-pristine {
		padding: 110px 0 60px;
		min-height: auto;
	}

	.hero-categories {
		position: static;
		top: auto;
		padding: 0 14px;
		margin-bottom: 28px;
		gap: 12px;
	}

	.hero-nav-hint {
		display: inline-block;
	}

	.pill-nav-pristine {
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px;
		padding: 8px;
		border-radius: 24px;
		overflow: visible;
		width: 100%;
		max-width: 520px;
	}

	.pill-item {
		flex: 0 0 auto;
		padding: 10px 14px;
		font-size: 11px;
		letter-spacing: 0.04em;
		gap: 7px;
		border-radius: 100px;
		min-height: 40px;
	}

	.pill-item svg {
		width: 16px;
		height: 16px;
	}

	.hero-grid {
		gap: 28px;
	}

	.hero-text-side {
		text-align: center;
		margin: 0 auto;
	}

	.tagline-pristine {
		justify-content: center;
	}

	.pristine-title {
		font-size: clamp(2rem, 8.4vw, 2.8rem);
		margin-top: 16px;
		margin-bottom: 18px;
		letter-spacing: -0.03em;
	}

	.pristine-lead {
		font-size: 16px;
		line-height: 1.55;
		margin: 0 auto;
	}

	.calc-card-pristine {
		padding: 22px 18px;
		border-radius: 28px;
	}

	.calc-card-header {
		margin-bottom: 20px;
	}

	.calc-title {
		font-size: 19px;
	}

	.calc-badge {
		font-size: 10px;
		padding: 3px 10px;
	}

	.property-toggle {
		margin-bottom: 22px;
	}

	.toggle-btn {
		padding: 9px 6px;
		font-size: 12px;
	}

	.calc-inputs {
		gap: 20px;
	}

	.input-label {
		font-size: 12px;
	}

	.mess-opt {
		padding: 10px 4px;
		font-size: 10px;
		letter-spacing: 0.02em;
	}

	.calc-footer {
		margin-top: 24px;
		padding-top: 22px;
	}

	.price-total {
		font-size: 34px;
	}

	.calc-cta-btn {
		padding: 15px 22px;
		font-size: 14px;
	}

	/* Window size cards — stack as full-width list rows on mobile */
	.window-size-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.window-size-card {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 12px 14px;
		border-radius: 14px;
	}

	.window-size-icon,
	.window-size-icon--md,
	.window-size-icon--lg {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}

	.window-size-text {
		flex: 1;
		align-items: center;
		text-align: center;
		gap: 1px;
	}

	.window-size-label {
		font-size: 14px;
	}

	.window-size-sub {
		font-size: 11px;
	}

	.window-size-card .calc-item-qty {
		flex-shrink: 0;
	}

	.calc-items-grid {
		gap: 8px;
	}

	/* Mesh blobs — preserve the premium desktop gradient.
	   Increase blur so the giant off-canvas blobs read as soft color washes,
	   not hard circles, on small viewports. */
	.blob-1 {
		width: 120vw;
		height: 120vw;
		top: -40vw;
		right: -40vw;
		filter: blur(120px);
		opacity: 0.55;
	}
	.blob-2 {
		width: 110vw;
		height: 110vw;
		bottom: -40vw;
		left: -40vw;
		filter: blur(120px);
		opacity: 0.45;
	}
	.blob-3 {
		width: 90vw;
		height: 90vw;
		filter: blur(110px);
		opacity: 0.1;
	}
}

@media (max-width: 480px) {
	/* Window calculator needs extra room at narrow widths: tighten the mode
	   toggle, size-card rows, and qty controls so nothing overflows the card. */
	.calc-card-pristine {
		padding: 22px 14px;
	}

	.calc-mode-toggle {
		padding: 3px;
		margin-bottom: 14px;
	}

	.calc-mode-btn {
		padding: 9px 8px;
		font-size: 12px;
		letter-spacing: 0.01em;
	}

	#calc-windows .window-size-card {
		padding: 10px 12px;
		gap: 10px;
	}

	#calc-windows .window-size-card .calc-item-qty {
		gap: 4px;
	}

	#calc-windows .qty-btn {
		width: 26px;
		height: 26px;
	}

	#calc-windows input.qty-val {
		width: 2ch;
		font-size: 14px;
	}

	#calc-windows .calc-inputs .toggle-btn {
		padding: 8px 4px;
		font-size: 11px;
		letter-spacing: 0.02em;
	}

	.sqm-hint {
		font-size: 11.5px;
	}
}

@media (max-width: 380px) {
	.pill-item {
		padding: 9px 11px;
		font-size: 10px;
	}

	.pill-item svg {
		width: 14px;
		height: 14px;
	}

	.pristine-title {
		font-size: 1.75rem;
	}

	.calc-card-pristine {
		padding: 18px 12px;
	}
}

/* ==========================================================================
   HERO PANEL & CALCULATOR VARIANT TRANSITIONS
   ========================================================================== */

.hero-panel {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hero-panel.is-active {
	opacity: 1;
}

.calc-variant {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.calc-variant.is-active {
	opacity: 1;
}

/* ==========================================================================
   WINDOW CALCULATOR VARIANT
   ========================================================================== */

#calc-windows .property-toggle {
	margin-bottom: 0;
}

/* ==========================================================================
   WINDOW-BASED CALCULATOR VARIANT (Langai)
   ========================================================================== */

.window-size-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 4px;
}

.window-size-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 5px;
	padding: 14px 14px 12px;
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #fff;
	cursor: default;
	transition:
		border-color 0.32s cubic-bezier(0.2, 0, 0, 1),
		background 0.32s cubic-bezier(0.2, 0, 0, 1),
		box-shadow 0.32s cubic-bezier(0.2, 0, 0, 1),
		transform 0.18s cubic-bezier(0.2, 0, 0, 1);
}

.window-size-card.is-selected {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.06);
	box-shadow: 0 4px 16px rgba(0, 174, 239, 0.14);
}

.window-size-icon {
	width: 28px;
	height: 28px;
	color: rgba(29, 30, 32, 0.35);
	transition: color 0.32s cubic-bezier(0.2, 0, 0, 1);
}

.window-size-icon--md {
	width: 34px;
	height: 34px;
}

.window-size-icon--lg {
	width: 40px;
	height: 40px;
}

.window-size-card.is-selected .window-size-icon {
	color: #00aeef;
}

.window-size-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3px;
	width: 100%;
	padding: 0 4px;
	box-sizing: border-box;
}

.window-size-label {
	font-size: 13px;
	font-weight: 700;
	color: #1d1e20;
	line-height: 1.2;
	text-align: center;
}

.window-size-sub {
	font-size: 10.5px;
	font-weight: 500;
	color: rgba(29, 30, 32, 0.5);
	letter-spacing: 0.01em;
	line-height: 1.35;
	text-align: center;
	text-wrap: balance;
}

.window-size-card .window-size-price {
	font-size: 13px;
	font-weight: 700;
	color: #4DACFF;
	margin-top: 4px;
	line-height: 1.2;
	text-align: center;
}

/* ==========================================================================
   ITEM-BASED CALCULATOR VARIANT (Baldai/kilimai)
   ========================================================================== */

.calc-items-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 20px;
}

.calc-item-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	border-radius: 14px;
	border: 1.5px solid rgba(29, 30, 32, 0.08);
	background: rgba(255, 255, 255, 0.6);
	cursor: default;
	transition:
		border-color 0.32s cubic-bezier(0.2, 0, 0, 1),
		background 0.32s cubic-bezier(0.2, 0, 0, 1),
		box-shadow 0.32s cubic-bezier(0.2, 0, 0, 1),
		transform 0.18s cubic-bezier(0.2, 0, 0, 1);
}

.calc-item-card.is-selected {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.06);
	box-shadow: 0 4px 16px rgba(0, 174, 239, 0.14);
}

.calc-item-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1d1e20;
}

.calc-item-card.is-selected .calc-item-icon {
	color: #00aeef;
}

.calc-item-label {
	font-size: 12px;
	font-weight: 600;
	color: #1d1e20;
	text-align: center;
	line-height: 1.2;
}

.calc-item-price {
	font-size: 11px;
	font-weight: 700;
	color: #00aeef;
	text-align: center;
	letter-spacing: 0.01em;
}

.calc-item-qty {
	display: flex;
	align-items: center;
	gap: 8px;
}

.calc-item-sqm {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 2px;
}

.sqm-val {
	width: 52px;
	padding: 4px 6px;
	border: 1.5px solid rgba(0, 0, 0, 0.12);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
	text-align: center;
	background: #fff;
	-moz-appearance: textfield;
	appearance: textfield;
	transition: border-color 0.2s;
}

.sqm-val:focus {
	outline: none;
	border-color: #00aeef;
}

.sqm-val::-webkit-outer-spin-button,
.sqm-val::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.sqm-unit {
	font-size: 12px;
	font-weight: 600;
	color: rgba(29, 30, 32, 0.5);
}

.calc-item-card--sqm.is-selected .sqm-val {
	border-color: #00aeef;
}

.qty-btn {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	border: 1.5px solid rgba(29, 30, 32, 0.12);
	background: #fff;
	font-size: 16px;
	font-weight: 700;
	color: #1d1e20;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
	transition:
		background 0.28s cubic-bezier(0.2, 0, 0, 1),
		border-color 0.28s cubic-bezier(0.2, 0, 0, 1),
		color 0.28s cubic-bezier(0.2, 0, 0, 1),
		transform 0.14s cubic-bezier(0.2, 0, 0, 1);
}

@media (hover: hover) {
	.qty-btn:hover:not(:disabled) {
		border-color: #00aeef;
		background: rgba(0, 174, 239, 0.06);
		color: #00aeef;
	}
}

.qty-btn:active:not(:disabled) {
	transform: scale(0.9);
	background: rgba(0, 174, 239, 0.12);
	border-color: #00aeef;
	transition-duration: 0.1s;
}

.qty-btn:disabled {
	opacity: 0.3;
	cursor: default;
}

.qty-val {
	font-size: 15px;
	font-weight: 700;
	color: #1d1e20;
	min-width: 18px;
	text-align: center;
}

input.qty-val {
	background: transparent;
	border: none;
	padding: 0;
	width: 2.5ch;
	-moz-appearance: textfield;
	appearance: textfield;
}

input.qty-val:focus {
	outline: none;
}

input.qty-val::-webkit-outer-spin-button,
input.qty-val::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

@media (max-width: 480px) {
	.calc-items-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
}

/* ==========================================================================
   CUSTOM REQUEST CALCULATOR VARIANT (Pagal poreiki)
   ========================================================================== */

.calc-textarea {
	width: 100%;
	border: 1.5px solid rgba(29, 30, 32, 0.1);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 14px;
	font-family: inherit;
	color: #1d1e20;
	background: rgba(255, 255, 255, 0.7);
	resize: vertical;
	min-height: 80px;
	transition: border-color 0.2s;
}

.calc-textarea:focus {
	outline: none;
	border-color: #00aeef;
}

.calc-input {
	width: 100%;
	border: 1.5px solid rgba(29, 30, 32, 0.1);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14px;
	font-family: inherit;
	color: #1d1e20;
	background: rgba(255, 255, 255, 0.7);
	transition: border-color 0.2s;
}

.calc-input:focus {
	outline: none;
	border-color: #00aeef;
}

.calc-cta-btn--full {
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
}

.calc-custom-notice {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 500;
}

.calc-custom-notice--success {
	background: rgba(0, 174, 239, 0.08);
	color: #008bbf;
}

.calc-custom-notice--error {
	background: rgba(220, 53, 69, 0.08);
	color: #dc3545;
}

/* ---- Image upload zone ---- */
.calc-upload-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 18px 16px;
	border: 1.5px dashed rgba(0, 174, 239, 0.35);
	border-radius: 12px;
	background: rgba(0, 174, 239, 0.04);
	color: #1d1e20;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.calc-upload-zone:hover,
.calc-upload-zone.is-dragover {
	border-color: #00aeef;
	background: rgba(0, 174, 239, 0.08);
	transform: translateY(-1px);
}

.calc-upload-zone__icon {
	color: #00aeef;
	margin-bottom: 4px;
}

.calc-upload-zone__primary {
	font-size: 14px;
	font-weight: 700;
	color: #1d1e20;
}

.calc-upload-zone__secondary {
	font-size: 12px;
	color: rgba(29, 30, 32, 0.55);
}

.calc-upload-list {
	list-style: none;
	margin: 10px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.calc-upload-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px 6px 6px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: #1d1e20;
	max-width: 100%;
}

.calc-upload-item__thumb {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #eef2f6;
}

.calc-upload-item__name {
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.calc-upload-item__remove {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: none;
	background: rgba(29, 30, 32, 0.08);
	color: #1d1e20;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
}

.calc-upload-item__remove:hover {
	background: #dc3545;
	color: #fff;
}

/* ==========================================================================
   INFINITE MARQUEE
   ========================================================================== */
.marquee-wrapper {
	background-color: #00aeef;
	padding: 10px 0;
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.marquee-track {
	display: flex;
	white-space: nowrap;
	width: 200%;
}

.marquee-content {
	display: inline-flex;
	align-items: center;
	gap: 80px;
	/* Separator spacing */
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.06em;
	animation: scrollX 20s linear infinite;
	padding-right: 80px;
}

@keyframes scrollX {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   AVANT-GARDE TYPOGRAPHY
   ========================================================================== */
.art-typography-section {
	padding: 120px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

/* ==========================================================================
   BRAND/HERO STYLE BLOCK — used in art-typography + brave-timeline sections
   to mirror the hero's typography (small blue eyebrow, bold black title with
   one word in blue, muted lead paragraph).
   ========================================================================== */
.hero-style-block {
	position: relative;
	z-index: 2;
	max-width: 750px;
}

.hero-style-block--center {
	margin: 0 auto;
	text-align: center;
}

.hero-style-block--center .tagline-pristine {
	justify-content: center;
}

.hero-style-block--center .hero-style-lead {
	margin-left: auto;
	margin-right: auto;
}

.hero-style-block--steps-header {
	max-width: 720px;
	margin-bottom: 72px;
}

.hero-style-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	color: #1d1e20;
	line-height: 1.05;
	letter-spacing: -0.04em;
	margin-top: 25px;
	margin-bottom: 28px;
	word-break: keep-all;
	overflow-wrap: normal;
}

.hero-style-title .highlight-solid {
	display: block;
	margin-top: 5px;
	color: #00aeef;
}

.hero-style-lead {
	font-size: 19px;
	color: rgba(29, 30, 32, 0.7);
	line-height: 1.7;
	max-width: 600px;
	margin: 0;
}

/* ==========================================================================
   THREE STEPS (clean, hero-aligned)
   ========================================================================== */
.brave-timeline-section {
	padding: 120px 0;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

.hero-step-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
	z-index: 2;
}

.hero-step {
	background: #ffffff;
	border: 1px solid rgba(29, 30, 32, 0.08);
	border-radius: 24px;
	padding: 36px 32px 32px;
	box-shadow: 0 12px 32px rgba(0, 10, 30, 0.04);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px rgba(0, 174, 239, 0.12);
	border-color: rgba(0, 174, 239, 0.25);
}

.hero-step-num {
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	color: #00aeef;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.hero-step-title {
	font-size: 24px;
	font-weight: 800;
	color: #1d1e20;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}

.hero-step-desc {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.65);
	line-height: 1.65;
	margin: 0;
}

@media (max-width: 900px) {
	.hero-step-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.hero-style-block--steps-header {
		margin-bottom: 48px;
	}
}

@media (max-width: 600px) {
	.art-typography-section,
	.brave-timeline-section {
		padding: 80px 0;
	}
}

/* ==========================================================================
   BENTO GRID SECION (DARK)
   ========================================================================== */
.bento-grid-section.pristine {
	background-color: #ffffff;
	padding: 160px 0;
	margin: 0;
}

.bento-header {
	text-align: center;
	margin-bottom: 80px;
}

.bento-header h2 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #1d1e20;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}

.bento-header p {
	font-size: 20px;
	color: rgba(29, 30, 32, 0.5);
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.bento-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.bento-card {
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 32px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 300px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 174, 239, 0.1);
}

.bento-card.span-2 {
	grid-column: span 1;
}

@media (min-width: 768px) {
	.bento-card.span-2 {
		grid-column: span 2;
	}
}

.blue-fill {
	background-color: #00aeef;
	border: none;
}

.blue-fill:hover {
	background-color: #0096ce;
	opacity: 0.9;
}

.bento-icon {
	width: 48px;
	height: 48px;
	color: #00aeef;
	margin-bottom: auto;
	/* push everything to bottom */
}

.blue-fill .bento-icon {
	color: #ffffff;
}

.blue-fill h3, .blue-fill p {
	color: #ffffff !important;
}

.bento-card h3 {
	font-size: 24px;
	font-weight: 800;
	color: #1d1e20;
	line-height: 1.2;
	position: relative;
	z-index: 2;
}

.bento-card p {
	font-size: 16px;
	color: rgba(29, 30, 32, 0.6);
	margin-top: 12px;
	line-height: 1.5;
	position: relative;
	z-index: 2;
}

/* Custom art block inside bento */
.art-block {
	justify-content: center;
}

.geo-shapes {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.1;
	z-index: 0;
}

.geo-circle {
	width: 150px;
	height: 150px;
	border: 40px solid #00aeef;
	border-radius: 50%;
	position: absolute;
	top: -50px;
	right: 40px;
}

.geo-rect {
	width: 200px;
	height: 300px;
	background-color: #00aeef;
	position: absolute;
	top: 100px;
	right: -100px;
	transform: rotate(45deg);
}

.bento-card.art-block h3,
.bento-card.art-block p {
	position: relative;
	z-index: 10;
}

/* ==========================================================================
   ULTRA MINIMAL FINAL CTA
   ========================================================================== */
.final-cta-minimal {
	padding: 180px 0;
	background-color: #ffffff;
}

.gigantic-cta {
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.05em;
	line-height: 1;
}

.flex-center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.mt-12 {
	margin-top: 48px;
}

.btn-solid-dark {
	background-color: #1d1e20;
	color: #ffffff;
	text-decoration: none;
	padding: 20px 48px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: 0.4s;
	display: inline-block;
}

.pop-hover:hover {
	transform: scale(1.05);
	/* brave scale pump */
	box-shadow: 0 20px 40px rgba(29, 30, 32, 0.2);
}

.btn-outline-dark {
	background-color: transparent;
	color: #1d1e20;
	border: 2px solid #1d1e20;
	text-decoration: none;
	padding: 18px 48px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: background 0.4s, color 0.4s;
	display: inline-block;
}

.btn-outline-dark:hover {
	background-color: #1d1e20;
	color: #ffffff;
}

/* ==========================================================================
   NEW HOMEPAGE SECTIONS (BRIGHT LUXURY)
   ========================================================================== */

/* Helpers */
.bg-ultra-light { background-color: #f8f9fb; }
.bg-light { background-color: #ffffff; }
.text-blue { color: #00aeef; }
.text-white { color: #ffffff; }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.pt-0 { padding-top: 0 !important; }
.mt-6 { margin-top: 24px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.relative { position: relative; }

.section-header-pristine h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	color: #1d1e20;
	letter-spacing: -0.03em;
}

/* Stats Bar */
.stats-bar-pristine {
	background: #ffffff;
	padding: 40px 0;
	border-top: 1px solid rgba(0,0,0,0.05);
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid-pristine {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
}

.stat-num {
	font-size: 48px;
	font-weight: 900;
	color: #00aeef;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #1d1e20;
}

.stat-divider {
	width: 1px;
	height: 60px;
	background: rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
	.stats-grid-pristine {
		flex-direction: column;
		gap: 30px;
	}
	.stat-divider {
		width: 60px;
		height: 1px;
	}
}

/* Interactive Room Section */
.interactive-room-section {
	padding: 120px 0;
	background: #ffffff;
}

.room-wrapper {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.room-img {
	width: 100%;
	height: auto;
	display: block;
}

.hotspot-pristine {
	position: absolute;
	width: 32px;
	height: 32px;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.hotspot-pin {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.pin-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #00aeef;
	border-radius: 50%;
	animation: pinPulse 2s infinite;
	opacity: 0.5;
}

.pin-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	background: #ffffff;
	border: 4px solid #00aeef;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@keyframes pinPulse {
	0% { transform: scale(1); opacity: 0.8; }
	100% { transform: scale(3); opacity: 0; }
}

.hotspot-tooltip {
	position: absolute;
	bottom: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background: #ffffff;
	padding: 16px 20px;
	border-radius: 16px;
	width: 260px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	text-align: left;
}

.hotspot-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 8px;
	border-style: solid;
	border-color: #ffffff transparent transparent transparent;
}

.hotspot-pristine:hover .hotspot-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip h4 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 800;
	color: #1d1e20;
}

.hotspot-tooltip p {
	margin: 0;
	font-size: 13px;
	color: rgba(29,30,32,0.7);
	line-height: 1.5;
}

/* Not Included Section - Premium Visuals */
.not-included-section { padding: 120px 0; background-color: #f7f9fc; }

.not-included-box {
	max-width: 1000px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 48px;
	padding: 80px;
	box-shadow: 0 40px 100px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
	.not-included-box { padding: 40px 24px; border-radius: 32px; }
}

.not-included-header { text-align: center; margin-bottom: 60px; }
.not-included-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #1d1e20; margin-bottom: 20px; }
.not-included-header p { font-size: 18px; color: rgba(29,30,32,0.5); max-width: 600px; margin: 0 auto; }

.not-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 600px) { .not-list-grid { grid-template-columns: 1fr; gap: 30px; } }

.not-list-item { display: flex; align-items: flex-start; gap: 24px; }

.x-mark {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	background: rgba(239, 68, 68, 0.08);
	color: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

.not-list-content h4 { font-size: 20px; font-weight: 800; color: #1d1e20; margin-bottom: 8px; }
.not-list-content p { font-size: 16px; color: rgba(29,30,32,0.6); line-height: 1.5; }

/* Additional Services */
.additional-services-section {
	padding: 120px 0;
	background: #ffffff;
}

.add-serv-box {
	background: linear-gradient(135deg, #00aeef 0%, #0081b1 100%);
	border-radius: 48px;
	padding: 80px;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 60px;
	align-items: center;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.add-serv-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
	pointer-events: none;
}

@media (max-width: 1024px) {
	.add-serv-box {
		grid-template-columns: 1fr;
		padding: 40px 24px;
		border-radius: 32px;
	}
}

.add-serv-content h2 {
	font-size: 40px;
	font-weight: 900;
	margin-bottom: 20px;
	color: #ffffff;
}

.add-serv-content p {
	font-size: 18px;
	line-height: 1.6;
	color: #ffffff;
	opacity: 0.92;
}

.add-serv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

@media (max-width: 600px) {
	.add-serv-grid { grid-template-columns: 1fr; }
}

.add-card {
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 24px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.3s;
}

.add-card:hover {
	background: #ffffff;
	color: #00aeef;
	transform: translateY(-5px);
}

.icon-square {
	width: 48px;
	height: 48px;
	background: rgba(255,255,255,0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
	transition: background 0.3s;
	flex-shrink: 0;
}

/* The inline SVGs use a Tailwind-style `w-6 h-6` class that isn't defined,
   so browsers without it (notably mobile Safari/Chrome) collapse them to 0.
   Force an explicit size. */
.icon-square svg {
	width: 24px;
	height: 24px;
	display: block;
}

.add-card:hover .icon-square {
	background: rgba(0, 174, 239, 0.1);
}

.add-card span {
	font-size: 16px;
	font-weight: 700;
}

/* Periodic Plans */
.periodic-plans-section {
	padding: 120px 0;
	background: #f8f9fb;
}

.plan-toggle {
	background: rgba(0,0,0,0.05);
	padding: 6px;
	border-radius: 100px;
	display: inline-flex;
	margin: 0 auto 48px;
}

.plan-btn {
	background: none;
	border: none;
	padding: 12px 24px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 14px;
	color: rgba(29,30,32,0.5);
	cursor: pointer;
	transition: 0.3s;
}

.plan-btn.active {
	background: #ffffff;
	color: #1d1e20;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.plan-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.plan-cards-grid { grid-template-columns: 1fr; }
}

.pricing-card {
	background: #ffffff;
	padding: 60px 40px;
	border-radius: 32px;
	border: 1px solid rgba(0,0,0,0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	box-shadow: 0 20px 50px rgba(0,0,0,0.02);
}

.pricing-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 40px 80px rgba(0,0,0,0.08);
	border-color: rgba(0, 174, 239, 0.2);
}

.pricing-card.popular {
	background-color: #1d1e20;
	border: none;
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.pricing-card.popular .p-header, .pricing-card.popular .p-price-row { color: #ffffff; }
.pricing-card.popular .p-price-row strong { color: #00aeef; }
.pricing-card.popular .p-icon { background: rgba(255,255,255,0.05); color: #00aeef; }

.p-icon {
	width: 80px;
	height: 80px;
	background: rgba(0,174,239,0.05);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00aeef;
	margin-bottom: 30px;
}

.p-icon svg { width: 32px; height: 32px; }

.p-header { font-size: 24px; font-weight: 900; color: #1d1e20; margin-bottom: 12px; }
.p-price-row { font-size: 18px; color: rgba(29,30,32,0.6); display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 6px; }
.p-price-row strong { font-size: 32px; color: #1d1e20; margin-left: 8px; transition: opacity 0.14s ease, transform 0.14s ease; display: inline-block; }
.p-price-row strong.is-swapping { opacity: 0; transform: translateY(-4px); }
.p-price-unit { font-size: 14px; color: rgba(29,30,32,0.45); font-weight: 600; }
.pricing-card.popular .p-price-unit { color: rgba(255,255,255,0.6); }
.plan-btn { user-select: none; }

.p-badge {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: #00aeef;
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 100px;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Gift Card */
.gift-card-section {
	padding: 120px 0;
}

.gift-banner {
	background: #1d1e20;
	border-radius: 48px;
	padding: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.gift-banner::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(0,174,239,0.15) 0%, transparent 50%);
	pointer-events: none;
}

@media (max-width: 900px) {
	.gift-banner {
		grid-template-columns: 1fr;
		padding: 40px 24px;
	}
}

.gift-text {
	position: relative;
	z-index: 2;
}

.floating-coupon {
	position: absolute;
	background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
	border-radius: 16px;
	padding: 24px 40px;
	font-size: 32px;
	font-weight: 900;
	color: #1d1e20;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.c-1 {
	top: 10%;
	right: 15%;
	transform: rotate(15deg);
	z-index: 2;
}

.c-2 {
	bottom: 15%;
	right: 25%;
	transform: rotate(-10deg);
	background: #ffffff;
	z-index: 1;
}

/* Mobile App Teaser */
.cleaners-tech-section {
	padding: 120px 0;
	background: #ffffff;
	overflow: hidden;
}

.tech-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

@media (max-width: 900px) {
	.tech-grid { grid-template-columns: 1fr; gap: 40px; }
}

.tech-text h2 {
	font-size: clamp(3rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin-bottom: 24px;
}

.tech-desc {
	font-size: 18px;
	color: rgba(29,30,32,0.6);
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 450px;
}

.tech-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tech-features li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 18px;
	font-weight: 700;
	color: #1d1e20;
	margin-bottom: 24px;
}

.t-icon {
	width: 48px;
	height: 48px;
	background: rgba(0,174,239,0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t-icon svg { width: 24px; height: 24px; }

.phone-mockup {
	width: 320px;
	height: 640px;
	background: #1d1e20;
	border-radius: 40px;
	padding: 12px;
	box-shadow: 0 40px 100px rgba(0,0,0,0.15);
	position: relative;
	z-index: 2;
	margin: 0 auto;
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: #f8f9fb;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	padding: 24px;
}

.mock-ui-header {
	height: 60px;
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 24px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.mock-ui-card {
	height: 200px;
	background: #ffffff;
	border-radius: 20px;
	margin-bottom: 16px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.02);
	border-left: 6px solid #00aeef;
}

.mock-ui-card.small { height: 80px; border-left: 6px solid #1d1e20; }

.deco-circle {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
}

.c-blue {
	width: 400px;
	height: 400px;
	background: rgba(0,174,239,0.05);
	top: -50px;
	left: 50px;
}

.c-dark {
	width: 300px;
	height: 300px;
	background: rgba(29,30,32,0.03);
	bottom: -20px;
	right: 0;
}

/* Before / After Section */
.before-after-section { padding: 120px 0; }

.ba-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.ba-grid { grid-template-columns: 1fr; }
}



.ba-card {
	background: #ffffff;
	padding: 16px;
	border-radius: 32px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.ba-image-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 75%; /* 4:3 Aspect Ratio */
	border-radius: 20px;
	overflow: hidden;
}

.ba-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.img-after { z-index: 1; }

.ba-slider-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #ffffff;
	z-index: 2;
	pointer-events: none;
}

.ba-slider-handle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background: #00aeef;
	border-radius: 50%;
	border: 3px solid #ffffff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ba-slider-handle svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	color: #ffffff;
	z-index: 3;
}

.ba-slider-handle svg:first-child { left: -14px; }
.ba-slider-handle svg:last-child { right: -14px; }

/* FAQs */
.faq-section {
	padding: 120px 0;
	background: #ffffff;
}

.faq-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.faq-header {
	text-align: center;
	margin-bottom: 60px;
}

.faq-header h2 {
	font-size: 40px;
	font-weight: 900;
	color: #1d1e20;
	margin-bottom: 16px;
}

.faq-header p {
	font-size: 18px;
	color: rgba(29,30,32,0.6);
}

.faq-item {
	border-bottom: 1px solid rgba(0,0,0,0.05);
	margin-bottom: 16px;
}

.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 24px 0;
	font-size: 20px;
	font-weight: 800;
	color: #1d1e20;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-icon-cross {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
	will-change: transform;
}

.faq-icon-cross::before, .faq-icon-cross::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background: #00aeef;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1), background-color 0.3s ease;
	will-change: transform;
}

.faq-icon-cross::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon-cross {
	transform: rotate(180deg);
}

.faq-item.active .faq-icon-cross::after {
	transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-4px);
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, transform 0.35s ease;
	will-change: max-height, opacity;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
}

.faq-answer p {
	padding-bottom: 24px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(29,30,32,0.6);
}

/* Premium Gallery Grid for Before/After */
.premium-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 900px) {
	.premium-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.premium-gallery-grid {
		grid-template-columns: 1fr;
	}
}

.gallery-item {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.06);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	background: #ffffff;
	padding: 0;
	border: 0;
	cursor: zoom-in;
	aspect-ratio: 1 / 1;
	display: block;
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s ease;
}

.gallery-item:hover img {
	transform: scale(1.03);
}

.gallery-item__zoom {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	color: #1d1e20;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.gallery-item__zoom svg {
	width: 18px;
	height: 18px;
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
	opacity: 1;
	transform: scale(1);
}

.gallery-item:focus-visible {
	outline: 2px solid #00aeef;
	outline-offset: 3px;
}

/* ============================
   Lightbox
   ============================ */
.sp-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 12, 16, 0.92);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	padding: 40px;
}

.sp-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.sp-lightbox__img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 16px;
	box-shadow: 0 40px 80px rgba(0,0,0,0.4);
	display: block;
	transition: opacity 0.18s ease;
}

.sp-lightbox__img.is-swapping { opacity: 0; }

.sp-lightbox__close,
.sp-lightbox__nav {
	position: absolute;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.18);
	color: #ffffff;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 2;
	padding: 0;
}

.sp-lightbox__close:hover,
.sp-lightbox__nav:hover {
	background: rgba(255,255,255,0.22);
}

.sp-lightbox__close { top: 24px; right: 24px; }
.sp-lightbox__close:hover { transform: scale(1.05); }

.sp-lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.sp-lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

.sp-lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.sp-lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }

.sp-lightbox__counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.75);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

@media (max-width: 768px) {
	.sp-lightbox { padding: 20px; }
	.sp-lightbox__close { top: 12px; right: 12px; width: 44px; height: 44px; }
	.sp-lightbox__nav--prev { left: 8px; }
	.sp-lightbox__nav--next { right: 8px; }
}

/* ============================
   Shop Promo Section
   ============================ */
.shop-promo-section {
	padding: 120px 0;
	position: relative;
	overflow: hidden;
	background: #fcfdfe;
}

.shop-promo-box {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 40px;
	padding: 60px;
	position: relative;
	z-index: 2;
}

@media (min-width: 1024px) {
	.shop-promo-box {
		grid-template-columns: 1fr 1fr;
	}
}

.shop-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(0, 174, 239, 0.1);
	color: #00aeef;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.shop-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: #1d1e20;
	line-height: 1.1;
	margin-bottom: 24px;
}

.shop-desc {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 40px;
}

.shop-features {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 48px;
}

.s-feat {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	color: #1d1e20;
}

.s-feat-icon {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	font-size: 20px;
}

.shop-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #1d1e20;
	color: #fff;
	padding: 18px 36px;
	border-radius: 100px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 20px 40px rgba(29,30,32,0.2);
}

.shop-cta-btn:hover {
	transform: translateY(-5px);
	background: #00aeef;
	box-shadow: 0 20px 40px rgba(0,174,239,0.3);
}

/* Visual Side - Product Showcase */
.product-showcase {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card-glass {
	position: absolute;
	width: 200px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.1);
	animation: floatItem 6s infinite ease-in-out;
}

@keyframes floatItem {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

.p-img-placeholder {
	width: 100%;
	height: 120px;
	background: #f8fbff;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	margin-bottom: 16px;
}

.p-cat {
	display: block;
	font-size: 10px;
	font-weight: 800;
	color: #00aeef;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}

.p-name {
	font-weight: 800;
	color: #1d1e20;
}

.product-card-glass.p-1 { z-index: 3; transform: rotate(-5deg); left: 10%; }
.product-card-glass.p-2 { z-index: 4; top: 0; animation-delay: -2s; }
.product-card-glass.p-3 { z-index: 2; transform: rotate(8deg); right: 10%; animation-delay: -4s; }


