.custom-reviews-wrapper {
	padding: 0;
}

.custom-reviews-slider {
	position: relative;
	overflow: hidden;
}

.custom-reviews-track {
	display: flex;
	gap: 24px;
	transition: transform .3s ease;
}

.custom-review-card {
	flex: 0 0 calc(25% - 18px);
	background: #f4f4f4;
	border: 1px solid #E6E6E6;
	border-radius: 12px;
	padding: 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.custom-review-stars {
	display: flex;
	gap: 4px;
	font-size: 16px;
	line-height: 1;
	margin-bottom: 16px;
}

.custom-review-text {
	font-size: 18px;
	line-height: 1.2;
	color: #080808;
	font-weight: 600;
}

.custom-review-text p {
	margin: 0;
}

.custom-review-footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 16px;
}

.custom-review-author {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: #393939;
	line-height: 1.4;
}

.custom-review-product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
}

.custom-review-product:hover {
	color: inherit;
	text-decoration: none;
}

.custom-review-product img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	flex-shrink: 0;
}

.custom-review-product-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.custom-review-product-title {
	font-size: 14px;
	line-height: 1.4;
	color: #080808;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.custom-review-product-price {
	font-size: 12px;
	font-weight: 600;
	color: #080808;
}

.custom-review-product-price del {
	opacity: .5;
	font-weight: 400;
	margin-right: 6px;
}

.custom-review-product-price ins {
	text-decoration: none;
}

.custom-reviews-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
}

.custom-reviews-dots button {
	width: 10px;
	height: 10px;
	border: 0;
	border-radius: 50%;
	background: #cfcfcf;
	padding: 0;
	cursor: pointer;
}

.custom-reviews-dots button.active {
	background: #000;
}

.custom-review-star {
	width: 16px;
	height: 16px;
	display: flex;
}

.custom-review-star svg {
	width: 100%;
	height: 100%;
}

.custom-review-star svg path {
	fill: transparent;
	stroke: #232F3E;
	stroke-width: .5;
}

.custom-review-star.is-filled svg path {
	fill: #232F3E;
	stroke: #232F3E;
}

.custom-review-product {
	min-height: 65px;
}

.custom-reviews-track {
	display: flex;
	gap: 24px;
	transition: transform 0.5s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.custom-reviews-dots button {
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: #cfcfcf;
	padding: 0;
	cursor: pointer;
	transition: all .25s ease;
}

.custom-reviews-dots button.active {
	background: #000;
}

.custom-reviews-track {
	cursor: grab;
	user-select: none;
}

.custom-reviews-track:active {
	cursor: grabbing;
}

.custom-reviews-empty {
	text-align: center;
	font-size: 16px;
	color: #393939;
	padding: 32px 16px;
}

@media (max-width: 767px) {
	.custom-reviews-track {
		gap: 16px;
	}

	.custom-review-card {
		flex: 0 0 100%;
	}

	.custom-review-text {
		font-size: 16px;
	}

	.custom-review-author {
		font-size: 14px;
	}

	.custom-review-product-title {
		font-size: 13px;
	}
}


.custom-reviews-rating-box {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.custom-reviews-rating-score {
	align-self: flex-end;
}

.custom-reviews-rating-stars {
	display: flex;
	gap: 8px;
}

.custom-reviews-rating-star svg {
	width: 24px;
	height: 24px;
}

.custom-reviews-rating-star svg path {
	fill: transparent;
	stroke: #F36D21;
	stroke-width: .5;
}

.custom-reviews-rating-star.is-filled svg path {
	fill: #F36D21;
	stroke: #F36D21;
}

.custom-reviews-rating-score {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	color: #080808;
}

.custom-reviews-rating-empty {
	font-size: 16px;
	color: #393939;
}