/* Asrar Homepage Sections v2 */
:root {
	--asrar-green: #169d83;
	--asrar-green-dark: #0f7c68;
	--asrar-ink: #16231f;
	--asrar-soft: #f4fbf7;
	--asrar-line: #dceae4;
	--asrar-white: #ffffff;
}

.asrar-admin-notice {
	max-width: 1400px;
	margin: 18px auto;
	padding: 12px 16px;
	border: 1px solid #dceae4;
	border-radius: 8px;
	background: #f4fbf7;
	color: #16231f;
	font-size: 14px;
}

.asrar-hero-shell {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #fff;
	overflow: hidden;
}

.asrar-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #eef3f0;
}

.asrar-hero-track {
	display: flex;
	width: 100%;
	transition: transform 520ms cubic-bezier(.22,.61,.36,1);
	will-change: transform;
}

.asrar-hero-slide {
	flex: 0 0 100%;
	min-width: 100%;
}

.asrar-hero-slide a,
.asrar-hero-slide picture {
	display: block;
}

.asrar-hero-slide img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 8 / 3;
	object-fit: cover;
}

.asrar-hero-arrow,
.asrar-carousel-arrow {
	position: absolute;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: var(--asrar-ink);
	box-shadow: 0 8px 25px rgba(22,35,31,.16);
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.asrar-hero-arrow:hover,
.asrar-carousel-arrow:hover {
	background: #fff;
}

.asrar-hero-prev {
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
}

.asrar-hero-prev:hover {
	transform: translateY(-50%) scale(1.06);
}

.asrar-hero-next {
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
}

.asrar-hero-next:hover {
	transform: translateY(-50%) scale(1.06);
}

.asrar-hero-dots {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 16px;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.asrar-hero-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.95);
	border-radius: 999px;
	background: rgba(255,255,255,.45);
	cursor: pointer;
	transition: width .25s ease, background .25s ease;
}

.asrar-hero-dots button.is-active {
	width: 28px;
	background: #fff;
}

.asrar-section {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 54px 0;
	background: var(--asrar-soft);
	color: var(--asrar-ink);
}

.asrar-watch-section,
.asrar-product-section-3 {
	background: #fff;
}

.asrar-section-inner {
	width: min(1400px, calc(100% - 40px));
	margin: 0 auto;
}

.asrar-section-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 26px;
	text-align: center;
}

.asrar-section-heading h2 {
	margin: 0;
	color: var(--asrar-green-dark);
	font-family: inherit;
	font-size: clamp(24px, 2.1vw, 36px);
	font-weight: 800;
	letter-spacing: .02em;
	line-height: 1.15;
	text-transform: uppercase;
}

.asrar-carousel {
	position: relative;
}

.asrar-scroll-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 42px) / 4);
	gap: 14px;
	overflow-x: auto;
	padding: 2px 2px 16px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
}

.asrar-scroll-track::-webkit-scrollbar {
	display: none;
}

.asrar-product-card,
.asrar-video-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--asrar-line);
	border-radius: 12px;
	background: var(--asrar-white);
	box-shadow: 0 7px 24px rgba(22,35,31,.055);
	scroll-snap-align: start;
	transition: transform .24s ease, box-shadow .24s ease;
}

.asrar-product-card:hover,
.asrar-video-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 13px 34px rgba(22,35,31,.11);
}

.asrar-product-image {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #edf2ef;
}

.asrar-product-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: opacity .38s ease, transform .48s ease;
}

.asrar-product-main-image {
	opacity: 1;
}

.asrar-product-hover-image {
	opacity: 0;
}

.asrar-product-card:hover .asrar-product-main-image {
	opacity: 0;
	transform: scale(1.025);
}

.asrar-product-card:hover .asrar-product-hover-image {
	opacity: 1;
	transform: scale(1.025);
}

.asrar-sale-badge,
.asrar-platform-label {
	position: absolute;
	z-index: 3;
	top: 10px;
	left: 10px;
	padding: 5px 8px;
	border-radius: 5px;
	background: var(--asrar-white);
	color: var(--asrar-green-dark);
	box-shadow: 0 3px 12px rgba(22,35,31,.12);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .025em;
	line-height: 1;
	text-transform: uppercase;
}

.asrar-product-info,
.asrar-video-info {
	padding: 14px 14px 16px;
}

.asrar-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	min-height: 20px;
	margin: 0 0 5px;
	color: #167e68;
	font-size: 12px;
	font-weight: 700;
}

.asrar-rating small {
	color: #65736e;
	font-size: 11px;
	font-weight: 500;
}

