/*benefits section styles start*/
.star-rating-scope {
    text-align: center;
    position: relative;
}
.star-rating-scope {
     margin-top: 2rem;
}
.star-rating-title {
    position: absolute;
    font-size: 5em;
    font-weight: bold;
    opacity: 0.03;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}
.star-rating-info-wrapper {

    -moz-font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    font-feature-settings: 'ss02';
}
.star-rating-info-wrapper {
    font-size: 0.9em;
    color: #848e9c;
    -moz-font-feature-settings: 'ss02';
    -webkit-font-feature-settings: 'ss02';
    font-feature-settings: 'ss02';
}

.stars{
	display: flex;
}

span.star-rating-info {
    font-size: 1.2em;
    color: #648dff;
    font-weight: bold;
    text-shadow: 0 3px 5px #3d72fe22;
	
}
form.rate-form {
    margin: 0;
}
fieldset.rating {
    all: initial;
}
.rating-stars svg {
    width: 30px;
}
.rating-stars svg path {
    fill: #0005;
}

.rating-stars svg.filled path {
    fill: #f3ba09;
}

.rating-stars svg.filled {
    filter: drop-shadow(0 5px 6px #f3ba0977) drop-shadow(0 0 1px #fff5);
}
section.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px; /* فاصله پایین بخش */
}
section.features h2 {
   text-align: center;
    }
.features-wrapper {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 40px; /* کاهش فاصله از عنوان */
    gap: 2rem; /* فاصله بین کارت‌ها در هر دو جهت (افقی و عمودی) */
    row-gap: 2.5rem; /* فاصله عمودی بین ردیف‌ها */
}
.feature-box {
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.feature-box img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }
.feature-box h3 {
        font-size: 1.3em;
    }
.feature-box p {
        font-size: 1.1em;
        opacity: 0.5;
        text-align: center;
        font-weight: bold;
    font-family: IRANSansWeb;
    }
    .feature-box > a {
        font-weight: bold;
        display: none;
    }

/* Feature box hover effect */
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .star-rating-title {
        font-size: 3em;
    }
    .features-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem; /* فاصله بین آیتم‌ها */
        margin-top: 40px; /* کمی کمتر برای تناسب موبایل */
    }

    .feature-box {
        width: 90%; /* برای مرکز ماندن و خوانایی */
        text-align: center;
    }

    .feature-box img {
        margin-bottom: 10px;
    }

    .feature-box h3 {
        font-size: 1.2em;
    }

    .feature-box p {
        font-size: 1em;
        line-height: 1.7;
    }
}

/* Dark theme styles for benefits section */
[data-theme="dark"] .star-rating-title {
    color: var(--text-body);
    opacity: 0.05;
}

[data-theme="dark"] .star-rating-info-wrapper {
    color: var(--text-secondary);
}

[data-theme="dark"] .feature-box h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-box p {
    color: var(--text-secondary);
}

/* benefits section styles end */

