// single product rating
.woocommerce-product-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;


	.woocommerce-review-link {
		// margin-inline-start: 10px;
		font-size: 12px;
		--theme-link-initial-color: var(--theme-text-color);
	}
}


// comment form rating
.comment-form-rating {
	display: flex;
	align-items: center;

	label {
		margin-bottom: 0;
		font-size: 12px;
		font-weight: 500;
		text-transform: uppercase;
	}

	.stars {
		color: var(--star-rating-initial-color, #fda256);
		font-size: 0.9em;

		span {
			display: flex;
		}

		a {
			position: relative;
			display: inline-block;
			width: 1em;
			height: 1em;
			text-indent: -999em;
			text-decoration: none;
			color: currentColor;
			margin-inline-start: 8px;

			&:before {
				position: absolute;
				display: block;
				top: 0;
				left: 0;
				width: 1em;
				height: 1em;
				font-family: 'star';
				content: '\73';
				line-height: 1;
				text-indent: 0;
			}

			&:hover {
				~ a:before {
					content: '\73';
				}
			}
		}

		&:hover {
			a:before {
				content: '\53';
			}
		}

		&.selected {
			a {
				&.active {
					&:before {
						content: '\53';
					}

					~ a:before {
						content: '\73';
					}
				}

				&:not(.active):before {
					content: '\53';
				}
			}
		}
	}
}