.judev-beauty-products {
	--beauty-carousel-cols: 4;
	--beauty-carousel-gap: 18px;
	font-family: "Manrope", "Tajawal", sans-serif;
}

.judev-beauty-products__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 16px;
}

.judev-beauty-products__title {
	margin: 0;
	color: #141414;
	font-size: clamp(20px, 1.8vw, 28px);
	font-weight: 700;
	letter-spacing: -0.01em;
}

.judev-beauty-products__view-all {
	color: #141414;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.judev-beauty-products__view-all:hover {
	opacity: 0.8;
}

.judev-beauty-products__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.judev-beauty-products.is-carousel .judev-beauty-products__grid {
	grid-template-columns: none !important;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - ((var(--beauty-carousel-cols) - 1) * var(--beauty-carousel-gap))) / var(--beauty-carousel-cols));
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 6px;
}

.judev-beauty-products.is-carousel .judev-beauty-products__grid::-webkit-scrollbar {
	height: 8px;
}

.judev-beauty-products.is-carousel .judev-beauty-products__grid::-webkit-scrollbar-thumb {
	background: rgba(17, 17, 17, 0.25);
	border-radius: 999px;
}

.judev-beauty-product {
	background: #f8f4f2;
	padding: 10px 8px 14px;
	scroll-snap-align: start;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.judev-beauty-product:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.judev-beauty-product__media {
	position: relative;
	background: #fbf7f5;
	margin-bottom: 10px;
	overflow: hidden;
}

.judev-beauty-product__media.is-portrait {
	aspect-ratio: 4 / 5;
}

.judev-beauty-product__media.is-square {
	aspect-ratio: 1 / 1;
}

.judev-beauty-product__badge {
	position: absolute;
	inset-inline-start: 6px;
	inset-block-start: 6px;
	padding: 3px 6px;
	background: #121212;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	border-radius: 2px;
	z-index: 2;
}

.judev-beauty-product__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.judev-beauty-product__image-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.judev-beauty-product__meta {
	text-align: center;
}

.judev-beauty-product__price,
.judev-beauty-product__price * {
	color: #474544;
	font-size: 11px;
	font-weight: 600;
	text-decoration: none !important;
}

.judev-beauty-product__name {
	display: block;
	margin-top: 4px;
	color: #161616;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.35;
}

.judev-beauty-product__name:hover {
	opacity: 0.82;
}

.judev-beauty-product__rating {
	margin-top: 6px;
	font-size: 11px;
	line-height: 1;
	display: inline-flex;
	justify-content: center;
}

.judev-beauty-product__rating .star-rating {
	font-size: 11px;
	margin: 0 auto;
}

.judev-beauty-product__add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 8px 12px;
	background: #111111;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	line-height: 1;
}

.judev-beauty-product__add-to-cart:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.judev-beauty-products__carousel-nav {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 12px;
}

.judev-beauty-products__carousel-btn {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(17, 17, 17, 0.22);
	background: #fff;
	color: #111;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	line-height: 1;
}

.judev-beauty-products__carousel-btn:hover {
	background: #111;
	color: #fff;
}

@media (max-width: 1024px) {
	.judev-beauty-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.judev-beauty-products.is-carousel .judev-beauty-products__grid {
		grid-auto-columns: calc((100% - ((var(--beauty-carousel-cols) - 1) * var(--beauty-carousel-gap))) / var(--beauty-carousel-cols));
	}
}

@media (max-width: 767px) {
	.judev-beauty-products__head {
		margin-bottom: 12px;
	}

	.judev-beauty-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.judev-beauty-product {
		padding: 8px 7px 10px;
	}

	.judev-beauty-product__name {
		font-size: 12px;
	}

	.judev-beauty-products__carousel-btn {
		width: 31px;
		height: 31px;
	}
}
