/* Regular bleaching liquid — Home Plus */

.blr-page {
	--hp-blue-light: #88A4CB;
	--hp-blue-mid: #203E7A;
	--hp-blue-dark: #031749;
	--hp-navy: #102244;
	--hp-red: #EB0928;
}


/* Header over hero — no background bar */
.site-header {
	position: absolute;
	inset-inline: 0;
	top: 0;
	width: 100%;
	background: transparent !important;
	box-shadow: none;
}

/* —— Hero (video) —— */
.blr-hero {
	position: relative;
	min-height: clamp(420px, 68vh, 720px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--hp-navy);
	color: #fff;
}

.blr-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.blr-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.blr-hero__video--mobile {
	display: none;
}

.blr-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 560px;
	padding: 7.5rem 1.5rem 3.5rem;
	text-align: left;
	margin-left: max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem));
	margin-right: auto;
}

.blr-hero__title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.55rem, 3.4vw, 2.45rem);
	font-weight: 800;
	line-height: 1.55;
	color: #fff;
}

.blr-hero__brand {
	margin: 0 0 0.85rem;
	color: var(--hp-red);
	font-size: clamp(1.15rem, 2.2vw, 1.55rem);
	font-weight: 800;
	line-height: 1.4;
}

.blr-hero__lead {
	margin: 0 0 1.1rem;
	font-size: clamp(0.86rem, 1.35vw, 0.98rem);
	font-weight: 400;
	line-height: 2;
	color: rgba(255, 255, 255, 0.96);
	max-width: 32rem;
}

.blr-hero__lead-strong {
	display: block;
	margin-bottom: 0.55rem;
	font-weight: 600;
}

.blr-hero__scent {
	margin: 0;
	color: var(--hp-red);
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 700;
}

/* —— Variants —— */
.blr-variants {
	background: #88A4CB;
}

.blr-variants__bar {
	padding: 1.35rem 1.5rem 0.35rem;
	text-align: center;
}

.blr-variants__bar h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 700;
}

.blr-variants__list {
	padding: 1.25rem 1.5rem 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.blr-card {
	position: relative;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	min-height: 460px;
	border-radius: 18px;
	overflow: hidden;
	background-color: var(--hp-blue-mid);
	background-image: var(--blr-card-bg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	isolation: isolate;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blr-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(16, 34, 68, 0.5) 0%,
		rgba(16, 34, 68, 0.18) 42%,
		rgba(16, 34, 68, 0) 68%
	);
	z-index: 0;
	pointer-events: none;
}

.blr-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.blr-card__body {
	position: relative;
	z-index: 1;
	padding: 1.6rem 1.5rem 1.6rem 4cm;
	max-width: 48%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	text-align: left;
	min-height: 460px;
	margin-left: 0;
	margin-right: auto;
}

.blr-card__title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 800;
	line-height: 1.35;
}

.blr-card__brand {
	margin: 0.2rem 0 0.45rem;
	color: var(--hp-red);
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	font-weight: 800;
}

.blr-card__features {
	margin: 0 0 1.15rem;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 2;
}

.blr-card__features li {
	position: relative;
	padding-right: 1rem;
}

.blr-card__features li::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0.85em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
}

.blr-card__size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	background: var(--hp-red);
	color: #fff;
	border-radius: 8px;
	padding: 0.55rem 1.35rem;
	font-size: 0.9rem;
	font-weight: 700;
	min-width: 7.5rem;
	box-shadow: 0 4px 14px rgba(235, 9, 40, 0.35);
}

/* —— Retailers —— */
.blr-buy {
	background: #f4f6fa;
	padding: 2.4rem 1.5rem 2.6rem;
}

.blr-buy__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	direction: rtl;
}

.blr-shop {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: #fff;
	border-radius: 14px;
	padding: 1.25rem 1rem 1.1rem;
	box-shadow: 0 8px 24px rgba(3, 23, 73, 0.08);
	border: 1px solid rgba(136, 164, 204, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	min-height: 170px;
}

.blr-shop:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(3, 23, 73, 0.12);
}

.blr-shop__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 72px;
	flex: 1;
}

.blr-shop__logo img {
	max-width: 140px;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-inline: auto;
}

.blr-shop__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.55rem 0.75rem;
	border: 1.5px solid var(--hp-red);
	border-radius: 8px;
	color: var(--hp-red);
	font-size: 0.86rem;
	font-weight: 700;
	text-align: center;
	transition: background 0.2s ease, color 0.2s ease;
}

.blr-shop:hover .blr-shop__btn {
	background: var(--hp-red);
	color: #fff;
}

/* —— Features —— */
.blr-features {
	background: #fff;
	padding: 3rem 1.5rem 2.6rem;
}

.blr-features__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 2rem 2.5rem;
	align-items: start;
	direction: rtl;
}

