#carousel-code *,
#carousel-code *::before,
#carousel-code *::after {
	box-sizing: border-box;
	margin: 0;
}

#carousel-code {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
    font-family: 'montserrat', sans-serif;
}

.carousel-item {
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	padding: 20px;
	border-radius: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 22px;
	border: 1px solid #eee;
}

.carousel-item .carousel-item-img {
	height: 150px;
	aspect-ratio: 1/1;
	object-fit: contain;
	border-radius: 999px;
}

.carousel-item .carousel-item-name {
	font-size: 20px;
}

.carousel-item .star-icon {
	height: 16px;
	fill: #eab308;
}

.carousel-item .carousel-item-text {
	font-size: 15px;
	line-height: 1.4;
	color: #999;
}

.carousel-item .carousel-item-stars-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

/* OWL CAROUSEL */
.owl-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

#carousel-code .owl-nav .owl-prev,
#carousel-code .owl-nav .owl-next {
	line-height: 0 !important;
	padding: 4px 4px !important;
}

#carousel-code .owl-nav .owl-prev:hover,
#carousel-code .owl-nav .owl-next:hover {
	background-color: black !important;
	color: white !important;
}

.owl-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 10px !important;
}

.owl-dots .owl-dot span {
	border: 2px solid black;
	border-radius: 99px;
	background-color: white !important;
	width: 12px !important;
	height: 12px !important;
}

.owl-dots .owl-dot.active span {
	background-color: black !important;
}

.owl-item {
	padding: 16px;
}
