/* Bleaching landing page extras.
 * The page reuses the composite landing base styles and adds
 * a Swipe Stack gallery inspired by Originkit.
 */

.shadan-bleaching-page .shadan-composite-hero {
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 32%),
		linear-gradient(135deg, #f4f8ff 0%, #edf4ff 45%, #d9e8ff 100%);
}

.shadan-bleaching-page .shadan-composite-trustbar {
	background: rgba(14, 29, 57, 0.92);
}

.shadan-bleaching-page .shadan-composite-section--gallery {
	background:
		radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 40%),
		var(--bleaching-gallery-bg, #101726);
}

.shadan-bleaching-page .shadan-composite-section--gallery .shadan-composite-section-head p,
.shadan-bleaching-page .shadan-composite-section--gallery h2,
.shadan-bleaching-page .shadan-composite-section--gallery .shadan-composite-section-label {
	color: #f5f8ff;
}

.shadan-swipe-stack {
	position: relative;
	padding: 10px 0 0;
}

.shadan-swipe-stack__stage {
	position: relative;
	width: min(100%, 480px);
	height: 470px;
	margin: 0 auto;
	perspective: 1000px;
}

.shadan-swipe-stack__card {
	position: absolute;
	inset: 0;
	margin: auto;
	width: var(--stack-card-width, 320px);
	height: var(--stack-card-height, 420px);
	border: 0;
	padding: 0;
	background: transparent;
	border-radius: var(--stack-card-radius, 28px);
	overflow: hidden;
	box-shadow: 0 26px 60px rgba(7, 12, 24, 0.34);
	cursor: pointer;
	transform-style: preserve-3d;
	touch-action: pan-y;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.shadan-swipe-stack__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	user-select: none;
	pointer-events: none;
}

.shadan-swipe-stack__overlay {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 16px 18px 18px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(7, 12, 24, 0.82) 100%);
	text-align: right;
	pointer-events: none;
}

.shadan-swipe-stack__overlay span {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
}

.shadan-swipe-stack__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
}

.shadan-swipe-stack__actions p {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
}

.shadan-swipe-stack__actions p span {
	margin-inline-end: 6px;
}

.shadan-swipe-stack__actions button {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shadan-swipe-stack__actions button:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
	.shadan-swipe-stack__stage {
		height: 410px;
	}

	.shadan-swipe-stack__actions {
		gap: 10px;
	}

	.shadan-swipe-stack__actions p {
		font-size: 13px;
	}

	.shadan-swipe-stack__actions button {
		width: 38px;
		height: 38px;
		font-size: 24px;
	}
}


/* The bleaching gallery has no separate background. */
.shadan-bleaching-page .shadan-composite-section--gallery,
.shadan-bleaching-gallery-section {
	background: transparent !important;
}
.shadan-bleaching-page .shadan-composite-section--gallery::before { display: none; }
.shadan-bleaching-page .shadan-composite-section--gallery .shadan-composite-section-head p { color: #607482; }
.shadan-bleaching-page .shadan-composite-section--gallery h2 { color: #25343f; }
.shadan-bleaching-page .shadan-composite-section--gallery .shadan-composite-section-label { color: #58758c; }
.shadan-swipe-stack,
.shadan-swipe-stack__stage { background: transparent !important; }
.shadan-swipe-stack__actions { color: #536a7b; }
.shadan-swipe-stack__actions button {
	background: transparent;
	border-color: rgba(37,52,63,.22);
	color: #25343f;
}
.shadan-swipe-stack__actions button:hover { background: rgba(159,178,198,.14); }