.blr-features__intro p {
	margin: 0;
	color: var(--hp-blue-dark);
	font-size: 0.95rem;
	line-height: 2.1;
	font-weight: 400;
	text-align: justify;
}

.blr-features__list-wrap h2 {
	margin: 0 0 1rem;
	color: var(--hp-blue-dark);
	font-size: 1.25rem;
	font-weight: 800;
	text-align: right;
}

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

.blr-features__list li {
	position: relative;
	padding-right: 1.4rem;
	color: var(--hp-blue-dark);
	font-size: 0.92rem;
	line-height: 1.9;
	font-weight: 500;
}

.blr-features__list li::before {
	content: "✓";
	position: absolute;
	right: 0;
	top: 0.15em;
	width: auto;
	height: auto;
	border-radius: 0;
	background: none;
	color: var(--hp-red);
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.6;
}

/* —— Read more —— */
.blr-more {
	background: #88A4CC;
	padding: 2.2rem 1.5rem 3.2rem;
}

.blr-more__inner {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.blr-more__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin: 0 0 1.5rem;
	padding: 0;
	background: transparent;
	color: #fff;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5;
	transition: opacity 0.2s ease;
}

.blr-more__link:hover {
	opacity: 0.8;
	color: #fff;
}

.blr-more__box {
	background: #fff;
	border-radius: 14px;
	padding: 1.35rem 1.6rem;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 8px 24px rgba(3, 23, 73, 0.1);
}

.blr-more__box p {
	margin: 0;
	color: var(--hp-blue-dark);
	font-size: 0.93rem;
	line-height: 2;
	font-weight: 400;
	text-align: center;
}

/* —— Motion —— */
@media (prefers-reduced-motion: no-preference) {
	.blr-hero__title,
	.blr-hero__brand,
	.blr-hero__lead,
	.blr-hero__scent {
		animation: blr-fade-up 0.75s ease both;
	}

	.blr-hero__brand { animation-delay: 0.06s; }
	.blr-hero__lead { animation-delay: 0.12s; }
	.blr-hero__scent { animation-delay: 0.18s; }

	.blr-card {
		animation: blr-fade-up 0.65s ease both;
	}

	.blr-card:nth-child(1) { animation-delay: 0.05s; }
	.blr-card:nth-child(2) { animation-delay: 0.12s; }

	.blr-shop {
		animation: blr-fade-up 0.55s ease both;
	}

	.blr-shop:nth-child(1) { animation-delay: 0.04s; }
	.blr-shop:nth-child(2) { animation-delay: 0.08s; }
	.blr-shop:nth-child(3) { animation-delay: 0.12s; }
	.blr-shop:nth-child(4) { animation-delay: 0.16s; }
}

@keyframes blr-fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* —— Responsive —— */
@media (max-width: 1024px) {
	.blr-buy__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blr-features__inner {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

@media (max-width: 900px) {
	.blr-card__body {
		max-width: 55%;
	}
}

@media (max-width: 768px) {
	.blr-hero {
		min-height: 640px;
		align-items: flex-end;
	}

	.blr-hero__video--desktop {
		display: none;
	}

	.blr-hero__video--mobile {
		display: block;
		object-position: center top;
	}

	.blr-hero__content {
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		padding: 6.5rem 1.25rem 2.4rem;
		background: linear-gradient(
			180deg,
			rgba(16, 34, 68, 0) 0%,
			rgba(16, 34, 68, 0.55) 35%,
			rgba(16, 34, 68, 0.9) 100%
		);
		width: 100%;
	}

	.blr-card {
		min-height: 390px;
		background-position: calc(50% - 4.5rem) center;
		background-size: auto 115%;
	}

	.blr-card:nth-child(2) {
		background-position: calc(50% - 6.25rem) center;
		background-size: auto 100%;
	}

	.blr-card__body {
		max-width: 55%;
		min-height: 390px;
		padding: 1.3rem 1.15rem;
	}
}

@media (max-width: 640px) {
	.blr-buy__inner {
		grid-template-columns: 1fr;
		max-width: none;
		width: 100%;
	}

	.blr-card {
		min-height: 350px;
		background-position: calc(50% - 4.5rem) center;
		background-size: auto 115%;
	}

	.blr-card:nth-child(2) {
		background-position: calc(50% - 6rem) center;
		background-size: auto 100%;
	}

	.blr-card__body {
		max-width: 58%;
		min-height: 350px;
		padding: 1.2rem 1rem;
	}

	.blr-card__size {
		padding: 0.45rem 1.1rem;
		font-size: 0.82rem;
		min-width: 0;
	}

	.blr-more {
		padding: 1.6rem 1rem 2.6rem;
	}

	.blr-more__box {
		padding: 1.15rem 1.1rem;
	}

	.blr-features {
		padding: 2.2rem 1rem 2rem;
	}
}