.asrar-product-info h3,
.asrar-video-info h3 {
	display: -webkit-box;
	min-height: 42px;
	margin: 0 0 7px;
	overflow: hidden;
	color: var(--asrar-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.asrar-product-info h3 a {
	color: inherit;
	text-decoration: none;
}

.asrar-price,
.asrar-video-price {
	min-height: 24px;
	margin: 0 0 12px;
	color: var(--asrar-ink);
	font-size: 15px;
	font-weight: 700;
}

.asrar-price del {
	margin-right: 5px;
	color: #8a9691;
	font-size: 13px;
	font-weight: 500;
	opacity: 1;
}

.asrar-price ins {
	color: var(--asrar-green-dark);
	text-decoration: none;
}

.asrar-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 8px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--asrar-green);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	transition: background .2s ease, transform .2s ease;
}

.asrar-product-button:hover {
	background: var(--asrar-green-dark);
	transform: translateY(-1px);
	color: #fff;
}

.asrar-carousel-arrow {
	top: 42%;
}

.asrar-carousel-prev {
	left: -18px;
	transform: translateY(-50%);
}

.asrar-carousel-prev:hover {
	transform: translateY(-50%) scale(1.06);
}

.asrar-carousel-next {
	right: -18px;
	transform: translateY(-50%);
}

.asrar-carousel-next:hover {
	transform: translateY(-50%) scale(1.06);
}

.asrar-carousel-arrow:disabled {
	opacity: .3;
	cursor: default;
	pointer-events: none;
}

.asrar-video-track {
	grid-auto-columns: calc((100% - 42px) / 4);
	align-items: start;
}

.asrar-video-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: #101414;
}

.asrar-shop-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.asrar-video-frame::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 30%;
	background: linear-gradient(transparent, rgba(0,0,0,.35));
	pointer-events: none;
}

.asrar-video-play {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 50%;
	background: rgba(0,0,0,.48);
	color: #fff;
	transform: translate(-50%, -50%);
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: opacity .2s ease, transform .2s ease;
}

.asrar-video-frame.is-playing .asrar-video-play {
	opacity: 0;
	pointer-events: none;
}

.asrar-play-icon {
	margin-left: 3px;
	font-size: 20px;
}

.asrar-video-mute {
	position: absolute;
	z-index: 4;
	right: 10px;
	bottom: 10px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0,0,0,.48);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	backdrop-filter: blur(4px);
}

.asrar-platform-label {
	color: #121a17;
}

.asrar-social-embed {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 575px;
	overflow: hidden;
	background: #fff;
}

.asrar-social-embed .instagram-media,
.asrar-social-embed .tiktok-embed {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
}

.asrar-social-embed iframe {
	width: 100% !important;
	max-width: 100% !important;
	border: 0 !important;
}

.asrar-social-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 575px;
	padding: 30px;
	background: #101414;
	color: #fff !important;
	text-align: center;
	text-decoration: none !important;
}

.asrar-video-info h3 {
	min-height: auto;
}

@media (max-width: 1100px) {
	.asrar-scroll-track,
	.asrar-video-track {
		grid-auto-columns: calc((100% - 28px) / 3);
	}
}

@media (max-width: 780px) {
	.asrar-hero-slide img {
		aspect-ratio: 4 / 5;
	}

	.asrar-hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 25px;
	}

	.asrar-hero-prev {
		left: 10px;
	}

	.asrar-hero-next {
		right: 10px;
	}

	.asrar-hero-dots {
		bottom: 11px;
	}

	.asrar-section {
		padding: 38px 0;
	}

	.asrar-section-inner {
		width: min(100%, calc(100% - 24px));
	}

	.asrar-section-heading {
		margin-bottom: 19px;
	}

	.asrar-scroll-track {
		grid-auto-columns: calc((100% - 12px) / 2);
		gap: 12px;
		padding-bottom: 10px;
	}

	.asrar-video-track {
		grid-auto-columns: min(84vw, 350px);
		gap: 12px;
	}

	.asrar-carousel-arrow {
		display: none;
	}

	.asrar-product-info,
	.asrar-video-info {
		padding: 11px 11px 13px;
	}

	.asrar-product-info h3,
	.asrar-video-info h3 {
		font-size: 13px;
	}

	.asrar-price,
	.asrar-video-price {
		font-size: 14px;
	}

	.asrar-product-button {
		min-height: 35px;
		padding: 7px 13px;
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.asrar-scroll-track {
		grid-auto-columns: 72%;
	}

	.asrar-video-track {
		grid-auto-columns: 86%;
	}

	.asrar-sale-badge,
	.asrar-platform-label {
		top: 8px;
		left: 8px;
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.asrar-hero-track,
	.asrar-scroll-track {
		scroll-behavior: auto;
		transition: none;
	}

	.asrar-product-card,
	.asrar-video-card,
	.asrar-product-image img,
	.asrar-product-button {
		transition: none;
	}
}
