/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 21 2025 | 10:55:08 */
/* پنهان کردن متن داخل همه ستاره‌ها */
.stars a {
    color: transparent !important;
    position: relative;
}

/* نمایش آیکون ستاره با فونت woodmart */
.stars a::before {
    font-family: "woodmart-font" !important;
    font-size: var(--wd-text-font-size);
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* وقتی ستاره فعال شد، متن اصلی رو نمایش بده */
.stars a.active {
    color: var(--wd-text-color) !important;
}

/* جلوگیری از نمایش متن در حالت hover یا selected غیرفعال */
.stars.selected a:not(.active),
.stars a:hover:not(.active) {
    color: transparent !important;
}

/* تنظیم چیدمان برای نمایش ستاره‌ها و متن کنار هم */
.stars {
    display: flex;
    align-items: center;
    gap: 5px; /* فاصله بین ستاره‌ها و متن */
}

.stars a {
    margin: 0;
    padding: 0;
}

/* تنظیم متن فعال برای نمایش کنار ستاره‌ها */
.stars a.active {
    margin-left: 5px; /* فاصله بین ستاره و متن */
}