/* ============================================================
   category.css - دسته‌بندی‌ها به‌صورت برچسب
   ============================================================ */

.category-modern-module {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.category-modern-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf2f7;
    letter-spacing: -0.2px;
}

.category-modern-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-modern-item {
    border-bottom: 1px solid #f7fafc;
    padding-bottom: 4px;
}

.category-modern-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-modern-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    color: #4a5568;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.category-modern-link:hover {
    background: #f7fafc;
    color: #2b6cb0;
}

.category-modern-link.active {
    background: #ebf8ff;
    color: #2b6cb0;
    font-weight: 600;
}

.category-modern-name {
    flex: 1;
    font-size: 13px;
}

.category-modern-count {
    font-size: 10px;
    color: #a0aec0;
    background: #f1f3f5;
    padding: 1px 8px;
    border-radius: 20px;
    font-weight: 400;
    flex-shrink: 0;
}

.category-modern-link:hover .category-modern-count {
    background: #e2e8f0;
}

.category-modern-link.active .category-modern-count {
    background: #bee3f8;
    color: #2b6cb0;
}

/* ===== زیردسته‌ها ===== */
.category-modern-sublist {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 2px 20px;
}

.category-modern-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px 4px 12px;
    color: #718096;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 400;
}

.category-modern-sublink:hover {
    background: #f7fafc;
    color: #2b6cb0;
}

.category-modern-sublink.active {
    color: #2b6cb0;
    background: #ebf8ff;
    font-weight: 500;
}

.category-modern-subname {
    flex: 1;
    font-size: 12px;
}

.category-modern-sublink .category-modern-count {
    font-size: 9px;
    padding: 0 6px;
}

/* ===== RTL ===== */
[dir="rtl"] .category-modern-sublist {
    padding: 4px 20px 2px 0;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 768px) {
    .category-modern-module {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .category-modern-title {
        font-size: 14px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .category-modern-link {
        padding: 5px 6px;
        font-size: 12px;
    }

    .category-modern-name {
        font-size: 12px;
    }

    .category-modern-sublist {
        padding: 3px 0 2px 16px;
    }

    .category-modern-sublink {
        padding: 3px 6px 3px 10px;
        font-size: 11px;
    }

    .category-modern-subname {
        font-size: 11px;
    }

    [dir="rtl"] .category-modern-sublist {
        padding: 3px 16px 2px 0;
    }
}

@media (max-width: 480px) {
    .category-modern-module {
        padding: 10px 12px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .category-modern-title {
        font-size: 13px;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .category-modern-link {
        padding: 4px 4px;
        font-size: 11px;
        border-radius: 4px;
    }

    .category-modern-name {
        font-size: 11px;
    }

    .category-modern-count {
        font-size: 9px;
        padding: 0 6px;
    }

    .category-modern-sublist {
        padding: 2px 0 2px 12px;
    }

    .category-modern-sublink {
        padding: 2px 4px 2px 8px;
        font-size: 10px;
        border-radius: 3px;
    }

    .category-modern-subname {
        font-size: 10px;
    }

    [dir="rtl"] .category-modern-sublist {
        padding: 2px 12px 2px 0;
    }
}