/* متغیرهای رنگی اختصاصی برند منفعت (قابل تغییر) */
:root {
    --manfaat-primary: #0D9488; /* رنگ سبز فیروزه ای مدرن */
    --manfaat-primary-light: #CCFBF1;
    --manfaat-gray: #E5E7EB;
    --manfaat-text: #374151;
    --manfaat-text-light: #6B7280;
}

/* --- استایل‌های نوار پیشرفت --- */
.manfaat-progress-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    direction: rtl;
    font-family: inherit;
}

.manfaat-progressbar {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
}

.manfaat-progressbar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--manfaat-gray);
    z-index: -1;
    border-radius: 5px;
}

.manfaat-progressbar li {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--manfaat-text-light);
    position: relative;
}

.manfaat-progressbar li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--manfaat-gray);
    color: var(--manfaat-text-light);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.manfaat-progressbar li.active {
    color: var(--manfaat-primary);
}

.manfaat-progressbar li.active span {
    background-color: var(--manfaat-primary);
    color: #fff;
    box-shadow: 0 0 0 4px var(--manfaat-primary-light);
}

.manfaat-progressbar li.completed span {
    background-color: var(--manfaat-primary);
    color: #fff;
}

.manfaat-motivation-text {
    font-size: 13px;
    color: var(--manfaat-primary);
    background: var(--manfaat-primary-light);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
}

/* --- استایل‌های صفحه تشکر اختصاصی --- */
.woocommerce-checkout .woocommerce-notice--success,
.woocommerce-order > p.woocommerce-notice {
    display: none !important; /* مخفی کردن پیام پیش‌فرض ووکامرس */
}

.manfaat-thankyou-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-top: 5px solid var(--manfaat-primary);
}

.manfaat-success-icon {
    width: 80px;
    height: 80px;
    background: var(--manfaat-primary-light);
    color: var(--manfaat-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.manfaat-success-icon svg {
    width: 40px;
    height: 40px;
}

.manfaat-thankyou-title {
    font-size: 22px;
    color: var(--manfaat-text);
    margin-bottom: 15px;
    font-weight: 800;
}

.manfaat-thankyou-desc {
    font-size: 15px;
    color: var(--manfaat-text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* واکنش‌گرایی (موبایل) */
@media (max-width: 768px) {
    .manfaat-progressbar li { font-size: 12px; }
    .manfaat-progressbar li span { width: 30px; height: 30px; font-size: 14px; top: 25px; }
    .manfaat-progressbar::before { top: 15px; }
    .manfaat-thankyou-title { font-size: 18px; }
}
